Hierarchy - having longest paths for a value

Hi there, I have a query which need to query hierarchical data from our chart of account (segment3). This parent-child relationship involve having many branches and leaves. I would like to be able to pull out the longest path for each of them and not all the values. Here's the case.
Value 1121 is the lowest level and its hierarchiy look like this.
1121
4CQU TOUS
3CQU
2DES LQLO LT02
| |
1VTI LT01
or
1121 - 4CQU - 3CQU - 2DES - 1VTI
1121 - 4CQU - 3CQU - LQLO
1121 - 4CQU - 3CQU - LT02 - LT01
1121 - TOUS
With the following query
SELECT SYS_CONNECT_BY_PATH(parent_flex_value, '.')||'.'||f1.flex_value path,level
FROM fnd_flex_value_children_v f1
WHERE f1.flex_value_set_id = 1005215
AND f1.flex_value = '1121'
CONNECT BY PRIOR flex_value = parent_flex_value;
I get the following
PATH LEVEL
.1VTI.2DES.3CQU.4CQU.1121     4
.2DES.3CQU.4CQU.1121     3
.3CQU.4CQU.1121     2
.4CQU.1121     1
.LQLO.3CQU.4CQU.1121     3
.LT01.LT02.3CQU.4CQU.1121     4
.LT02.3CQU.4CQU.1121     3
.TOUS.1121     1
I would like to pull out only the following
.1VTI.2DES.3CQU.4CQU.1121     4
.LQLO.3CQU.4CQU.1121     3
.LT01.LT02.3CQU.4CQU.1121     4
.TOUS.1121     1
Anyone knows how can this be done? I'm using 10g database along with 11.5.10.2 apps.
Thanks a lot.
Edited by: ChrisT1826 on 2010-07-21 06:56

Hi,
Apparantly, you're doing something like this now:
SELECT  SYS_CONNECT_BY_PATH (id, ' - ')     AS path
FROM     ...
;but you only want to get one row of results; in this case
1121 - 4CQU - 3CQU - 2CQU - 2DES - 1VTIbecause it's the longest (6 levels).
Is that right.
Do something like this instead:
WITH     connect_by_results     AS
     SELECT  SYS_CONNECT_BY_PATH (id, ' - ')     AS path
     ,     LEVEL                             AS lvl
     FROM     ...     -- The rest of your original CONNECT BY query goes here
,     got_rnk          AS
     SELECT     path
     ,     RANK () OVER (ORDER BY  lvl  DESC)     AS rnk
     FROM     connect_by_results
SELECT     path
FROM     got_rnk
WHERE     rnk     = 1
;If there happens to be a tie (two or more rows with the same longest-length path) the query above will display all of the rows with the longest path.
If that's not what you want, add tie-breakers to the end of the analytic ORDER BY clause, or use ROW_NUMBER instead of RANK.
Analytic fucntions usually interfere with CONNECT BY when they're in the same query. That's why I used two sub-queries:
(1) connect_by_results has all the CONNECT BY stuff, but no analytics
(2) got_rnk has all the analytics, but no CONNECT BY stuff.
I hope this answers your question.
If not, post a little sample data (CREATE TABLE and INSERT statements) and the results you want from that data.
Edited by: Frank Kulash on Jul 21, 2010 10:16 AM
This answers the original question, or at least what I remember as being on this site when I started writing. It looks like the question has changed.
Definely post CREATE TABLE and INSERT statements for the sample data, and explain how you get those results.

