A kind of a Variable Repository

For example, i have a resource called AD, so when i want to access a field of AD i have to do this: accounts[AD].fieldName. But what happens if i change the name of the resource? I have to change all references.
I want to create a kind of a Variable Repository, so for example if i want to access the AD resource i do something like this: accounts[VariableRepository.AD].fieldName.
There is a way to do it?

Yes you can, but unfortunately this isn't as simple as one might expect, because accounts[$(resourceName)].fieldName is not resolved.
However, you can access objects in a list via the get expression:
<set name='resourceName'>
  <s>AD</s>
</set>
<set name='AD'>
  <get>
    <ref>accounts</ref>
    <ref>resourceName</ref>
  </get>
</set>
<set name='AD.fieldName'>
  <s>set the value here</s>
</set>This way, you can retrieve objects by their name from a list. In my example, resourceName is set to a fixed String. What you can do is creating a simple rule that will return the name of the resource, either hard-coding the name there or the rule could even read the name from the repository.

Similar Messages

  • Help using repository variable in dashboard text

    Hi,
    we have a dashboard section that shows current announcements regarding data issues, etc. This is just using a plain text object on the dashboard. I need to add the following to the top of the text: "Data loaded on xx/xx/xxxx".
    I've created a static repository variable called "DW_LOAD_DATE" and populated it with the proper date/time.
    I'm 100% able to use this in an answers query, but I'm stuck trying to figure out how to get it to show up in a dashboard plain text section with no Answers behind it. I've tried:
    {biserver.variables['DW_LOAD_DATE']}
    @{biserver.variables['DW_LOAD_DATE']}
    {biserver.variables[DW_LOAD_DATE]}
    @{biserver.variables[DW_LOAD_DATE]}
    In all cases, the only thing that shows up is the exact text from above - the substitution isn't being done properly. Can someone help, I'm obviously doing something dumb.
    Thanks!
    Scott

    Ok, I got the following to work (kind of):
    @{biServer.variables['DW_LOAD_DATE']}
    I was thrown off because the "preview" window shows it as the above string without doing the variable substitution.
    Now my last question - the above variable is stored as a TIMESTAMP, because in some cases we need to know the time in addition to the date. When it's showing in the dashboard text, I see the following:
    Data was last loaded on TIMESTAMP '2011-01-06 18:00:00'
    Is there a simple way to format this so it shows up like:
    Data was last loaded on 1/6/2011 18:00:00
    Thanks!
    Scott

  • Client variable database repository exception handling

    We have recently had 2 incidents where client variable
    database storage appears to have failed in our clustered
    environment. We have 2 servers that share a sybase 12.5.2 client
    variable repository (CDATA/CGLOBAL). The problem seems to be
    occuring when a table that the application uses gets blocked by an
    unrelated application. When this happens, client variable storage
    seems to fail - the 2 servers apparently use whatever client
    variables they have in memory rather than getting the values from
    CDATA.
    There are no exceptions thrown, the application continues to
    function normally except that each server has it's own copy of the
    client variables. When we kill the process that has the table
    locked up, the servers start using CDATA normally again.
    The page that is getting blocked by the external process does
    not update any client variables, but it does read them. The
    inconsistent client variable problem occurs on other pages, not the
    one being blocked.
    I was able to sort of recreate the problem. I found that if I
    renamed CDATA, no error is reported to the user. The database
    exception (table not found) is logged, but not thrown on the page.
    To the user the application appears to function normally. So this
    demonstrates that updates to CDATA which result in database
    exceptions fail silently and are not thrown to the page.
    Has anyone else experienced silent exceptions in CDATA
    updates? Are there any workarounds for this behavior? Our
    application relies on client variables being consistent across
    servers and really need for exceptions to be thrown to the page so
    that the user is aware.
    Additional Info:
    CFMX 7.0.2
    Windows Server 2003 SP1
    database is sybase 12.5.2

    This is one of the "classic" design problems in this kind of architecture. And, unfortunately, the answer is "it depends on how you think you need to handle it." And I'm sure there are plenty of "gurus" that will tell you one way or another is the only way to do it.
    I'll be more honest: I'll give you a couple of personal suggestions, based on experience in this architecture. These are suggestions - you may do with them what you will. I will not say this is the best, most correct, or even remotely relevant to what you're doing.
    If it's simple data validation for "typing" (e.g. String, number, Date, etc.), that is taken care of when you attempt to stuff in the information into the appropriate DTO. If it's more "sophisticated" than that (must be in a certain range, etc.), that particular checking should probably be delegated from your Controller to a helper class. That not only saves the "expense" of transmitting the information back and forth across the wire, it's "faster" to the end user so say "Ooopsie" by redirecting back to the form right then. Basically the same thing if the types are wrong.
    That only leaves the "big" problems in the business layer (EJBs), where you have to deal with concurrency, database failures, etc. Generally these kinds of exceptions are thrown back to to the Controller in one of two forms:
    1) a sublass of RuntimeException, which signals that some Very Bad Things have happened in your container. EJBException is one like that and you can see where it's being thrown from.
    2) a subclass of Exception, also called "application exceptions." They are usually something like a "duplicate record" or a validation-like error (which you mentioned) like a missing field. They're used as a signal to a failure in the logic, not the container. That way you have to decide at what layer of your architecture they should be handled and/or passed on to the next.

  • Error file adapter with variable substitution in PI 7.31

    Hello,
    I'm trying to create a file with a dynamic name, based on the payload of the message.
    We're trying to create a filename with the bold content in the name %batchId%.xml. The subtitution we use is
    payload:batch,1,batch-info,1,id,1
    <ns1:batch xmlns:ns1="http://www.atosworldline.com/archivingPortal/receivers">
    - <ns1:batch-info id="test" isTest="true"> 
    <ns2:sender-identifier xmlns:ns2="http://www.atosworldline.com/archivingPortal/batchInfo">String 2</ns2:sender-identifier>  
    <ns2:nb-elements xmlns:ns2="http://www.atosworldline.com/archivingPortal/batchInfo">3</ns2:nb-elements>  
    <ns2:batch-integration-mode xmlns:ns2="http://www.atosworldline.com/archivingPortal/batchInfo">String 4</ns2:batch-integration-mode>  
    <ns2:creation-datetime xmlns:ns2="http://www.atosworldline.com/archivingPortal/batchInfo">1999-05-31T13:20:00Z</ns2:creation-datetime>  
    </ns1:batch-info>
    - <ns1:receivers> 
    - <ns1:receiver> 
    <ns1:id>String 5</ns1:id>  
    <ns1:action>String 6</ns1:action>  
    <ns1:contact-details />  
    - <ns1:tokenSets> 
    - <ns1:tokenSet startDate="1999-05-31T13:20:00Z" endDate="1999-05-31T13:20:00Z"> 
    - <ns1:token> 
    <ns1:tokenvalue>String 7</ns1:tokenvalue>  
    </ns1:token>
    - <ns1:token> 
    <ns1:tokenvalue>String 9</ns1:tokenvalue>  
    </ns1:token>
    </ns1:tokenSet>
    - <ns1:tokenSet startDate="1999-05-31T13:20:00Z" endDate="1999-05-31T13:20:00Z"> 
    - <ns1:token> 
    <ns1:tokenvalue>String 11</ns1:tokenvalue>  
    </ns1:token>
    - <ns1:token> 
    <ns1:tokenvalue>String 13</ns1:tokenvalue>  
    </ns1:token>
    </ns1:tokenSet>
    </ns1:tokenSets>
    </ns1:receiver>
    </ns1:receivers>
    </ns1:batch>
    The following error is shown, when processing the message through the receiving fileadapter.
    MP: exception caught with cause com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.aii.adapter.file.configuration.DynamicConfigurationException: Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException: The following variable was not found in the message payload: batchId
    kind regards,
    Pieter

    AFAIK - Variable substitution does not support attributes. It only support the elements. (- <ns1:batch-info id="test" isTest="true">)
    May be you can go with dynamic configuration instead of variable substitution.

  • How to store internal table value in single variable

    hi gurus,
    i have 3 value in int table , so want to store the value of int table into single variable of type string.
    how it is possible

    hmmm, your requirement is kinda weird and you could have given us a bit more info, but well lets start.
    Why is your requirement weird?
    Well an internal table kinda is a variable itself, or rather a set of variables which together make up for a line type of your table.
    So you have a value you already have in a variable and now want to store it in anotherone? Seems weird.
    What type is your internal table?
    Do you have those three values in one record or in  three records which only hold one value each?
    Which of your values do you want to store in another variable?
    Anyway, make a F1 on the "READ TABLE" statement, this should definiteley help you.
    The "LOOP AT WHERE" statement could as well help if there should occur probrlem using READ TABLE.
    /edit DAMn i was posting this while you gave us more info.
    So still the question stays if you got your three values in one record or in three records.
    DATA: lv_variabl_containing_all      type char100.
    loop at itab into wa.
      concatenate lv_variabl_containing_all wa-value into lv_variabl_containing_all seperated by space.
    endloop.
    after the loop you now got all your values in lv_variabl_containing_all.
    That is for the case you got three records.
    other case would be
    Read table itab into wa index 1.
    concatenate wa-value1 wa-value2 wa-value3 into lv_variabl_containing_all.
    Edited by: Florian Kemmer on Apr 16, 2010 12:59 PM

  • Bind variable with Oracle sequence

    can we insert oracle sequence with the bind varaible
    some thing like
    seq       number(5);
    begin
    select myseq.nextval
            into seq        from dual;
    dbms_sql.parse( l_cursor,insert into mytable (c1,c2,c3) values (seq,:1,:2),dbms_sql.native );
    dbms_sql.bind_variable( l_cursor, :1,58);
    dbms_sql.bind_variable( l_cursor, :2,9);
    l_status := dbms_sql.execute( l_cursor );
    end;
    Thanks!

    What are you trying there..
    Why dynamic SQL?
    Where is the exception block?
    you have to use 'using ' to work with these kind of dynamic variables. Something like this (ugly code below)
    CREATE SEQUENCE myseq;
    create table mytable (c1 number,c2 number, c3 number;
    DECLARE
       seq   NUMBER (5);
       A number;
       b NUMBER;
    BEGIN
       SELECT myseq.NEXTVAL INTO seq FROM DUAL;
       a := 1;
       b := 58;
       EXECUTE IMMEDIATE 'insert into mytable (c1,c2,c3) values (:seq,:1,:2)'
          USING seq, a, b;
       a := 1;
       b := 100;
       EXECUTE IMMEDIATE 'insert into mytable (c1,c2,c3) values (:seq,:1,:2)'
          USING seq, a, b;
       COMMIT;
    END;  --- Check you need to have proper exception block.
    Cheers,
    Manik.

  • Labview FPGA: Why not have local variable without indicator?

    In Labview FPGA, to transfer data among parallel loops, there are three ways or maybe more, local variable, global variable and block memory. The problem with local variable is that it needs an indicator along with, not like global variable. I was thinking why Labview doesn't make a kind of local variable not need indicator? I guess local variable itself doesn't cost resource much compared to global variable, however when it comes into indicator, it will cost more. Just an idea, though. I guess there is a reason NI doesn't do that. 

    As in Labview document, global variable can be used for transfer data among VIs, which local variable isn't capable of. 
    Global variable is not always a better solution. From my experience, it is still unclear among different compilations using local vs global in terms of resources. A thread here http://forums.ni.com/t5/LabVIEW/FPGA-global-variables-vs-front-panel-items/td-p/1407282 talks about that too.
    Stephen, is there any documents say that global makes timing worse? I didn't see this noticeable.

  • How to use or create time variable in my case

    I want to design a report to calculate the number of employees every month by year according to employee subgroup. When users run this report, month variable will displayed prompt, after user input year, report will calculate the number of employees and with fixed format in row of report by each month in relation to input year . Does SAP provider these kind of standard variables that I can use in my case. Should I create a variable using customer exit? If yes, how to code this variable.
    The fixed format by calendar month
    Month--The number of employees
    Jan.--The number of employees
    Feb.--The number of employees
    March.--The number of employees
    April--The number of employees
    ....--The number of employees

    Hi hi ni,
    I'm not sure if I understood you, but you can try doing this.
    Create a variable for 0calyear. The user will input the year.
    In the report you use this:
    0calmonth - NumberOfEmployeesKF
    If the user enters 2008, then it will show:
    01.2008 - nnn
    02.2008 - xxx
    03.2008 - zzz
    Hope this helps.
    Regards,
    Diego

  • Environment variables of 9i  App server

    I have to configure few Environment variables in 9i App server. How can i do that. Also I want to view all the exisitng Env varibles.
    Thanks
    N

    Nitin,
    What kind of environment variables? Could you provide some more details. All Application Server settings are done via the EM Website.
    Also, if this is a J2EE question, please post it on the J2EE forum.
    Thanks,
    Ashesh Parekh
    Oracle9iAS Product Management

  • Error in APD if we used variables 0fiscper.

    Hi All,
    In APD  if I give filter condition on OFISCPER with Offset -1 I am getting error . If i remove variable from both Query and APD no error is coming.
    But if I give varibles in any area either query or apd I am gettng error 0FISCPER is not replaceable .
    Please suggest.
    Regards,
    Asim

    Hi
    Kindly check your variable in Query, create a new variable and try executing it again with offset -1. May be this is the issue with variable at query level itself.
    Regards
    Jeeth

  • Separate Discussion Forum for Oracle Repository now available!

    Questions regarding Oracle Repository (installation problems, runtime problems, usage issues, etcetera) can now be posted to the new forum called 'Oracle Repository'. Click on 'Discussion Groups' on top of this page, and look for 'Oracle Repository' in the Products section.
    From the welcome message of this forum: "Please use the Oracle Repository discussion forum to ask questions, give feedback and share experiences in the use of Oracle Repository. Of particular interest is the use of Oracle Repository to perform Software Configuration Management. Oracle Repository Product Management will monitor the forum."
    kind regards,
    Sandra

    Refresh - the Repository forum is the best place to post questions about the Oracle Repository.

  • [solved] JBO-25005: Object name 1 for type Variable is invalid

    Hi All
    When Deploying our Application to Oracle Application server we got this Exception on the Application log after while
    JBO-30003: The application pool (model.setup.SetupAppModuleLocal) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: oracle.jbo.InvalidObjNameException, msg=JBO-25005: Object name 1 for type Variable is invalid
    at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:2002)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2793)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:453)
    at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:233)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:424)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:419)
    at oracle.adf.model.bc4j.DCJboDataControl.rebuildApplicationModule(DCJboDataControl.java:1543)
    at oracle.adf.model.bc4j.DCJboDataControl.beginRequest(DCJboDataControl.java:1404)
    at oracle.adf.model.BindingContext.beginRequest(BindingContext.java:683)
    at oracle.adf.model.BindingRequestHandler.invokeBeginRequest(BindingRequestHandler.java:346)
    at oracle.adf.model.BindingRequestHandler.beginRequest(BindingRequestHandler.java:166)
    at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:161)
    ## Detail 0 ##
    oracle.jbo.InvalidObjNameException: JBO-25005: Object name 1 for type Variable is invalid
    at oracle.jbo.common.VariableImpl.validateName(VariableImpl.java:234)
    at oracle.jbo.common.VariableImpl.setVariableKind(VariableImpl.java:301)
    at oracle.jbo.server.ViewObjectImpl.activateParams(ViewObjectImpl.java:13306)
    at oracle.jbo.server.ViewObjectImpl.doActivateSettings(ViewObjectImpl.java:13368)
    at oracle.jbo.server.ViewObjectImpl.doActivateSettings(ViewObjectImpl.java:13217)
    at oracle.jbo.server.ApplicationModuleImpl.activateVOs(ApplicationModuleImpl.java:7173)
    at oracle.jbo.server.ApplicationModuleImpl.doActivateState(ApplicationModuleImpl.java:6996)
    at oracle.jbo.server.ApplicationModuleImpl.doActivateAMState(ApplicationModuleImpl.java:6961)
    What does this mean ??

    Hi Mahmoud,
    from the stack trace, it appears the error occurs at AM activation.
    Check your application is activation-safe by setting the parameter jbo.ampool.doampooling=false in your development environment.
    See "Set jbo.ampool.doampooling=false to Reproduce Problems Related to AM Passivation / Activation"
    URL: http://blogs.oracle.com/Didier/2006/11/12
    Does the error reproduces there ?
    You will then be able to diagnose the issue further, f.ex. by switching on the BC4J diagnostics, with the java option -Djbo.debugoutput=console:
    in your Project properties , in the Run/Debug panel, select a run configuration and click Edit to edit it.
    Then add the string -Djbo.debugoutput=console to the Java Options field.
    Then run your application and reproduce the error.
    You'll then probably know the VO that has the problem.
    At activation, ADF BC has to reset the bind variables, and it seems there is a problem at that time.
    What kind of bind variables do you use ?
    Positional bind variables or named bind variables ?
    Regards,
    Didier.

  • Install of Oracle BI Apps 7.9.6  Informatica cannot connect to Repository

    We just completed in initial install of Oracle BI Apps 7.9.6 and cannot get the Informatica out of the box repository to connect. Looking at the Informatica Admins console we see REP_51002 “ Database Error; Failed to connect to database using user [] and connection string []”. In addition we see “Failed to logon to Database server Database driver error… Function Name : Logon Error while trying to retrieve text for error ORA-12705” . The OS is 64 bit “Red Hat Enterprise Linux Server release 5.7” . The oracle client is 11g Rel 2 64 bit . It is the minimal Oracle client install. We can connect to the database from the server where Informatica is installed using the service name, same login and password that is in the Informatica Admin console using sqlplus. Has anyone else run into this?

    The issue is resolved. The problem was the Oracle 11g client was a minimal install. it had the following in ORACLE_HOME which works for jdbc but does not have the libraries for OBIEE 11g. at the bottom I have what the full install looks like. Once I had the fulll client installed and changed the environment variables Repository is connecting.
    rw-r--r-- 1 oracle dba 1996228 Jul 31 2009 ojdbc5.jar
    -rw-r--r-- 1 oracle dba 2111220 Jul 31 2009 ojdbc6.jar
    -rw-r--r-- 1 oracle dba 152304 Jul 31 2009 libocijdbc11.so
    -rw-r--r-- 1 oracle dba 11227 Jul 31 2009 libheteroxa11.so
    -rw-r--r-- 1 oracle dba 1218075 Aug 1 2009 libsqlplus.so
    -rwxr-xr-x 1 oracle dba 6909 Aug 1 2009 sqlplus
    -rw-r--r-- 1 oracle dba 1501651 Aug 1 2009 libsqlplusic.so
    -rw-r--r-- 1 oracle dba 6986848 Aug 2 2009 libnnz11.so
    -rw-r--r-- 1 oracle dba 82983 Aug 2 2009 orai18n-mapping.jar
    -rw-r--r-- 1 oracle dba 1656280 Aug 2 2009 orai18n.jar
    -rw-r--r-- 1 oracle dba 37807 Aug 13 2009 xstreams.jar
    -rw-r--r-- 1 oracle dba 777979 Aug 13 2009 libsqora.so.11.1
    -rw-r--r-- 1 oracle dba 40088477 Aug 13 2009 libclntsh.so.11.1
    -rw-r--r-- 1 oracle dba 1879549 Aug 13 2009 libocci.so.11.1
    -rw-r--r-- 1 oracle dba 89377610 Aug 13 2009 libociei.so
    -rwxr-xr-x 1 oracle dba 377507 Aug 13 2009 wrc
    -rwxr-xr-x 1 oracle dba 21865 Aug 13 2009 adrci
    -rw-r----- 1 oracle dba 63 Dec 8 16:26 oraInst.loc
    drwxr-xr-x 3 oracle dba 4096 Dec 9 09:10 odbc
    -rw-r--r-- 1 oracle dba 37 Dec 9 09:10 install.platform
    drwxr-xr-x 2 oracle dba 4096 Dec 9 09:10 light
    drwxrwx--- 13 oracle dba 4096 Dec 9 09:11 inventory
    drwxr-xr-x 3 oracle dba 4096 Dec 9 09:11 install
    drwxr-xr-x 3 oracle dba 4096 Dec 9 09:11 cfgtoollogs
    drwxr-xr-x 3 oracle dba 4096 Dec 12 11:06 network
    The full client install looks like this for the ORACLE_HOME
    -rw-r----- 1 oracle oinstall 63 Dec 8 16:26 oraInst.loc
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 wwg
    drwxr-xr-x 4 oracle oinstall 4096 Feb 20 23:08 uix
    drwxr-xr-x 5 oracle oinstall 4096 Feb 20 23:08 sysman
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 srvm
    drwxr-xr-x 4 oracle oinstall 4096 Feb 20 23:08 sqlj
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 slax
    drwxr-xr-x 4 oracle oinstall 4096 Feb 20 23:08 racg
    drwxr-xr-x 7 oracle oinstall 4096 Feb 20 23:08 precomp
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 plsql
    drwxr-xr-x 4 oracle oinstall 4096 Feb 20 23:08 owm
    drwxr-xr-x 5 oracle oinstall 4096 Feb 20 23:08 ord
    drwxr-xr-x 4 oracle oinstall 4096 Feb 20 23:08 oracore
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 olap
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 odbc
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 nls
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 jpub
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 javavm
    -rw-r--r-- 1 oracle oinstall 37 Feb 20 23:08 install.platform
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 hs
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 has
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 diagnostics
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 cv
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 csmig
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 crs
    drwxr-xr-x 4 oracle oinstall 4096 Feb 20 23:08 clone
    drwxr-xr-x 5 oracle oinstall 4096 Feb 20 23:08 assistants
    drwxr-xr-x 2 oracle oinstall 4096 Feb 20 23:08 utl
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 xdk
    drwxr-xr-x 13 oracle oinstall 4096 Feb 20 23:08 sqldeveloper
    drwxr-xr-x 2 oracle oinstall 4096 Feb 20 23:08 jlib
    drwxr-xr-x 2 oracle oinstall 4096 Feb 20 23:08 dc_ocm
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 jdk
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 ucp
    drwxr-xr-x 5 oracle oinstall 4096 Feb 20 23:08 relnotes
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 jdbc
    drwxr-xr-x 7 oracle oinstall 4096 Feb 20 23:08 oui
    drwxr-xr-x 7 oracle oinstall 4096 Feb 20 23:08 opmn
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 OPatch
    -rwxr-x--- 1 oracle oinstall 131 Feb 20 23:08 root.sh
    drwxr-xr-x 9 oracle oinstall 4096 Feb 20 23:08 rdbms
    drwxr-xr-x 12 oracle oinstall 4096 Feb 20 23:08 ldap
    drwxr-xr-x 6 oracle oinstall 4096 Feb 20 23:08 css
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 cdata
    drwxr-xr-x 7 oracle oinstall 4096 Feb 20 23:08 sqlplus
    drwxr-xr-x 5 oracle oinstall 4096 Feb 20 23:08 perl
    drwxr-xr-x 11 oracle oinstall 4096 Feb 20 23:08 network
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 lib
    drwxr-xr-x 3 oracle oinstall 4096 Feb 20 23:08 instantclient
    drwxr-xr-x 4 oracle oinstall 4096 Feb 20 23:08 deinstall
    drwxr-xr-x 2 oracle oinstall 4096 Feb 20 23:08 bin
    drwxrwx--- 14 oracle oinstall 4096 Feb 20 23:08 inventory
    drwxr-xr-x 5 oracle oinstall 4096 Feb 20 23:09 install
    drwx------ 4 oracle oinstall 4096 Feb 20 23:10 cfgtoollogs

  • Getting sysdate in a variable

    hi,
    how can i get the current sysdate in a repository variable so that i can use that variable in answers and filter my data according to that..
    Thanks

    copter,
    that should be pretty easy.
    If back end database is Oracle use SELECT SYSDATE FROM DUAL in your initilization block and populate the result to a variable (repository).
    If back end datavbase is SQL Server use SELECT GETDATE() in your initilization block and populate the result to a variable (repository).
    or google for repository variables, you will find tons of info.
    mark answers promptly
    J
    -bifacts
    http://www.obinotes.com

  • Variable stroke width

    Hello!
    Is it possible to have a Flash Pro CC 2014 extension of any kind assign a variable width profile to a stroke?
    Thanks

    The way to do this is to start in Illustrator, create your tapered lines there, Expand appearance in Illustrator, then import as a comp in AE and convert vector layers to shapes. There are two ways to animate the creation of a tapered line. If you use Offset Paths instead of Trim Paths then the line starts growing from the thinnest point and moves to the thinnest point. If you use Trim Paths then you must have a straight tapered line and you have to set the right first vertex and then animate both start and end values to make the line start at the thinnest end and extend to the thickest end.
    Here's what a comp looks like:
    Here's a zip file for you with both a CC and a CS6 project inside. Sometimes AE is buggy creating shape layers from vector layers. If that happens you can add a stroke, then just turn the stroke off in the AE project. I hope this helps. There is usually a way to do what you want in AE if you think outside the box. Here's what it looks like (Click on the animated gif to see it)

