Help understanding Global scope

I have a formula "Access plus modified"-
Global recordcount;
whilereadingrecords;
recordcount = recordcount+1;
if {SRMFILE.ACCESSTIME} < {?Last accessed } AND
{SRMFILE.WRITETIME} < {?Last Modified}
AND
{SRMFILESYSTEM.FILESYSTEMDEVICE} IN filesystemdevice
THEN
(parentdir := {SRMFILE.PARENTDIR};
accesstime := {SRMFILE.ACCESSTIME};
writetime := {SRMFILE.WRITETIME};
currentfilename := {SRMFILE.FILENAME};
fileactualsize := {SRMFILE.ACTUALSIZE}/1024/1024;
thisfilesystemdevice := {SRMFILESYSTEM.FILESYSTEMDEVICE};
In a following formula i want to display the number of records (recordcount)
Evaluateafter ({@Access plus Modified});
recordcount;
But in formula editor i get an error unless i define recordcount again as
Global numbervar recordcount;
and then the count is zero.
I thought Global forces a variable to be visible throughout the report?

Carl, the fields on m y report are the ones calculated in the IF logic :-
parentdir := {SRMFILE.PARENTDIR};
accesstime := {SRMFILE.ACCESSTIME};
writetime := {SRMFILE.WRITETIME};
currentfilename := {SRMFILE.FILENAME};
fileactualsize := {SRMFILE.ACTUALSIZE}/1024/1024;
thisfilesystemdevice := {SRMFILESYSTEM.FILESYSTEMDEVICE};
recordcount := recordcount+1;
Each variable in the IF logic is further defined by another formula i.e. :-
EvaluateAfter ({@Access plus Modified});
StringVar currentfilename;
currentfilename;
The formulas for each varioable are then  defined in the details section.
This is a small sample of the report :-
FilesystemDevice     Actual size(GB)     Access      ParentDir     Recordcount
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:36:30 PM     /db2/pdid322/sqllib/     1.00
/dev/vx/dsk/dvgy322/db2     0.00     7/19/2006  8:08:08 PM     /db2/pdid322/piris00q/dbbackup/     2.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:38:48 PM     /db2/pdid322/sqllib/hmonCache/pdid322/     3.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:38:48 PM     /db2/pdid322/sqllib/hmonCache/pdid322/     3.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:38:48 PM     /db2/pdid322/sqllib/hmonCache/pdid322/     3.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:38:48 PM     /db2/pdid322/sqllib/hmonCache/pdid322/     3.00
/dev/vx/dsk/dvgy322/db2     0.00     7/15/2006  9:38:48 PM     /db2/pdid322/sqllib/hmonCache/pdid322/     3.00
You will see that "recordcount" stays at 1 for many of the "duplicate" entries. Then moves to 2 for a single record, then 3 for many.
Thanks John

Similar Messages

  • Final variable with global scope?

    Hi,
    We are building a multi threaded server application. We have the need to use some constants (finals) across mutliple classes/threads. Is there a way to create a list of final vars with a global scope? We've considerd a class with static vars, but that would imply using the classname when using the vars. e.g. GlobalClass.VARNAME. We would like to use just VARNAME. Is there a way to do this?

    Hi,
    Here is the thread that addresses the same issue as yours.
    http://forum.java.sun.com/thread.jsp?forum=4&thread=242988
    Putting all these in an interface and let the classes that uses them implement it will be useful.
    Hope this helped,
    Roopasri Vittal
    Developer Technical Support
    Sun Microsystems
    http://sun.com/developers/support

  • Persisting variables to global scope (M spec's 'shared' keyword?)

    Hi,
    I wanted to declare multiple variables I'd like to reuse in a query, and be able to keep them in scope afterwards for use in other queries. The alternative of redeclaring them in each query separately would seem tedious, while individual queries can also
    only return one variable each (be it a table/list).
    I read in the M formula specification that it should be possible to global-scope a variable using the 'shared' keyword, though apparently this was only for use in the 'sections' part of the M specification unimplemented in Power Query itself. Am I missing
    something? Might there be some other way to persist a variable to the shared (global) scope from within a query?

    Thank you for the further clarification on sections; I didn't really know they are still kind of there in the background.
    Reconsidering, I suppose my perceived issue isn't really so bad. I think what I wanted (using M functions from text files like an external library) is pretty well doable, so I've Github'd (https://github.com/tycho01/pquery) what I have for others to try;
    perhaps that may help illustrate my use case a bit. I think I'm actually satisfied now, though I may as well explain better what I was trying.
    What I'm imagining (as an analogy to my experience with Excel VBA) is basically having a larger library of user defined M functions to flesh out the built-in ones, with smaller functions for relatively basic tasks, and mid-level functions building upon those
    and upon each other.
    Considering the (current) effort in adding a bunch of functions to different workbooks, not to mention edit syncing concerns, keeping such all-purpose functions separate from individual workbooks (in analogy to VBA's 'personal' workbook) would seem sensible.
    If that were to work out, eventually it may be preferable if things were to 'just work', in terms of all functions being in scope, so each such library function could freely call other such library functions.
    At present, if you load multiple functions through Expression.Evaluate(), possible in batch through lists/records as you mentioned, they will all be available in the original scope.
    However, with no effective way to pass this around (unless environments?), the loaded functions will not know of each other though. What I do now is to explicitly load used library functions in each function where they are needed. Under this limitation of losing
    scope between functions, it might be ideal to have all available functions loaded only once.
    Reloading in batch (i.e. load the whole library rather than the parts needed) within every new function scope may become less desirable in terms of unnecessary overhead.
    I suppose for the most part my scenario is still largely hypothetical though, so I might as well try and see if the general idea would take off in the PQ community for now. In either case, thank you for your replies.

  • MyArray is not responding as GLOBAL scope?

    Hello
    I want to have a Array declared in the form, and that Array should VISIBLE to every where of the form.
    Meaning, i can use tthat aray in every page, every subform, every text field to append the elements
    And to loop that array in some button (on click event).
    PLs. let me know how can i declare a array that is GLOBAL in scope, really global? at what level i hv to declare it? at root node level (say, my form name is VISITORinfio, so, keeping curson on this node and declaring array in readDoc event? )
    I tried with these options but not working at all!!

    Pls. help me that let me know how to declare a GLOBAL SCOPE array(i did by using var, with out var key word, i did at TOP level, even i dont hv any functions!) - Thank you

  • I need help understanding how the Apple components integrate to create a system across all my devices?

    I need help understanding how the Apple components connect to create a whole system across all my devices?
    Is there a resource that describes current system and associated functionality?
    For example:
    Buy A, B, C to achieve "X" 
    You will need:
    an internet provider which supports <specs>
    add D to achieve "Y"
    You will need:
    an internet provider which supports <specs>
    add "E" to achieve "Z"
    You will need:
    an internet provider which supports <specs>
    For example, I am looking at the Gen 6 Airport extreme.  For intended performance do I need broadband? if so what are the specs, or will basic internet service suffice?  Do I need the internet provider's modem or does the Airport extreme replace that?  And then I think, if I am doing this, I should also look at Apple TV....What do I need and Why?  Then I look at the New Desk top coming out in the fall, and I think well, if I wait and get this, what does this component do for the system, and what becomes redundant? What does this awesome desktop do for my ability to sit and use a new macbook air when I travel  or sit on the couch in my PJs?
    If there was a place that plainly stated "if you buy the new dektop you can configure a system including only these components and achieve <this result> and by adding <additional components> you will achieve this result.
    I have been to the genius store a few times, but I come out of there more confused unless I have SPECIFIC questions or already know what to buy. 
    A "System Configuration App" would be a really great sales tool--Just saying.

    I have no idea what "fully optimized" means.
    No Apple device will let you watch broadcast TV. The Apple TV is a good option for watching streaming TV from iTunes, NetFlix and Hulu. If you want to watch from other sources, you may need to look at other devices.
    Any Mac computer or iPad will allow you to surf the web.
    What business software?
    Time Capsule is a good option for back ups.
    Update what across all devices?
    For accessing documents from all devices, a service like Dropbox is your best bet.
    I have no idea what "step as far away from an internet provider as possible" means. If you want Internet access, you need an Internet provider.
    Lighting fast speed for what? Processor? The specs are listed for all devices in the Online Store. Internet? We're back to the service provider.
    Technology changes. The only way to keep pace with it beyond a couple of years is to buy new stuff.
    The bottom line is you need to look at the specs for devices availble and at your budget and decide what best meets your needs. If you are unable to do that on your own, there are lot of technology consultants out there who will, for a fee, look at your exact situation, make recommendations and even handle the purchase and set up. Perhaps that would be the best route for you.
    Best of luck.

  • Import finished with few errors...Help understanding it!

    Hi all,
    Yesterday, I finished to do an import in oracle. I used the impdp command and got few errors after the import was done. Here are some bits from my log. It was very long but I shortened it with the most common errors. I would appreciate your help understanding what does each error mean, and whether there's a solution available.
    Thanks!
    El sql que falla es:
    CREATE TABLESPACE "SYSAUX" DATAFILE SIZE 125829120 LOGGING ONLINE PERMANENT BLOCKSIZE 16384 EXTENT MANAGEMENT LOCAL AUTOALLOCATE DEFAULT NOCOMPRESS SEGMENT SPACE MANAGEMENT AUTO
    ORA-39083: Fallo de creación del tipo de objeto TABLESPACE con el error:
    ORA-02236: nombre de archivo no válido
    El sql que falla es:
    CREATE TABLESPACE "IN_SGC_BD" DATAFILE '+DISKGROUP_BD/sgtc/datafile/rsgtc_in_sgt_bd1' SIZE 132120576 LOGGING ONLINE PERMANENT BLOCKSIZE 16384 EXTENT MANAGEMENT LOCAL AUTOALLOCATE DEFAULT NOCOMPRESS SEGMENT SPACE MANAGEMENT MANUAL
    Procesando el tipo de objeto DATABASE_EXPORT/PASSWORD_VERIFY_FUNCTION
    ORA-31684: El tipo de objeto PASSWORD_VERIFY_FUNCTION ya existe
    Procesando el tipo de objeto DATABASE_EXPORT/SCHEMA/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39111: Se ha saltado el tipo de objeto dependiente OBJECT_GRANT:"SYSTEM", ya existe el tipo de objeto base SEQUENCE:"SYSTEM"."SDE_LOGFILE_LID_GEN"
    ORA-39083: Fallo de creación del tipo de objeto SYNONYM con el error:
    ORA-00995: falta el identificador de sinónimos o no es válido
    BEGIN
    dbms_resource_manager.create_consumer_group('AUTO_TASK_CONSUMER_GROUP','System maintenance task consumer group','ROUND-ROBIN');COMMIT; END;
    Procesando el tipo de objeto DATABASE_EXPORT/SYSTEM_PROCOBJACT/POST_SYSTEM_ACTIONS/PROCACT_SYSTEM
    ORA-39083: Fallo de creación del tipo de objeto PROCACT_SYSTEM con el error:
    ORA-29393: el usuario JAIMESP no existe o no está conectado
    El sql que falla es:
    BEGIN
    dbms_resource_manager.create_plan_directive('PLAN_DIA','SGTC_USR','',30,NULL,NULL,NULL,NULL,NULL,NULL,NULL,30,600,5,'SGTC_SWITCH',NULL,TRUE,NULL,10240,1800,900,1800);
    dbms_resource_manager.create_plan_directive('PLAN_DIA','SGTC_EDITOR','',40,NULL,NULL,NULL,NULL,NULL,NULL,NULL,10,600,10,'SGTC_SWITCH',NULL,TRUE,NULL,512000,1800,600,3600);
    dbms_r
    ORA-39083: Fallo de creación del tipo de objeto PROCACT_SYSTEM con el error:
    ORA-06550: línea 2, columna 72:
    PLS-00103: Se ha encontrado el símbolo "CHECK" cuando se esperaba uno de los siguientes:
    in like like2 like4 likec between member submultiset
    Procesando el tipo de objeto DATABASE_EXPORT/SCHEMA/TABLE/TABLE
    ORA-39151: La tabla "OUTLN"."OL$" existe. Todos los metadados dependientes y los datos se saltarán debido table_exists_action de saltar
    Procesando el tipo de objeto DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA
    . . "SIGELEC"."SDE_BLK_37" 4.976 KB 0 filas importadas
    . . "SIGELEC"."SDE_BLK_38" 4.968 KB 0 filas importadas
    . . "SGC_BD"."BDE_CRECOBJE" 5.234 KB 0 filas importadas
    . . "SIGELEC"."D418" 4.851 KB 0 filas importadas
    . . "SYSTEM"."DBM_TOPSQL" 6.125 KB 0 filas importadas
    . . "SIGELEC"."F100" 5.562 KB 0 filas importadas
    . . "SIGELEC"."F101" 5.593 KB 0 filas importadas
    . . "SIGELEC"."F102" 14.77 KB 11 filas importadas
    Procesando el tipo de objeto DATABASE_EXPORT/SCHEMA/PROCEDURE/ALTER_PROCEDURE
    ORA-39082: El tipo de objeto ALTER_PROCEDURE:"SYSTEM"."GEN_ROLE_SGTC" se ha creado con advertencias de compilación
    ORA-39083: Fallo de creación del tipo de objeto PACKAGE_BODY con el error:
    ORA-04052: se ha producido un error al consultar el objeto remoto ENLACE.ELPQ_DATOPROY@CRE
    ORA-00604: se ha producido un error a nivel 4 de SQL recursivo
    ORA-12154: TNS:no se ha podido resolver el identificador de conexión especificado
    ORA-39082: El tipo de objeto TRIGGER:"SIGERED"."TR_CTRL_ENERGIZA" se ha creado con advertencias de compilación
    ORA-39083: Fallo de creación del tipo de objeto TRIGGER con el error:
    ORA-04052: se ha producido un error al consultar el objeto remoto ENLACE.ELPQ_DATOCONS@CRE
    ORA-00604: se ha producido un error a nivel 4 de SQL recursivo
    ORA-12154: TNS:no se ha podido resolver el identificador de conexión especificado
    El sql que falla es:
    ALTER TRIGGER "SIGERED"."TR_CTRL_ENERGIZA" COMPILE PLSQL_OPTIMIZE_LEVEL= 2 PLSQL_CODE_TYPE= INTERPRETED PLSCOPE_SETTINGS= 'IDENTIFIERS:NONE'
    ORA-39082: El tipo de objeto TRIGGER:"SIGERED"."TR_CTRL_CONCLUYE" se ha creado con advertencias de compilación
    El sql que falla es:
    BEGIN SYS.DBMS_IJOB.SUBMIT( JOB=> 165, LUSER=> 'SYSTEM', PUSER=> 'SYSTEM', CUSER=> 'SYSTEM', NEXT_DATE=> TO_DATE('2012-05-02 01:00:00', 'YYYY-MM-DD:HH24:MI:SS'), INTERVAL=> 'TRUNC(SYSDATE+1)+1/24', BROKEN=> FALSE, WHAT=> 'dbms_stats.gather_schema_stats(ownname => ''SIGERED'',options => ''GATHER'',estimate_percent => null,method_opt => ''FOR ALL COLUMNS SIZE 1'',cas
    ORA-39083: Fallo de creación del tipo de objeto JOB con el error:
    ORA-00001: restricción única (SYS.I_JOB_JOB) violada
    El sql que falla es:
    BEGIN SYS.DBMS_IJOB.SUBMIT( JOB=> 47, LUSER=> 'SIGERED', PUSER=> 'SIGERED', CUSER=> 'SIGERED', NEXT_DATE=> TO_DATE('2012-05-02 01:00:00', 'YYYY-MM-DD:HH24:MI:SS'), INTERVAL=> 'TRUNC(SYSDATE+1)+01/24', BROKEN=> FALSE, WHAT=> 'SIGERED.RDPQ_PROYECTOS.PR_PROCESAR;', NLSENV=> 'NLS_LANGUAGE=''AMERICAN'' NLS_TERRITORY=''AMERICA'' NLS_CURRENCY=''$'' NLS_ISO_CURRENCY=''AMERI
    Procesando el tipo de objeto DATABASE_EXPORT/SCHEMA/POST_SCHEMA/PROCACT_SCHEMA
    Procesando el tipo de objeto DATABASE_EXPORT/SCHEMA/PASSWORD_HISTORY
    ORA-39083: Fallo de creación del tipo de objeto PASSWORD_HISTORY con el error:
    ORA-01858: se ha encontrado un carácter no numérico donde se esperaba uno numérico
    El trabajo "SYS"."SYS_IMPORT_FULL_01" ha terminado con 2249 error(es) en 17:21:02

    Hello people,
    I just run for the second time a full import, and it said it finished correctly.
    The first time I run it, there was a message which said that the import had finished with 2249 errors (I checked my log and not all of them were errors but messages). I checked each single message and only had to solve a couple of things.
    I first created a user in response to an ora-29393: user string does not exist or is not logged on.
    The second thing I did was to run the utlrp.sql file in response to an ORA-39082. I did this according to this blog.
    I know oracle is taking precedence each time I run an import. I don’t know if what I have done is okay or perhaps not all data was imported after all. This is the thread which I posted initially when errors came out.
    Any reply is a supply.
    Thanks loads

  • Resolving session scoped component in global scope component.

    Hi,
    I am implementing batch process and i am need to resolve session scoped component in global scoped component.
    In global scope component (one of the component referred by my scheduler which also in global scope as usual) and i need to resolve session scoped "/atg/epub/workflow/WorkflowView" component in my scheduler.
    I tried all possibilities but nothing worked out. I do not have access to current request, because its batch process. following ways i tried,
    1. getResolveName("/atg/epub/workflow/WorkflowView") method of GenericService which is extended by my global scope component -- This returns null.
    2. Tried to get the current request on ServletUtils to use resolveName() method on request.
    ServletUtlis.getCurrentRequest() - This returns null as expected.
    Is there any way to resolve session scoped component in global scope component. Thanks in advance.
    Edited by: 938890 on Jun 30, 2012 4:59 AM

    Try below :
    If you want to resolve the name of a Nucleus component from Java code that is not itself a Nucleus service, you must first initialize Nucleus with this construct:
    Nucleus.getGlobalNucleus().resolveName("target component")
    where target component is the name of the component you are looking up. Note that this construct works only for components with global scope.
    You can also resolve names of Nucleus components using the Java Naming and Directory Interface (JNDI). The following example shows how you can use JNDI to access the Scheduler component:
    String jndiName = "dynamo:/atg/dynamo/service/Scheduler";
    Context ctx = new javax.naming.InitialContext ();
    Scheduler s = (Scheduler) ctx.lookup (jndiName);
    reference - oracle ATG docs.
    ~ Praveer

  • Help understand how this works

    Hows everyone doing, i need some help understand this. This is my first time using Lulu. From the reviews i'v read about it they tell me this is the #1 place to come to to get my books printed. Here the question,  i have all 3 of my books ready to be uploaded do i just sent that in, then they send me the prints ? or so they self them for me. Sorry if this seems like a dumb question, but its my first time using this particular site.

    Here's a quick overview:
    You start the new book wizard. Click "Create," pick a book type and size (hardcover, paperback, etc.; 6x9, 8.5 x 11, etc.), and click "Make this book."
    Hint: If you want the widest distribution for your book, pick a size / type that has a green checkmark next to it.
    The wizard will guide you to name your book, apply an ISBN (or get a free one), upload your contents, and upload your cover or design a cover. It will guide you to set pricing and distribution, and many other options.
    When you've done all that, your book will be available to order. You will see two prices: the one you pay, and the one other people pay. The one you pay is the printing cost per book. It may be anywhere from $2.50 to $20.00 or more, depending on options you pick -- probably coser to the low end.
    On that first page, where it says "Create," there is a calculator that will figure roughly what your book will cost (printing costs), so you can plan your options around that calculator.
    So you order as many books as you want, pick shipping, pay with a credit card, and in a few days, the books are on your doorstep.
    I hope that helps.

  • Help understanding ABAP Proxies

    Can someone point me to documentation to help understand ABAP proxies?  What they are, why I would use them and what are the considerations in using them over BAPI's or IDOCS?  I had a recent discussion with someone who is choosing to not use them because of security considerations.

    Hi Rick,
    For ABAP proxy documentation refer...
    http://help.sap.com/saphelp_nw04/helpdata/en/ab/585f3c482a7331e10000000a114084/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/14/555f3c482a7331e10000000a114084/content.htm
    For considerations in using proxy over BAPI's or IDOCS Refer...
    /people/ravikumar.allampallam/blog/2005/08/14/choose-the-right-adapter-to-integrate-with-sap-systems
    Regards
    Anand

  • Need some help understanding the way materialized views are applied through

    Hi, I need some help understanding the way materialized views are applied through adpatch.
    In patch 1, we have a mv with build mode immediate. When applying it PTS hang due to pool performance of mv refresh.
    So we provide patch 2, with that mv build mode deferred, hoping it'll go through. But patch 2 hang too on the same mv.
    How does this work? Is that because mv already exists in the database with build immediate, patch 2 will force it to refresh first before changing build mode? How to get over this?
    Thanks,
    Wei

    Hi Hussein,
    Thank you for the response.
    Application release is 11.5.10.
    Patch 1 is MSC11510: 8639586 ASCP ENGINE RUP#38 PATCH FOR 11.5.10 BRANCH
    Patch 2 is MSC11510: 9001833 APCC MSC_PHUB_CUSTOMERS_MV WORKER IS STUCK ON "DB FILE SEQUENTIAL READ" 12 HOURS
    The MV is APPS.MSC_PHUB_CUSTOMERS_MV
    This happens at customer environment but not reproducable in our internal environment, as our testing data is much smaller.
    Taking closer look in the logs, I saw actually when applying both patch 1 and patch 2, MV doesn't exist in the database. So seems my previous assumption is wrong. Still, strange that patch 2 contains only one file which is the MV.xdf, it took 7 hours and finally got killed.
    -- patch 1 log
    Materialized View Name is MSC_PHUB_CUSTOMERS_MV
    Materialized View does not exist in the target database
    Executing create Statement
    Create Statement is
    CREATE MATERIALIZED VIEW "APPS"."MSC_PHUB_CUSTOMERS_MV"
    ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 10 MAXTRANS 255 LOGGING
    STORAGE(INITIAL 4096 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 4 FREELIST GROUPS 4 BUFFER_POOL DEFAULT)
    TABLESPACE "APPS_TS_SUMMARY"
    BUILD IMMEDIATE
    USING INDEX
    REFRESH FORCE ON DEMAND
    WITH ROWID USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE
    AS select distinct
    from
    dual
    AD Worker error:
    The above program failed. See the error messages listed
    above, if any, or see the log and output files for the program.
    Time when worker failed: Tue Feb 02 2010 10:01:46
    Manager says to quit.
    -- patch 2 log
    Materialized View Name is MSC_PHUB_CUSTOMERS_MV
    Materialized View does not exist in the target database
    Executing create Statement
    Create Statement is
    CREATE MATERIALIZED VIEW "APPS"."MSC_PHUB_CUSTOMERS_MV"
    ORGANIZATION HEAP PCTFREE 10 PCTUSED 40 INITRANS 10 MAXTRANS 255 LOGGING
    STORAGE(INITIAL 4096 NEXT 131072 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 4 FREELIST GROUPS 4 BUFFER_POOL DEFAULT)
    TABLESPACE "APPS_TS_SUMMARY"
    BUILD DEFERRED
    USING INDEX
    REFRESH COMPLETE ON DEMAND
    WITH ROWID USING DEFAULT LOCAL ROLLBACK SEGMENT
    DISABLE QUERY REWRITE
    AS select distinct
    from dual
    Start time for statement above is Tue Feb 02 10:05:06 GMT 2010
    Exception occured ORA-00028: your session has been killed
    ORA-00028: your session has been killed
    ORA-06512: at "APPS.AD_MV", line 116
    ORA-06512: at "APPS.AD_MV", line 258
    ORA-06512: at line 1
    java.sql.SQLException: ORA-00028: your session has been killed
    ORA-00028: your session has been killed
    ORA-06512: at "APPS.AD_MV", line 116
    ORA-06512: at "APPS.AD_MV", line 258
    ORA-06512: at line 1
    Exception occured :No more data to read from socket
    AD Run Java Command is complete.
    Copyright (c) 2002 Oracle Corporation
    Redwood Shores, California, USA
    AD Java
    Version 11.5.0
    NOTE: You may not use this utility for custom development
    unless you have written permission from Oracle Corporation.
    AD Worker error:
    The above program failed. See the error messages listed
    above, if any, or see the log and output files for the program.
    Time when worker failed: Tue Feb 02 2010 19:51:27
    Start time for statement above is Tue Feb 02 12:44:52 GMT 2010
    End time for statement above is Tue Feb 02 19:51:29 GMT 2010
    Thanks,
    Wei

  • GetVariableData() usage with global-scope primitives (BPEL 2.0)

    My composite has a global scope variable named "length" that is defined as an integer.  When I attempt to access it at the same scope from an embedded Java using getVariableData() I get a funky error.
    My variable definition is:
        <variable name="length" type="xsd:integer"/>
    And my embedded Java looks like this:
    try {
    int pwdLen = getVariableData("length");
    }catch (Exception e) {
    addAuditTrailEntry("Exception occured in length: " + e);
    Can anyone see why this isn't working?

    getVariableData() doesn't return int. The following works:
    try {
    int pwdLen = Integer.parseInt((String)getVariableData("length"));
    }catch (Exception e) {
    addAuditTrailEntry("Exception occured in length: " + e);

  • Global scope for breakpoints in debugging

    Hello:
    I am migrating my J2EE projects from an older version of JDeveloper (JDeveloper 9.0.5.2 Build 1618, Oracle IDE 9.0.5.16.27) to a new one (JDeveloper 10.1.3.3.0, Oracle IDE 10.1.3.41.57) and I need to debug serveral projects (.jpr) located in different workspaces, but it seems to be impossible (or I'm not able to find it or to config it).
    In the old version this was possible to config in jpr Project Properties > Profile > Development > Debugger > Scope for New Breakpoints: Global.
    Does anyone know how to do this in the new version?
    Thanks in advance,
    Antonio Crespo.

    Hi,
    Questions related Asp.Net should be posted in Asp.Net forum.
    If Rachit's suggestion still not be resolved your issue, Please reopen a new thread in Asp.Net forum for better support.
    Here is the link:
    http://forums.asp.net
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • EMOD HELP- understanding campaign recipient metrics - need emod pro

    Hi,
    I have sent a Campaign out to 27k customers on the 19th January (first time EMOD user).
    I need to create reports and analyses based on recipient metrics. So far, I have loaded a report using the Campaign Response History in CRM Reports and downloaded this into excel. What I am trying to find out is how many out of the 27k have received the email (delivered) and how many have bounced back.
    *1.* Firstly I'd like to undertand what exactly do # of Recipients, # of Recipients, # of Hard Bounces, # of Open Responses, # of Responders, # of Responses, mean? So far I have figured out that soft + hard + open = # responses. Not sure if that is correct?
    *2.* Some lines show blank in the count of # recipients, #responses etc... however there is an email address in the appropriate column. Has the email been sent or not? Has it been delivered? How can we make sure?
    *3.* Then, looking at the 'Email' columns in my excel spreadsheet (this is who we sent the campaign to), it looks like some email addresses are missing (blank) however they are in CRM? Has the campaign been sent or not?
    *4.* I'd also like to understand some individual lines reading as:
    # recipient: 44
    # soft bounces: 0
    # hard bounces 15
    # responders 28
    # responses 35
    # opened 20
    email address: [email protected]
    Is all of this for just 1 single email? Does this mean that the email was sent multiple times to just one single address? Why do the # recipients show 44?
    *5.* Why do some lines show responses metrics if the email is blank?
    *6.* On the overall campaign, how can I accurately measure the number of emails that have been sent and delivered?
    Any answer to these questions would be great - sorry I know there are loads of questions.
    Kind regards
    Carine

    Carine, here is my response:
    1) See below for definitions.
    2) All email recipients who have an email address and who do not have the Never Email flag checked are Sent an email. Whether they receive it or not is not always known. See below for explanation of why we don't always know if an email was received.
    3) I'd have to see the report to understand what you are describing.
    4) # of Recipients - Count of Campaign Recipients
    # of Responses - Count of All Campaign Responses (Opt in to List, Opt out from List, Global Opt-out, Global Opt-in, Click-through on trackable url, opened email with images turned on)
    # of Responders - Count of All respondents for a campaign (how many recipients clicked something?)
    # Hard Bounces - Count of responses where response type equal to ‘Hard Bounce’
    # Soft Bounces - Count of responses where response type equal to ‘Soft Bounce’
    # of Open Responses - Count of responses where response type equal to ‘Message Opened’
    # of Click Through - Count of responses where response type equal to ‘Click-through’
    # of Opt Ins - Count of responses where response type equal to ‘Opt-in’
    # of Opt Outs - Count of responses where response type equal to ‘Opt-out’
    # of Global Opt Ins - Count of responses where response type equal to ‘Global Opt-in’
    # of Global Opt Outs - Count of responses where response type equal to ‘Global Opt-out’
    If your report was set up to report on one email campaign, then this is what the metrics are reporting on.
    5) I'd have to see the report to understand what you are describing.
    6) The recieving email server does not always tell EMOD that a message was received. If the email contained the Track Message Open tag, and the recipient receives html email and has images turned on, then EMOD will get notified that this email was opened. Otherwise, EMOD does not know if the message was opened or not (unless the recipient clicked something).
    Hope this helps.

  • Help Understanding the Log - status=sent to status=bounced

    Hello,
    This is a very newb question and I'm very sorry to have to ask this here. I attempted googling it and searching for it, and I just can't seem to find a clear answer on this issue, so I'm hoping someone can just help me understand 2 messages in my log here quickly.
    First, we send emails to Company A all the time and have no problem doing so; however, recently we had the need to email a new employee at Company A that we've never emailed before and anything we email to him gets bounced back.
    At looking at the logs I have the following 2 messages (and what I think they mean), can someone confirm with me what these messages mean. Sorry, again I know, newbie.
    Nov 3 09:51:30 xxxx postfix/smtp[3785]: 72C2CCC203A: to=<[email protected]>, relay=127.0.0.1[127.0.0.1]:10024, delay=0.18, delays=0.01/0/0/0.17, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 9C61DCC2049)
    This means my server sent the message out to the Internet without issue correct?
    Nov 3 09:51:33 xxxx postfix/smtp[3792]: 9C61DCC2049: to=<[email protected]>, relay=mail.global.frontbridge.com[216.32.181.22]:25, delay=3.3, delays=0/0/3.1/0.21, dsn=5.0.0, status=bounced (host mail.global.frontbridge.com[216.32.181.22] said: 554 <[email protected]>: Recipient address rejected: Access denied (in reply to RCPT TO command))
    Does this mean another server (mail.global.frontbridge.com) flagged it as spam or blocked the email from going through?
    If so, I'm really confused why we can email everyone else at companya.com but not this particular person. Then I don't even know who to blame as far as the problem goes, is my company blocked from sending out or is Company A blocked from receiving. (I'm thinking a blacklist)
    I'm just looking for verification I guess and maybe what I should look at doing to resolve the issue.
    In googling this issue, it did appear others out there are having this issue with mail.global.frontbridge.com, but that doesn't mean my server is setup correctly I guess ... even though I'm fairly certain it is .... :/
    Thank you anyways to whoever can help me confirm what's going on here.
    -Jessee

    The problem is most likely on their end. If your mail server was blacklisted by them, you would not be able to mail any address on their server.
    That said:
    Nov 3 09:51:30 xxxx postfix/smtp3785: 72C2CCC203A: to=<[email protected]>, relay=127.0.0.1http://127.0.0.1:10024, delay=0.18, delays=0.01/0/0/0.17, dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 9C61DCC2049)
    This means my server sent the message out to the Internet without issue correct?
    No, it means the e-mail was delivered to the content filter (spam/virus)) on your server (relay=127.0.0.1 = localhost = your server).
    Nov 3 09:51:33 xxxx postfix/smtp3792: 9C61DCC2049: to=<[email protected]>, relay=mail.global.frontbridge.comhttp://216.32.181.22:25, delay=3.3, delays=0/0/3.1/0.21, dsn=5.0.0, status=bounced (host mail.global.frontbridge.comhttp://216.32.181.22 said: 554 <[email protected]>: Recipient address rejected: Access denied (in reply to RCPT TO command))
    The receiving server (mail.global.frontbridge.com) is rejecting the e-mail. Since they only give a generic error, you will need to ask them why. (Chances are they have not defined the new user on their gateway.)
    HTH,
    Alex
    Message was edited by: pterobyte

  • Local/Global Scope

    Hello,
    I am new to Flex coming from a VB.net background. I am trying
    to define a class that can be accessed via the main application and
    any modules or pop-up windows that I may create. I want this for
    tracking and passing values between the scopes. Is there some guide
    on how to pass information between modules/popups and the main
    application?
    Thanks

    That should be easy, here's one way:
    In your pop-up Title Window custom component (let's just call
    it "MyPopper"), declare a public var:
    public var myPopperInformationString:String;
    Now, define a Metadata tag with a simple custom event
    defined, like:
    <mx:Metadata>
    [Event(name="CloseMyPopperEvent",
    type="flash.events.Event")]
    </mx:Metadata>
    (Place this above your <mx:Script> tag, not in the
    script tags)
    Your done with MyPopper. It now has a new public var and a
    custom event defined.
    Back to the main app:
    (You said you already have a string var in the main app):
    private var myMainAppStringVar:String;
    And you (hopefully) already have declared a var for the new
    PopUp, also within the Script block:
    private var myPopper:MyPopper;//The popup.
    When you run ActionScript code to open MyPopper, add a
    listener for your custom event:
    private function openThePopper():void{
    myPopper = new MyPopper;//The new pop-up window.
    myPopper.addEventListener("CloseMyPopperEvent",closePopperHandler);//The
    handler.
    PopUpManager.addPopUp(myPopper,this,true);//Open it.
    PopUpManager.centerPopUp(myPopper);//Center it.
    Now, you need the handler you just declared in the listener:
    public function closePopperHandler(event:Event):void{
    ...do stuff here...
    And finally, add code to the handler to grab the data from
    myPopper:
    public function closePopperHandler(event:Event):void{
    myMainAppStringVar =
    myPopper.myPopperInformationString;//You got it! Yay!
    //Let's clean up now:
    //Remove any references to the pop-up so the garbage
    collector can destroy it later:
    myPopper.removeEventListener("CloseMyPopper",closePopperHandler);
    PopUpManager.removePopUp(myPopper);
    myPopper = null;
    So this is one way. Another way would be to create a custom
    event with custom properties in an AS file and use that anywhere in
    your app. But if you're just grabbing simple strings/values from
    MyPopper, no need to re-invent the wheel. Just pass it back to vars
    in the main app in a close handler.
    Please read the help docs under "Custom Components" to
    understand what's happening with all the code above, so you can do
    things your own way--what makes sense to you.
    My apologies if there are any typos. I didn't test this
    code.

Maybe you are looking for

  • How can I learn where a missing class resides?

    I'm going thru a tutorial that autogenerates a few small Java source files in a small project. They SHOULD compile without error, but don't, apparently because various classes are referenced and are not present on my PC. How can I learn where they ar

  • Differences between Oracle 8i for a UNIX Platform and a Linux Platform

    I want to know the differences between Oracle 8i for a UNIX Platform and Oracle 8i for a Linux Platform. And which platform is better? Thanks

  • About Batch Loader and Multiload Journal files

    Hi, may someone help me in 2 questions/ Can I use Batch Loader to automate process FDM journals and load it to HFM? And second, is it possible to use multiload excel files for these journals? Thx Edited by: user10941958 on Jan 22, 2010 2:54 AM Edited

  • GL Planning for Non Leading Ledger.

    Hi All, Kindly note that currently I am using GL Planning for Leading Ledger "0L" and it works fine for GP12N, GLPLUP & GP12NA. I want to explore the possiblility of uploading plan for a non leading ledger(CL) as we have balancesheet report where we

  • Interview Preparation

    Hi,           How to prepare for interview in SAP B1 Techno functional Consultant.... Just Prepare me for Interview ya....