Similar Messages

  • Having multiple paths for REPORTS_PATH

    I would like to have 2 directories/paths for REPORTS_PATH (one for production & other for test). My Environment: oracle 10g AS on Solaris.
    1)vi reports.sh (Commented below lines)
    NLS_LANG=ARABIC_KUWAIT.AR8MSWIN1256; export NLS_LANG
    REPORTS_PATH=/appl/ora10gas/liveapp10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:$ORACLE_HOME/reports/winfont
    2)
    vi repas1.conf
    <environment id="LIVE">
    <envVariable name="NLS_LANG" value="ARABIC_KUWAIT.AR8MSWIN1256"/>
    <envVariable name="REPORTS_PATH" value="/appl/ora10gas/liveapp10g:/appl/ora10gas/ASHome_1/reports/templates:/appl/ora10gas/ASHome_1/reports/printers:/appl/ora10gas/ASHome_1/reports/winfont"/>
    </environment>
    <environment id="TEST">
    <envVariable name="NLS_LANG" value="ARABIC_KUWAIT.AR8MSWIN1256"/>
    <envVariable name="REPORTS_PATH" value="/appl/ora10gas/testapp10g:/appl/ora10gas/ASHome_1/reports/templates:/appl/ora10gas/ASHome_1/reports/printers:/appl/ora10gas/ASHome_1/reports/winfont"/>
    </environment>
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="2" maxEngine="8" minEngine="2" engLife="50" maxIdle="30" callbackTi
    meOut="90000" defaultEnvId="LIVE">
    (3) vi formsweb.cfg
    [appltest]
    envFile=appltest.env
    $cp default.env appltest.env
    $vi appltest.env
    REPORTS_ENVID=TEST
    Still it cannot read from multiple locations. Please can any one guide me on this ?
    Thanks
    Edited by: userR12 on Apr 14, 2012 11:13 AM

    Not sure if this helps at all. I just went through a nightmare trying to get 11g forms/reports to work through the forms builder.
    What I discovered with that is that I indeed had to set the REPORTS_PATH in rwserver.conf... however there were 3 different files that I ended up having to put it in (not sure if had to be in all 3). And perhaps more importantly, there seems to be an order to how you put these xml statements in the rwserver.conf files.
    In my case, it wouldn't work at all until I put it right after the last "<engine id=" statement.
    Mine looks something like this (not that this is a snippet of the file in Windows, for running via Forms/Reports Builder):
    <engine id="rwURLEng" class="oracle.reports.urlengine.URLEngineImpl" maxEngine="1" minEngine="0" engLife="50"/>
    <environment id="default">
         <envVariable value="C:\Oracle\WLS11gR1U4\user_projects\domains\AISworkstation\" name="REPORTS_PATH"/>
         <envVariable value="AMERICAN_AMERICA.WE8ISO8859P1" name="NLS_LANG"/>
         <envVariable value="RRRR-MM-DD" name="NLS_DATE_FORMAT"/>
    </environment>
    <environment id="windev_xxxxxxxx">
    <envVariable name="REPORTS_PATH"
    value="M:\ADS\Dvlprs\xxxxxxx\11g\FormsApps\stage;M:\ADS\Dvlprs\xxxxxxx\11g\FormsApps"/>
    </environment>
    I'm still figuring this all out too (although I did get it working how I need.. just not sure if it is the optimal solution), so I'm not sure how much this will help you. But for sure I can say that there is an order to these XML tags that I'm not so sure was the same (or maybe not enforced) in 10g.
    Good luck

  • Full path mapping not working for Taxonomy values

    Hi Friends,
    I'm trying to update a main table field, which is of type Lookup [Taxonomy]. The taxonomy table has a 5-level hierarchy, with two columns, Code (Display Field 1) and Name (Display Field 2). There are no attributes maintained.
    001, A   [Remote Key : 001] <ROOT NODE> {Level 1}
    |---000, A1   [Remote Key : 000]  {Level 2}
          |---001, A2   [Remote Key : 001]  {Level 3}
                |---001000, A3   [Remote Key : 001000]  {Level 4}
                |---000102, SYST [Remote Key : 000102]  {Level 5}
                |---001001, A4   [Remote Key : 000101]  {Level 4}
                |---000102, SYST  {Level 5}
    |---001, B   [Remote Key : 001]  {Level 2}
          |---001, B1   [Remote Key : 001]  {Level 3}
                |---001000, B2   [Remote Key : 001000]  {Level 4}
                |---000102, SYST  {Level 5}
                |---001001, B3   [Remote Key : 000101]  {Level 4}
                |---000102, SYST  {Level 5}
    The figure, unfortunately doesn't come up right, so I've indicated the levels of the nodes.
    The remote keys have been maintained at all the levels. I've also set my Configuration Options settings for Hierarchy Values Automap to Fullpath. However, when I try to do an "Automap", the values are being mapped to the wrong leaf node, taking only the leaf node remote key, rather than following the full path. The leaf node value (000102,  SYST) repeats multiple times, and the remote key could be maintained only for one of them. But instead of following the hierarchy, the mapping happens to the value for which remote key was maintained, here  001->000->001->001000->000102, no matter what the hierarchy is.
    Am I missing something? Any help would be appreciated.
    Regards,
    Anil Madhavan
    Edited by: Anil Madhavan on Jan 20, 2010 8:48 AM
    Edited by: Anil Madhavan on Jan 20, 2010 9:25 AM

    Hello Anil,
    As for Hierarchy field using leaf nodes only for matching - this is the current design and from memory allocation point of view, I think it is reasonable (keeping the full path to the Node will use huge amounts of memory).
    they way workaround this is by adding the code field to the matching step, this will allow you to make sure that the currect nodes are being mapped.
    Hope this information helps,
    Idan

  • Path for sales document characteristics value

    Hi,
    Can any one please let me know the path for Sales document's characteristics value. Please tell me the screen flow from a sales order to it's class type and characteristics value.
    Thanks,
    Kuntal

    Choose the line item and Select "Configuration". Hope this helps.
    Thanks,
    Balaji

  • Longest path from node 0, in a acyclic directed graph(DAG)

    I'm having some problems finding the longest path from node 0 to any other node, as long as it is the longest path from node 0.
    I have done topological sorting from node 0.
    I have also made another algorithm which returns a 2-D matrix of relative distance between the nodes.
    For example:
    A DAG of order 10 has the following adjacency list and matrix:
    10(order)
    0 0 0 0 0 0 0 0 1 0
    1 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 1 0 0 0 0
    1 0 0 0 0 0 0 1 1 1
    1 1 0 0 1 0 0 1 0 0
    0 1 1 1 0 0 0 0 0 0
    1 0 1 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 1
    0 0 0 0 0 0 0 0 0 0
    10 (order)
    8
    0
    5
    0 7 8 9
    0 1 4 7
    1 2 3
    0 2
    9
    The distance matrix values for the above graph are:
    00 10 10 10 10 10 10 10 01 02
    01 00 10 10 10 10 10 10 02 03
    10 10 00 10 10 10 10 10 10 10
    02 02 03 00 02 01 10 02 03 03
    01 10 02 10 00 10 10 01 01 01
    01 01 02 10 01 00 10 01 02 02
    02 01 01 01 03 02 00 03 03 04
    01 10 01 10 10 10 10 00 02 03
    10 10 10 10 10 10 10 10 00 01
    10 10 10 10 10 10 10 10 10 00
    The distance matrix above shows the shortest path between nodes, unfortunatley I need to find the longest path.
    Can someone please help me with the algorithm for that, I have been awake for a long time and I still can't figure it out.....

    So you just want someone to write your entire script as soon as possible (today), so you can hand it in for homework? Seems sensible to me.

  • Creating Variable with Replacement Path to get value from ANOTHER Variable

    Hi all,
        Is anyone has created the Variable with Replacement Path to get the value from another User Entry Variable, PLEASE ? 
    First created the User Entry Variable (ZV_X) and it accepts the date range like '01/01/2009 - 01/31/2009'. Next created the Characteristic variable (ZV_Y) of Replacement Path for which source variable will be ZV_X and we should get the 'FROM Date' (01/01/2009) from the selection (ZV_X) into it (ZV_Y).
    While creating the Characteristic variable (ZV_Y) of Replacement Path, I didn't find my newly created ZV_X variable in the list of available variables under 'Variable' header in 'Replacement Path' tab and it is causing the error 'Source to replace variable ZV_Y is not defined'. How could I create the Characteristic variable of Replacement Path for my requirement, PLEASE ?
    The following is from help.sap..com:
    Replace with Characteristic Value
    Text and formula variables with the processing type Replacement Path can be replaced with a corresponding characteristic value. In the variable editor, on the General tab page, you specify under Reference Characteristic the characteristic that is to be referenced by the replacement. On the Replacement Path tab page, you can choose whether the variable is replaced with the From or the To Value and with the Key or the Name of the characteristic value. You can also specify the Offset Start and Offset Length for the output.
    Replace with Variable
    Characteristic value variables, hierarchy variables, text variables, and formula variables with the Replacement Path processing type can take their values from a different variable.
    The following prerequisites need to be fulfilled:
    Variable
    ●      The variable must not be input-ready
    ●      The variable must represent a single value
    Source Variable
    ●      The source variable must not be a hierarchy node variable
    ●      The source variable must be input-ready
    ●      The source variable must be available in the query
    ●      The source variable must represent a single value or an interval
    In the variable editor, on the Replacement Path tab page, you specify the source variable from which the value is to be determined. The value is either determined from the key, the external attribute of the key, the description, or the attribute value. You can specify an Offset Start and an Offset Length for the output here. The variable is replaced on the variable screen upon each data release.
    Thanks,
    Venkat.

    Hi Eve,
    It is possible to connect the 2 queries using a Replacement Path characteristic variable. You would need to create the variable on the char whose values you want to pass from Q1 to Q2. The variable will be of type replacement path and you will need to enter the name of Q1 from which it will get the values. Make sure that you include this char in the query definition of Q1 and Q2. In Q2 you will restrict the characteristic using this variable. DO not use this variable (replacement path) in Q1.
    In your query properties check if you have turned on the checkmark for Release for OLE DB for OLAP (3rd tab). If the check mark is there, then remove it.
    We are using the scenario in a couple of places, and it works very well.
    Hope this helps...

  • Relative path for images in RTF templates

    Hi everybody!
    When I insert an image in a RTF template, I put its path into the web dialog, in order to see correctly the picture when I open the report from the xmlp server, in this way: url:{"http://servername/analytics/res/Images/image.bmp"}
    How can I make this path relative, in order to see the images even if the server name changes?
    Thanks so!
    Francesco

    Hi Tim,
    I am using BIP 10.1.3.3.2. I am able to access system variable CURRENT_SERVER URL.
    Steps:
    <?param@begin:CURRENT_SERVER_URL?>
    <xsl:value-of select="$ CURRENT_SERVER_URL"/>
    CURRENT_SERVER_URL is getting printed in BI Publisher. Value displayed is http://xx4697.xxx.co.in:9704/xmlpserver.
    Now we are importing xsl into RTF template. File aaa.xsl is stored at [BIP_Installation_Directory\oc4j_bi\j2ee\home\default-web-app]
    We have hardcoded the path for XSL in RTF. The path is <?import: http://xx4697.xxx.co.in:9704/aaa.xsl?>
    As we want to set dynamic path we changed hardcoded xsl path to <?import: {$CURRENT_SERVER_URL}/../aaa.xsl?> but it is not working. Sometimes BIP is taking local path of MyDocuments folder and sometimes Desktop path. If I put that XSL file in MyDocuments folder or Desktop, it is working fine. But ideally it should refer [BIP_Installation_Directory\oc4j_bi\j2ee\home\default-web-app] path...
    Thanks,
    Amit D

  • Search c:\ drive and return file path for winword.exe and save as variable

    Hi all, here is what I'm trying to do;
    1. Search C:\ drive for winword.exe
    2. take the file path and save it as a variable.
    3. Then based on the path value, use the switch statement to run "some command" 
    Essentially I'm trying to find what the file path for winword.exe is, then run a command to modify the registry.  I already have the script that will modify the registry like I want but the problem it, the path is hard coded in the script, I want to
    now look for all versions of word and set the right file path so I can make the right registry changes.

    This should get you started:
    http://ss64.com/ps/get-childitem.html
    Don't retire TechNet! -
    (Don't give up yet - 13,085+ strong and growing)

  • Absolute/Relative Path for elements in xml to rtf template.

    Hi all,
    I have a small doubt, can anyone help me come out of this issue.
    I developed a BI Publisher Report using RTF Template and I am addressing XML elements which are out of the group in the XML file inside the for loop in the RTF template. I am able to get the body of the table but with all blank values on the output.
    I thought to give the full path ie., Absolute path instead only the element name, can anyone suggest me how to address an element outside the group in XML file from a for loop in the RTF template. Is it possible to address like that.?
    Thanks In advance.

    Hi Tim,
    I am using BIP 10.1.3.3.2. I am able to access system variable CURRENT_SERVER URL.
    Steps:
    <?param@begin:CURRENT_SERVER_URL?>
    <xsl:value-of select="$ CURRENT_SERVER_URL"/>
    CURRENT_SERVER_URL is getting printed in BI Publisher. Value displayed is http://xx4697.xxx.co.in:9704/xmlpserver.
    Now we are importing xsl into RTF template. File aaa.xsl is stored at [BIP_Installation_Directory\oc4j_bi\j2ee\home\default-web-app]
    We have hardcoded the path for XSL in RTF. The path is <?import: http://xx4697.xxx.co.in:9704/aaa.xsl?>
    As we want to set dynamic path we changed hardcoded xsl path to <?import: {$CURRENT_SERVER_URL}/../aaa.xsl?> but it is not working. Sometimes BIP is taking local path of MyDocuments folder and sometimes Desktop path. If I put that XSL file in MyDocuments folder or Desktop, it is working fine. But ideally it should refer [BIP_Installation_Directory\oc4j_bi\j2ee\home\default-web-app] path...
    Thanks,
    Amit D

  • Inventory Report-Replacement path for Base UOM to Case and Standrad Cost

    Hi, We have a Scenario as below:
    Question1:
    We have a multiprovider contains 4 infocubes and 2 Master Data objects
    a.Demand
    b.Inventory
    c.Sales Orders
    d.In Transit
    Master Data objects
    a. Material (contains Base UOM to Case as Key Figure Attribute and also Base UOM as an attribute)
    b. Material Location (Contains material as an attribute and also Standard Cost as a Key Figure attribute)
    At the report level two formula variables are defined with replacement path for showing the Base UOM to Case and Standard Cost in columns.
    We have 4 reports on this multiprovider. There is a dialy sales report which gives the following details
    Material, Location, MRP Controller, CalDay, Base UOM, Actual Sales(AS), Dependent Demand(DD), Consumption Qyt(CQ), Base to Case UOM, Standard Cost
    In this report for all the records the Base to UOM and Standard Cost column is coming with values which is nothing but the replacement path on the material master key figure attribute. Though this report is on the multiprovider all the major keyfigures (AS, DD and CQ) are coming from a single cube( this is an observation from myside).
    We have another report which is the Inventory Report with the following details:
    Material, Location, MRP Controllder, Calday, Base UOM,      Unrestricted Inventory(UI), committed Inventory(CI), Back Order Qty(BOQ), In Transit by Sh/Rec(ITS), In Transit Pipeline(ITP), On Order Qty (OOQ), Current Inventory Position (CIP), Quality Inspection Stock(QIS), Block Stock(BS), Base to Case UOM, Standard Cost
    Now in this report for all the records the Base to Case UOM and standrad cost is not showing up. Is there anything which needs to be done in order to get the Base to Case UOM and standard cost for all the records.
    Question2:
    When Non-Cumulative and Cumulative key figures are combined at the multi provider and also at the report level, will there be any problem?
    Regards
    Vijay

    Hi,
    I think you can proceed with virtual characteristics for this.In the code you can truncate the time and you can display on the date:
    Regards
    Prasad

  • How can i set a path for my deployment files in weblogic server 10.3

    Hi
    How can i set the path for my WAR ,JAR files while deploying.i am using the wls10.3 version.
    is there any scripts for this ,please provide me.
    my Application is ADF 11g application.

    By "path", I assume you mean "classpath".
    The simplest way is simply to include the jars you need inside the web application or web module's WEB-INF/lib directory, EJB module's META-INF/lib directory, or EAR lib directory.
    If that's not practical, if you use NodeManager to start your servers, you can go to the "Server Start" tab in the server definition in the WebLogic console and edit the "Classpath" field, which defaults to no value. You can specify a classpath value there. Note that if you specify a value there, it REPLACES the default classpath for the server, it doesn't add to it. If you need to just add to it (a much more likely scenario), if the value references the value "$CLASSPATH" in it, that will reference the original classpath value that the server would have had.
    So, for instance, if you wanted to include the MQ jars in the server classpath, you could set a value like this:
    /usr/java/mq/lib/mq.jar:/usr/java/mq/lib/mqstuff.jar:$CLASSPATH

  • Did DreamWeaver CS5 fix the missing "Volumes" in local file paths for "Browse in-"?

    I can't "Browse in Chrome", no matter what I do.
    I tried:
    Re-Installing Chrome. (It's a drag-drop operation. nothing to install )
    Searched in Preferences for a value like the Opendiff to compare documents.
    If you select "browse in Firefox" it works. I don't know whether it's Firefox fixing it's DreamWeaver sending the wrong path, but "Volumes" is there.
    The problem probably only occurs in secondary partitions on the startup drive.
    Apple has not replied about it but it could be Adobe's bug.
    I honestly think the "Volumes" idea to access other partitions (not the startup's default) was introducint late, since other apps seem to have the same issue with non obvious operations (Compare Files Service, Apple OS)
    Has it been fixed in CS5?
    How can I fix it in CS4? I'd glad to hack files if I have to. Re-install is not an option, Com'on! Replace my whole teeth for one caries is not an answer. If the installer can fix it, whoever designed the installer knows what file is the corrupted one.
    Thanks.

    This thread is an extension of the discussion in this thread
    http://forums.adobe.com/message/4184846

  • Lack of texts in hierarchy nodes and leafs for 0ORGUNIT

    Hello experts!
    We have the BCT hierarchy 0ORGUNIT in BW exporting his time-dependent structure from R/3. Now, for some leafes and some nodes above the leaf we have no texts just see the key.
    Has someone an idea what the problem could be? In R/3 we have the text and in master data of 0ORGUNIT we also have the text within the right time period...
    Thanks for help!
    Best reagards,
    Peter

    I'm not sure I understand what you are suggesting. Here is the data we have:
    Hierarchy             Key Figure
    - CC 0001 (node)      30.56
      CC 0001 (leaf)          6.45
      - CC 0002 (node)       24.11
           CC 0002 (leaf)     6.45
           CC 0003 (leaf)     5.72
           CC 0004 (leaf)     7.47
           CC 0005 (leaf)     4.47
    We want the value 6.45 to show up next to the CC 0002 hierarchy node, since that is the value for that cc. And we want the 6.45 to show up against the cc 0001 node rather than adding everything beneath it. What you suggested below - is that a display option in the query, or where do I do it?
    Thanks.

  • How to set class path for mysql

    hai, I have been trying to make a java program read from mysql database. but i don't know how to set the class path for mysql-connector-java-5_1_.0.6-bin. i set the class path in system variable as C:\Program Files\Java\jdk1.5.0_08\jre\lib\ext\mysql-connector-java-5_1_.0.6-bin.
    in the command prompt, i compile C:\javac abc.java and run java abc.
    when run it come out error java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    i am using Window xp. can anybody help me??? TQ.

    hai, I have been trying to make a java program read
    from mysql database. but i don't know how to set the
    class path for mysql-connector-java-5_1_.0.6-bin. i
    set the class path in system variable as C:\Program
    Files\Java\jdk1.5.0_08\jre\lib\ext\mysql-connector-jav
    a-5_1_.0.6-bin.
    in the command prompt, i compile C:\javac abc.java
    and run java abc.
    when run it come out error
    java.lang.ClassNotFoundException:
    com.mysql.jdbc.Driver
    i am using Window xp. can anybody help me??? TQ.Right click on my computer icon,
    Goto properties->advanced->environment variables.
    Look for 'classpath' under system variable.
    Select it and click edit.
    put ';' and path of the mysql connector jar at the end
    suppose if u have jar file under d:/driver/mysqlconnector.jar
    thn put this value in variable value text box
    ;d:/driver/mysqlconnector.jar
    or simply put ur driver jar file in jre/lib/ext folder
    D:\j2sdk1.4.2_03\jre\lib\ext
    [Servlet tutorial|http://www.jsptube.com]

  • Menu path - for goods receipt for purchase order (MB01)

    Hi
    What is the menu path for Goods receipt for purchase order (MB01) - ECC6.0

    hi
    the path is too deep
    plz just log in ur system and find MB01
    Materials Management >  Purchasing  >  Master Data   > Subsequent Settlement >  Vendor Rebate Arrangements  >  Environment   > Condition/Arrangement  > Environment   >Pricing  > Environment    Value assignment  >  Inventory management  > Goods receipt  >For purchase order   >  MB01 - PO number known
    regards
    KI

Maybe you are looking for

  • Multiple unidentifiable display issues

    I am running an Nvidia GTX 680 with two monitors connected to the DVI ports.  When I log in I will get a screen flash similar to that of when you plug a second monitor in or change your display settings.  It just goes off for a second or two once or

  • Premiere Pro is not included in my Creative Cloud

    I scrolled and skimmed 5x thinking I was just overlooking - nope. I head to the site, I see that I can download it from the site. I click the download button. It prompts the opening of Creative Cloud app on desktop as if it is about to update on it a

  • Displaying the roles in the adobe form for the corresponding system

    Hi Gurus, I have two fields in my WDP Abap interactive form. In first filed, 2 radio buttons are there (1. SAP R/3 system, 2. BW System) As per this selection, I need to bring the existing roles and display them in the Adobe form. I know the  technic

  • Time Series function: csum

    Hi all, I am trying to use the time series function "CSUM" to create a running total column. The DBA loaded the package, however, he I did not know the correct syntax. Any thoughts. Thanks in advance. Peter Sidi [email protected] Wrote file afiedt.bu

  • Can't reinstall CS3

    windows crashed / reinstalled reinstalled CS3 but couldn't "deactivate" so now won't let me run program chat support tells me they can no longer help because it's old product... so now I can't use/reinstall CS3 or PS-CS3 ouch