Scroll error in AdvancedDatagrid in Flex 4.6

I am migrating an application from Flex 3.5 to Flex 4.6 . The mx:AdvancedDatagrid component which seemed to work fine displayes errors as shown below when I scroll fast  . I am adding two more columns which has charts in them but this error seems to appear very frequently if I scroll faster . Please advice.
TypeError: Error #1009: Cannot access a property or method of a null object reference.
    at mx.controls.listClasses::AdvancedListBase/scrollVertically()[E:\dev\4.y\frameworks\projec ts\advancedgrids\src\mx\controls\listClasses\AdvancedListBase.as:6583]
    at mx.controls::AdvancedDataGridBaseEx/scrollVertically()[E:\dev\4.y\frameworks\projects\adv ancedgrids\src\mx\controls\AdvancedDataGridBaseEx.as:2543]
    at mx.controls.listClasses::AdvancedListBase/set verticalScrollPosition()[E:\dev\4.y\frameworks\projects\advancedgrids\src\mx\controls\lis tClasses\AdvancedListBase.as:1656]
    at mx.controls::AdvancedDataGridBaseEx/set verticalScrollPosition()[E:\dev\4.y\frameworks\projects\advancedgrids\src\mx\controls\Adv ancedDataGridBaseEx.as:1178]
    at mx.controls::AdvancedDataGrid/set verticalScrollPosition()[E:\dev\4.y\frameworks\projects\advancedgrids\src\mx\controls\Adv ancedDataGrid.as:1155]
    at mx.controls.listClasses::AdvancedListBase/mouseWheelHandler()[E:\dev\4.y\frameworks\proje cts\advancedgrids\src\mx\controls\listClasses\AdvancedListBase.as:8671]
    at mx.controls::AdvancedDataGridBaseEx/mouseWheelHandler()[E:\dev\4.y\frameworks\projects\ad vancedgrids\src\mx\controls\AdvancedDataGridBaseEx.as:7530]
    at mx.controls::AdvancedDataGrid/mouseWheelHandler()[E:\dev\4.y\frameworks\projects\advanced grids\src\mx\controls\AdvancedDataGrid.as:8665]
    at flash.events::EventDispatcher/dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.managers::SystemManager/mouseEventHandler()[E:\dev\4.y\frameworks\projects\framework\s rc\mx\managers\SystemManager.as:2918] .

The following environment variables are conflicting:
Conflict found in OSD containing ManulifeMFrame1502.0.0.0:
Variable: PATH=%CSIDL_PROGRAM_FILES%\Microsoft Application Virtualization
Sequencer\;%CSIDL_PROGRAM_FILES%\SNA\system;%CSIDL_PROGRAM_FILES%\WallData\SYSTEM;
Variable: PATH=%PATH%;%CSIDL_PROGRAM_FILES%\SNA\system;%CSIDL_PROGRAM_FILES%\WallData\SYSTEM;
Conflict found in OSD containing Mframe1502.0.0.0:
Variable: PATH=%CSIDL_PROGRAM_FILES%\Microsoft Application Virtualization
Sequencer\;%CSIDL_PROGRAM_FILES%\SNA\system;%CSIDL_PROGRAM_FILES%\WallData\SYSTEM;
Variable: PATH=%PATH%;%CSIDL_PROGRAM_FILES%\SNA\system;%CSIDL_PROGRAM_FILES%\WallData\SYSTEM;
Conflict found in OSD containing Rumba2000_cmd:
Variable: PATH=%CSIDL_PROGRAM_FILES%\Microsoft Application Virtualization
Sequencer\;%CSIDL_PROGRAM_FILES%\SNA\system;%CSIDL_PROGRAM_FILES%\WallData\SYSTEM;
Variable: PATH=%PATH%;%CSIDL_PROGRAM_FILES%\SNA\system;%CSIDL_PROGRAM_FILES%\WallData\SYSTEM;
If I change the all the env variables name to PATH1 from PATH - The variable bolded above -  the errors are resolved. But am not sure what impact does this modification has on the functionality of the application.
Regards
KC