Maybe you are looking for

  • Maintain Varient

    Dear all What is the procedure to maintain Form Varient for Witholding tax Report. I'm getting following error: Variant SAP&TH_WTH_REP of program RFIDYYWT is not the current version Message no. DB634 Diagnosis You attempted to start report RFIDYYWT u

  • Having trouble viewing the print preview of sapscript

    Hi experts, I am currently developing a driver program that calls 13 different sapscript forms (which are also customized - has n existing standards). so basically, the whole program and the forms are all from scratch. I've already executed the call

  • Inablility to retrieve values of session variables in irpt page

    We currently are using xMII 11.5.  We are having difficulty retrieving values assigned to our created session variables.  We have defined 2 users, each associated with session variables whose values differ by user.  Each user is associated with a dif

  • Locking laptop

    My laptop has been stolen from my home . I know the serai number and product number of the laptop.. there are so many important documents in this laptop. Is there any software avaiable, that can transfer the documents from this laptop to HP customer

  • Mac Mini Mid-2010 Beeping every five seconds - HD Upgrade

    I upgraded my Mac Mini Server (Mid-2010) with two 480 GB SSD drives tonight. The drives are Intel (ssdsc2bb480g401) drives. I know the mid-2010 mini runs at 3 GB/s and the drives I put in are 6 GB/s. I thought the drives would work and just run at 3