Similar Messages

  • How to add an item object as a child for a specified parent node in AdvancedDataGrid in Flex?

    Hi all,
              This is the code, to add a object as a child into a specified parent node in AdvancedDataGrid in flex.
    <?xml version="1.0" encoding="utf-8"?><mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creationComplete="onCreationComplete()" width="100%" height="100%">
    <mx:Script><![CDATA[
    importmx.controls.Alert; 
    importmx.collections.IHierarchicalCollectionViewCursor; 
    importmx.collections.IHierarchicalCollectionView;  
    importmx.collections.ArrayCollection; [
    Bindable]private var objectAC:ArrayCollection = newArrayCollection(); 
    //This method is used to construct the ArrayCollection 'flatData' 
    private function onCreationComplete():void{
    var objOne:Object = newObject(); objOne.name =
    "Rani"; objOne.city =
    "Chennai";objectAC.addItem(objOne);
    var objTwo:Object = newObject(); objTwo.name =
    "Rani"objTwo.city =
    "Bangalore";objectAC.addItem(objTwo);
    var objThree:Object = newObject(); objThree.name =
    "Raja"; objThree.city =
    "Mumbai";objectAC.addItem(objThree);
    //This method is used to add one object as a child item for the parent node 'Rani' 
    private function addChildItem():void{
    var dp:IHierarchicalCollectionView = groupedADG.dataProvider asIHierarchicalCollectionView;  
    varcurent:IHierarchicalCollectionViewCursor = groupedADG.dataProvider.createCursor();  
    var dummyParentNode:Object = {name:"Rani", city:"New Delhi"};  
    var obj:Object = null; 
    while(curent.current){
    // To get the current node objectobj = curent.current;
    // Add Child item, when depth = 1 and Node name should be "Rani" 
    if (curent.currentDepth == 1 && obj["GroupLabel"] == "Rani"){
    dp.addChild(curent.current, dummyParentNode);
    curent.moveNext();
    groupedADG.dataProvider = dp;
    groupedADG.validateNow();
    groupedADG.dataProvider.refresh();
    ]]>
    </mx:Script> 
    <mx:AdvancedDataGrid id="groupedADG" x="10" y="15" designViewDataType="tree" defaultLeafIcon="{null}" sortExpertMode="true" width="305" > 
    <mx:dataProvider> 
    <mx:GroupingCollection id="gc" source="{objectAC}"> 
    <mx:grouping> 
    <mx:Grouping> 
    <mx:GroupingField name="name"/> 
    </mx:Grouping> 
    </mx:grouping> 
    </mx:GroupingCollection> 
    </mx:dataProvider> 
    <mx:columns> 
    <mx:AdvancedDataGridColumn headerText="Name" dataField="name"/> 
    <mx:AdvancedDataGridColumn headerText="City" dataField="city"/> 
    </mx:columns> 
    </mx:AdvancedDataGrid> 
    <mx:Button x="10" y="179" label="Open the folder 'Rani'. Then Click this Button" width="305" click="addChildItem()" /> 
    </mx:Application> 

    Hi,
    It's not possible to 'append' a StringItem or a TextField (or any other lcdui.Item object) to a Canvas or GameCanvas. You can only draw lines, draw images, draw text, etc etc, on a Canvas screen. So, you can only 'simulate' the look and feel of a TextField (on a Canvas) by painting it and adding source code for command handling (like key presses). However, this will be quite some work!!
    lcdui.Item objects can only be 'appended' to a Form-like Displayable.
    Cheers for now,
    Jasper

  • Error while creating New flex data services project

    Hi
    Error: Invalid server root. flex-config.xml or
    flex-enterprise-services.xml must exist in the WEB-INF/flex folder
    within the server root.
    Trying to create flex data services project with Weblogic8.1
    as the j2ee server, but am geting the above error in the screen
    where i point to the root of the server.
    I did deploy flex on weblogic.
    I would appreciate any help.
    Thank you
    Sun

    Hi Nj,
    Thanks for you reply, I did point root folder to WEB-INF
    folder(which contains flex folder). My WEB-INF folder is in the
    weblogics "c://bea/userprojects/applications/appname/"
    this the value in the root folder field "
    C:\bea81SP5\user_projects\applications\dcgsaApplication\dcgsAdaptersWeb\WEB-INF\flex"
    Let me know if am doing anything wrong.
    thank you
    sun

  • How to get label of Parent level nodes, when itemOpen() event of any node in AdvancedDataGrid in Flex?

    Hi all,
              This is the code, to get the label of every one parent level nodes, when we open the parent node item in AdvancedDataGrid in Flex.
    <?xml version="1.0"?><!-- dpcontrols/adg/SimpleGroupADGMXML.mxml --><mx:Application
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
    <![CDATA[
    import mx.controls.Alert; 
    import mx.events.AdvancedDataGridEvent; 
    import mx.collections.ArrayCollection; [
    Bindable] 
    private var groupData:ArrayCollection = new ArrayCollection([{Computer:
    "HardWare Devices", Device:"Keyboard", Company:
    "Logitech", PriceInRupees:"500"}, {Computer:
    "HardWare Devices", Device:"Keyboard", Company:
    "Microsoft", PriceInRupees:"500"},{Computer:
    "HardWare Devices", Device:"Mouse", Company:
    "Logitech", PriceInRupees:"300"},{Computer:
    "HardWare Devices", Device:"Mouse", Company:
    "Microsoft", PriceInRupees:"300"},{Computer:
    "HardWare Devices", Device:"Monitor", Company:
    "LG", PriceInRupees:"5000"},{Computer:
    "HardWare Devices", Device:"Monitor", Company:
    "Microsoft", PriceInRupees:"5000"}]);
    //This method is used to get label of every parent lavel nodes, when we open any item 
    private function getLabel(e:AdvancedDataGridEvent):void{
    Alert.show(e.item[
    "GroupLabel"]);}
    ]]>
    </mx:Script>
    <mx:Label text="NOTE : Open the every parent level nodes here. We can get the label of every one parent level nodes."color="
    blue" fontWeight="bold"/>
    <mx:AdvancedDataGrid id="groupADG" width="
    100%" height="437" initialize="gc.refresh();" itemOpen="getLabel(event)"
    >  
    <mx:dataProvider>
    <mx:GroupingCollection id="gc" source="{groupData}">
    <mx:grouping>
    <mx:Grouping>
    <mx:GroupingField name="Computer"/>
    <mx:GroupingField name="Device"/>
    </mx:Grouping>
    </mx:grouping>
    </mx:GroupingCollection>
    </mx:dataProvider>  
    <mx:columns>  
    <mx:AdvancedDataGridColumn headerText="
    Computer"/>
    <mx:AdvancedDataGridColumn dataField="Company"headerText="
    Company"/>
    <mx:AdvancedDataGridColumn dataField="PriceInRupees" headerText="PriceInRupees"/>
    </mx:columns>
    </mx:AdvancedDataGrid>

    Dialog\ResponseTime 6585
    "The dialog response time consists of the period of time from the request of the dialog to the dispatcher through the processing, to the ending of the dialog in the dispatcher and the transfer of the data to the presentation layer"
    This is not buffered as far as I know is measured on demand
    Read,
    http://help.sap.com/saphelp_nw70/helpdata/en/31/d7843b43c8e937e10000000a11402f/content.htm
    Regards
    Juan

  • JVM error while working on flex

    Hi,
    Getting following error while working on flex:
    JVM terminated. Exit code=1
    C:\Program Files\Adobe\Flex Builder 3\jre\bin\javaw.exe
    -Xms128m
    -Xmx512m
    -XX:MaxPermSize=256m
    -XX:PermSize=64m
    -Djava.net.preferIPv4Stack=true
    -jar C:\Program Files\Adobe\Flex Builder 3\startup.jar
    -os win32
    -ws win32
    -arch x86
    -launcher C:\Program Files\Adobe\Flex Builder 3\FlexBuilder.exe
    -name FlexBuilder
    -showsplash 600
    -exitdata 520_54
    -vm C:\Program Files\Adobe\Flex Builder 3\jre\bin\javaw.exe
    -vmargs
    -Xms128m
    -Xmx512m
    -XX:MaxPermSize=256m
    -XX:PermSize=64m
    -Djava.net.preferIPv4Stack=true
    -jar C:\Program Files\Adobe\Flex Builder 3\startup.jar
    Its terminated my flex builder without any notice.
    Need help to resolve
    Thanks

    Hi :
    I also used to get the same error , Use the below command it will solve ur issues.
    export ANT_OPTS="-Xmx900m -XX:MaxPermSize=900m"
    Thanks,
    Staish

  • Bizarre error adding Numbers in Flex 4

    I'm having a bizarre error adding numbers in Flex 4.  In all cases, I'm getting the correct result, but sometimes I'm getting extra precision with a 5 at the end.
    For example,
    If I try to add 5 and 1.56, I get 6.5600000000000005
    a lot of numbers add correctly, it's just certain combinations that have the problem.
    Here is a small app that demonstrates the issue:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
         <s:layout>
              <s:VerticalLayout/>
         </s:layout>
         <fx:Script>
              <![CDATA[
                   protected function button1_clickHandler(event:MouseEvent):void
                        var num1:Number = Number(number1.text);
                        var num2:Number = Number(number2.text);
                        var result:Number = num1 + num2;
    //                    result = 1.56 + 5;
    //                    result = Number(1.56) + Number(5);
                        resultLabel.text = String(result);
              ]]>
         </fx:Script>
         <s:TextInput id="number1"/>
         <s:TextInput id="number2"/>
         <s:Button label="Add Values" click="button1_clickHandler(event)"/>
         <s:Label id="resultLabel"/>
    </s:Application>
    Any assistance would be appreciated!
    Thanks!
    Jon Keener
    [email protected]

    This question comes up all the time. It's a Fact Of life of modern microprocessors and computer languages, which implement floating-point arithmetic using binary fractions (1/2, 1/4, 1/8, etc.), not decimal fractions (1/10, 1/100, 1/1000, etc.), according to the IEEE-754 spec. Many decimal fractions, such as 1.56, cannot be exactly represented as a finite binary fraction. (Or the exact representation in binary might be finite but require more fractional digits that the spec allows.) Although your source program says "1.56", it gets compiled and executed as the IEEE-754 binary-fraction that is closest to 1.56, but it isn't exactly equal to 1.56, and then this slight error gets propogated through calculations, and the conversion back to decimal is again inexact.
    Generally, people just use methods like toPrecision() to round things off a bit and hide this problem. Or they go write or find a (much slower) ActionScript library that does true decimal floating-point arithmetic by storing decimal fractions rather than binary fractions.
    Gordon Smith
    Adobe Flex SDK Team

  • Portal theme switcher generates scroll error in RTL

    Portal theme switcher using standard objects generates scroll error in RTL
    Following the Blog for Switching Themes by Topic - A Color Code System for the Portal [https://www.sdn.sap.com/irj/sdn/weblogs?
    blog=/pub/wlg/2053]
    I developed a portal application and placed it in the page framework.
    It works fine using Left To Right (LTR) languages but when using a Right To Left (RTL) languages like Hebrew and Arabic a long scroll appears in the lower part of the portal window and the masthead is moved a bit with no relation to the position of the other sections (iViews) of the screen.
    I know it’s a custom development but it uses a standard SAP API.
    The system version of the portal is NW 7 SP 14

    Hi Yolanda,
    it´s as you already figured out - 0FISCPER is the problem.
    When you want to create new lines, there can not be a dynamic characteristic in the columns. Each column has to be defined with single values.
    Try to create restricted key figures for the periods you need to show.
    regards
    Cornelia

  • Error while Creating Key Flex Feild

    Hi Experts,
    I am learning OAF; i want to create KEY FLEXFIELD in OAF page.
    Steps:
    1. Created VO(GLCodeCombinationsVO) -- SQL Query:select code_combination_id from gl_code_combinations_kfv
    2. Created AM(GLCodeCombinationAM) and attached VO to AM.
    3. Created page(GLCodeCombination_KFF_PG)
    4. Set the AM for page layoutRn
    Items in page:
    Item1:
    ID:item1
    type:flex
    View Instance: GLCodeCombinationsVO1
    App Short Name: GL
    Type: Key
    In page controller:
    PR:
    OAKeyFlexBean CCIDlovEnabledKFF = (OAKeyFlexBean)webBean.findIndexedChildRecursive("item1");
    CCIDlovEnabledKFF.useCodeCombinationLOV(true);
    CCIDlovEnabledKFF.setAttributeValue(FLEXFIELD_NAME, "GL#"); /*GL# is the Keyflex field code*/
    CCIDlovEnabledKFF.setStructureCode("ADB_ACCOUNTING_FLEX"); /*ADB_ACCOUNTING_FLEX is the structure code in the GL# key flexfield*/
    CCIDlovEnabledKFF.setCCIDAttributeName("CodeCombinationId"); /*unique id*/
    CCIDlovEnabledKFF.mergeSegmentsWithParent(pageContext);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    OAViewObject sampleViewObject = (OAViewObject)am.findViewObject("GLCodeCombinationsVO1");
    sampleViewObject.executeQuery();
    When i run the page, it's giving the follwing error message.
    Error:
    1.Flexfield routine KeyFlexfieldDefinitionFactory.createDefinition cannot find flexfield definition for application , and code .
    2.Flexfield routine KeyFlexfieldDefinitionFactory.createDefinition cannot find flexfield definition for application GL, and code GL#.
    Could anyone help me why it's giving this error?
    Thanks in advance.

    Hi,
    check out this option
    Profile option *"FND: Framework Compatibility Mode "*.
    This profile option must be set to 11.5.9 at site level.
    changed this profile option to current version (eg - 11.5.10) at the application level and restart JDeveloper.
    Regards,
    Gyan

  • Error while migrating to Flex 4.5.1 (1067: Implicit coercion of a value...)

    I am getting the following error while migrating my application from Flex 3.6 to Flex 4.5.1:
    1067: Implicit coercion of a value of type __AS3__.vec:Vector.<Object> to an unrelated type Array.
    The error is thrown on the following piece of code:
    var list:ArrayCollection=new ArrayCollection(dgSoftwareTitles.selectedItems);
    dgSoftwareTitles is defined as:
    <s:DataGrid id="dgShareCategoryForTransfer"
    x="34"
    y="369"
    requestedRowCount="5"
    width="90%"
    selectedIndex="-1"
    selectionMode="multipleRows">
    <s:columns>
    <s:ArrayList>
    <s:GridColumn headerText="SoftwareTitle"
    dataField="idSoftware"
    visible="false"/>
    <s:GridColumn headerText="SoftwareName"
    dataField="softwareName"
    visible="false"/>
    ...more GridColumns
    </s:columns>
    </s:ArrayList>
    </s:DataGrid>
    Any ideas why this would trow the "1067: Implicit coercion of a value of type __AS3__.vec:Vector.<Object> to an unrelated type Array" error?
    Thanks!
    Lee

    I think that dgSoftwareTitles.selectedItems is a type of Vector while
    public function ArrayCollection(source:Array = null) expects an array as a source.

  • Error message when opening flex table graphic

    Hello,
    we're currently implementing our business processes in our CRM 7.0 SP3. This message is about an issue in the area the flex table graphics.
    When trying to display it, error message "Error while loading data. Graphic is reset to its initial state." is thrown.
    Steps for reproduction:
    -) start any search in the web UI
    -) In the result table, select "open chart"
    -) Select any data to be displayed
    -) The error message is shown
    I found note 1416295, however, it doesn't deal with this issue.
    Any ideas?
    Regards
    Wolfgang

    See my reply #1 in your other thread http://forums.adobe.com/thread/1419961?tstart=0

  • Syntax error when running GLPLUP - Flex Plan Upload

    HI,
    We want use transaction GLPLUP to perform a Flex Plan Upload, but encounter a syntax error in program RK50003 stating:
    The following syntax error occurred in program "RK500003 " in include
      "PP_FISL_GINC " in
    line 652:
    "The data object "ITDAT1" does not have a component called "XBILK"."
    This program is a local object, and appears to be generated by SAP.  Checking the program attributes the owner and the last person to change this program is a consultant who has rolled off the project, and is not available for help.
    I suspect that there must be some steps to regenerate this code, but I am not certain where to look for this information. 
    I have tried running GLPLDEL and GLPLINSTALL, but this did not change RK500003.
    Any insight you can provide on this is greatky appreciated.
    Thanks,
    Roy

    HI,
    I reported this issue with SAP and the following is what they had me do to resolve the issue:
    1. Run transaction GLPLDEL:
    Deletes all generated reports of the planning processor for
    FI-GL/SL planning (application class GLU1). After a new call of
    the planning, these reports will be generated once again.
    2. Run transaction GLPLINSTALL:
    It regenerates necessary database table entries for FI-G/SL Planning
    (tables t8pl*). Make sure that you will perform this step when no
    posting of FI-SL data is running.
    This resolved the issue for us.
    Good luck,
    Roy

  • Issue with AdvancedDataGrid in Flex SDK 3.3

    Hello Forum,
    I downloaded and installed Flex SDK 3.3. Once I pointed my environment to the SDK 3.3, compiler complained that it can’t find AdvancedDataGrid component in the path. After some investigation, I was able to fix this issue by downloading Flex 3.3 Data Visualization Components from http://www.adobe.com/products/flex/flexdownloads/. Then I had to unzip downloaded file into the /sdk_3.3.0_install_dir/
    I don't think I had to go through this in my previous installations - 3.2 and 3.1. Does anyone know the reason for this two step download and installation?
    Also, I would like to use a new Vector class in my future development, does anyone know what version of  SDK provides it?
    Much Appreciated,
    Mike

    If I'm not wrong Vector is a part of Flash Player 10, so it's no related to the SDK, and also in Flex Builder you can access all the new classes that are available in FP 10 but you don't get autocompletion for those new clases if I'm not wrong.

  • Issues with Error #2048 on deployed Flex/PHP Web Application

    Hello,
    I'm testing out Flash Builder for PHP and I'm running into the following error when deploying to a web servers:
    Send failed
    Channel.Security.Error error Error #2048 url: 'http://testsite.dreamhosters.com/LocatorPHP/public/gateway.php'
    I have looked though documentation and tutorials without any luck.  My application works great on the local Zend Server setup but as soon as I jump to a remote web server I get problems.
    Here's what I've tried:
    1) crossdomain.xml in web root
    2) amf_config.ini updated so zend framework on server and gateway.php are reachable (connecting to gateway.php directly gives me no errors)
    3) attemped to change the flex server option in my project but Flash Builder for PHP will not allow me to change this, so I had to change my php service.as endpoint entry to the gateway.php on the webserver
    Is there a log that can help me troubleshoot the error?
    Thanks in advance.

    Any solution I have just ran into the same issue. App works perfect on localhost phpmyadmin as soon I change everything to our public server ERROR#2048
    I have tried same as above no results.
    After countless hours of searching this worked for me!!!!
    http://forums.adobe.com/thread/674871

  • Capture a "scrolling" event in spark List (Flex 4)

    after hours trying to find a scroller thumb drag event, i'm left stumped. Is ther any way to dispatch an event when the scrollbar of a List component is scrolling? or even better, to capture the scroll thumb dragStart and dragComplete events? thanks in advance -b

    You could detect when the scroll position of the viewport goes sufficiently below zero and then call your refresh logic from there.
    Here's an example of how to detect scroll position changes:
    http://stackoverflow.com/questions/4390725/flex-4-scroller/4425091#4425091

  • Send error from Java to Flex

    I need to throw errors from Java and to receive them in Flex.
    My idea is using xml with error id and message, and maybe the Flex
    component which should show the error.
    Is there any other way to do it? Another interaction between
    Java and Flex?
    Thanks in advance
    Tuli-O

    XML wrapping error info written to response when java code
    throws and having a common component on the flex to handle this
    situation -- maybe on the fault event.

Maybe you are looking for

  • I think i should be on ADSL2+ but BT say I can't c...

    Hi all. First post but it might be an easy one to solve. I have recently moved to a new house where the exchange was upgraded to 21CN earlier in December.  I think I have been connected on ADSL Max but as I am pretty close to the exchange I think I w

  • Bootcamp issue. I recently ran bootcamp on my late 09 macbook pro, and my Nvidia 9400m driver keeps crashing? Any ideas?

    So I have a late 09 macbok pro, with 2.25ghz or so core 2 duo processor, 8 gb of ram, and the nvidia geforce 9400m graphics card. I just recently used bootcamp to install windows, so I can run AutoDesk Revit, however every time I go to open Revit, I

  • Itunes Not Syncing (even after reinstalling itunes)?

    So to keep a long story short, i have a ipod touch and recently its been impossible to sync it with itunes. I first updated both my itouch and itunes to the most recent type, that didnt do anything. Then, whenever i tried to use the run diagnostic fe

  • Hyp Reports and Analyzer 7.2

    Hi We are using Hyp Reports and Analyzer 7.x , I dont have any info regarding relational repositories. Can any one tell me how to get the repository information from hyperion reports and analyzer admin window Thank You for your help

  • SP to Block updation of BP

    Hi All, I would like to block the creation of BP except Lead for a particular user. The following sp prevents the addition of customers or vendors but does not allow me to update the lead as well. Please assist to correct this sp; if @object_type = '