Changing components to point to a different excel worksheet

Hi,
I have a canvas which displays several components using dynamic visibility. I need to duplicate this canvas for 8 other worksheets within excel...all of which will be in the same format as my original.
I added a tab component to the canvas and copied everything 8 times, and I also copied the original worksheet 8 times.
I have everything I need now, but all the components are still pointing to the original worksheet.
Is there a simple way to change the 8 other canvases so each component will point to the proper worksheet. Currently I'm changing each component individually to point to the proper worksheet. This is time consuming due to the number of components that need to be changed.
Is there an easier way to do this? Can you change all the components on a canvas to point to a different worksheet at one time?
Thanks!!

Can you please post the output of these commands?
Get-clientAccessServer | fl Name,AutoDiscoverServiceInternalUri
Get-OabVirtualDirectory | fl Server,Name,internalurl,externalurl
Get-WebServicesVirtualDirectory | fl name,internalurl,externalurl
And make sure you below ping commands returns your Exchange IP
Ping mail.yourexternalname.com
Ping autodiscover.yourexternalname.com.
Thanks, MAS
Please mark as helpful if you find my comment helpful or as an answer if it does answer your question. That will encourage me - and others - to take time out to help you.
So as far as the ping goes - I have split DNS setup, and they both point to the internal local IP of the exchange server (when inside our network, obviously).  Externally mail.externalname.com will point to the public IP.
Here is the output from the commands - they all look like they should imo and thats why I dont understand why this is still pulling server.local for the server name:
[PS] C:\Windows\system32>Get-clientAccessServer | fl Name,AutoDiscoverServiceInternalUri
Name                           : LOCALSERVERHOSTNAME
AutoDiscoverServiceInternalUri : https://mail.external.com.com/autodiscover/autodiscover.xml
[PS] C:\Windows\system32>Get-OabVirtualDirectory |  fl Server,Name,internalurl,externalurl
Server      : LOCALSERVERHOSTNAME
Name        : OAB (Default Web Site)
InternalUrl : https://mail.external.com.com/oab
ExternalUrl : https://mail.external.com/OAB
[PS] C:\Windows\system32>Get-WebServicesVirtualDirectory | fl name,internalurl,externalurl
Name        : EWS (Default Web Site)
InternalUrl : https://mail.external.com/ews/exchange.asmx
ExternalUrl : https://mail.external.com/EWS/Exchange.asmx

Similar Messages

  • Change graph with points located at different distance, to equidistant points graph.

    In this 3D graph, the curves are positioned on the z axis according to their amplitudes. How could I do to make this graph show curves every 0,2 mV (with the same data)?
    Attachments:
    Curves.lnk ‏190 KB

    I got swamped with work.
    Your data seems to have grouped the lines in two and that is why your data looks the way it does. I rewrote some of the code so that it will nudge the x values to a multiples of .2 . The code is attached below.
    Jeremy
    Attachments:
    vi_[1].vi ‏201 KB

  • Xcelsius suddenly only allows chart to call data from first excel worksheet

    Hi
    I'm using Xcelsius 2008 Engage with SP1 FP3 installed.
    I have never had this problem before, but in the last week, Xcelsius won't allow a chart to call data from any worksheet in the excel file other than the first worksheet. If I reorder the worksheets in the excel file, i can access a different worksheet, but only the one that is saved as the first worksheet (left most tab).
    In dashboards i have already created, i can't change the data range of a chart that's already calling data from a worksheet unless i select the first worksheet.
    Could this be an automatic update from microsoft? Has anyone else experienced this and worked out how to overcome it? It is frustrating to keep moving the worksheet to the front and reimporting the data everytime i want to make a change that isn't in the first excel worksheet.
    Thanks,
    Scott.

    As far as I remember it's not possible. Thus, find attached VI and use it to convert line/column to excel cell format. It's working if you are not using more than 26 columns (i.e. column AA, AB, ... if this is the case you have to improve it a little)
    Hope this helps
    Attachments:
    To_Cell_Format.vi ‏18 KB

  • Is there a way to change the color of the Bezier Curves and points to a different color other than black  I find it perplexing while setting points and curves working on a photo that needs to be separated from it's background for placement on transparent

    Is there a way to change the color of the Bezier Curves and points to a different color other than black  I find it perplexing while setting points and curves working on a photo that needs to be separated from it's background for placement on transparent backgrounds. Any thoughts?

    Yes. Well, sort of: instead of a "path", set the pen tool to "shape" in the tool properties. Then set the fill colour to transparent, and the stroke colour to the colour you want. You can also set the stroke width.
    Not perfect, but at least you can see the path more clearly - the anchor points and handles still remain the default colour. Open the path panel, and right-mouse click the path shape to create a selection based on that shape. The Paths panel menu also allows you to create work paths based on that shape.
    Unfortunately when you try to move the handles the black thin outline appears again until you release the mouse button.
    This is one of several things that works better in Photoline: in Photoline, once the path is set to a specific colour, editing the path uses the actual colour and stroke width. which is extremely handy for creating path based selection with awkward background colours and/or a high resolution screen. In Photoline the handles and bezier points are also much, much larger, which makes it rather simpler to work with as well - especially on a higher resolution screen. And when selected the handles and points are a clear red with a black outline - again easier to spot and identify. I just works better, in my opinion.

  • Problem with Managed Server pointing to a different JDK

    Hi,
    My Adminserver is pointing to JDK 1.7 which is shown in the startup, but my managed servers are pointing to a different 1.6_43 . We are running into Java version mismatch problem while deploying our application built with jdk 1.7 onto these managed servers . How do i change the version of my managed server ?
    Thanks
    Sam

    Hi Sam,
    You generally only have to change it in two places.
    DOMAIN_HOME/bin/setDomainEnv.sh and MW_HOME/wlserver_12.1/common/bin/commEnv.sh
    See examples below.
    If you are on Linux you can quickly fix it. For example:
    cd /u01/app/oracle/product/fmw
    find . -type f -exec sed -i "s/\/u01\/app\/oracle\/product\/jdk1.6.0_39/\/u01\/app\/oracle\/product\/java_current/g" {} \;
    It is a good idea to make a softlink to your Java installation, then you will not have this problem in the future. If you are on Windows you can use a symlink.
    Linux example:
    ln -s /u01/app/oracle/product/jdk1.7.0_25 /u01/app/oracle/product/java_current
    Windows example:
    mklink /d D:\oracle\product\java_current D:\oracle\product\jrockit-jdk1.6.0_26-R28.1.4-4.0.1
    setDomainEnv.sh
    /u01/app/oracle/domains/eksudv/bin/setDomainEnv.sh
    if [ "${JAVA_VENDOR}" = "Oracle" ] ; then
            JAVA_HOME="${BEA_JAVA_HOME}"
            export JAVA_HOME
    else
            if [ "${JAVA_VENDOR}" = "Sun" ] ; then
                    JAVA_HOME="${SUN_JAVA_HOME}"
                    export JAVA_HOME
            else
                    JAVA_VENDOR="Sun"
                    export JAVA_VENDOR
                    JAVA_HOME="/u01/app/oracle/product/java_current"
                    export JAVA_HOME
            fi
    fi
    commEnv.sh
    /u01/app/oracle/product/fmw/wlserver_12.1/common/bin/commEnv.sh
    # Reset JAVA_HOME, JAVA_VENDOR and PRODUCTION_MODE unless JAVA_HOME
    # and JAVA_VENDOR are pre-defined.
    if [ -z "${JAVA_HOME}" -o -z "${JAVA_VENDOR}" ]; then
      # Set up JAVA HOME
      JAVA_HOME="/u01/app/oracle/product/java_current"
      # Set up JAVA VENDOR, possible values are
      #Oracle, HP, IBM, Sun ...
      JAVA_VENDOR=Sun
      # PRODUCTION_MODE, default to the development mode
      PRODUCTION_MODE=""
    fi
    Regards Peter
    http://theheat.dk

  • Change in Shipping Point

    Hi gurus,
    I have raised a sales Order and shipping point is determined in that order. But while creating Outbound delivery i decided to send it through different Shipping Point.
    Can anyone please let me know how to change the Shipping Point at creating Outbound delivery.
    NOTE: I DONT HAVE AUTHORIZATION TO MAKE CHANGES IN THE SALES ORDER.

    hi,
    you cannot have delivery for an item having a different shipping point at delivery than is proposed at the sales order level.
    the copy control rountines between order to delivery ensure this.
    However if there is a business requirement like this wherein you may need to change the shipping point, take the required authorization to do so, than thinking of any customization.
    regards
    sadhu kishore

  • 3D PSD file import : how to change 3D anchor point in AE ? Challenge..!

    Hello everyone,
    I've successfully imported a 3D file from Photoshop Extended CS4 into AE CS4. In AE, I can sucessfully animate rotation of the 3D object.
    Here's the problem : I cannot change the 3D object's anchor point. I've tried changing the anchor point's coordinates on the controller layer of the 3D object layer, the numers change, but the anchor point remains at its initial position, as if it was locked.
    I also thought changing the anchor point in PS Extended before importing the file into AE, but PS Extended does not seem to have an anchor point changing tool.
    So I even reasoned back one step : changing the anchor point in my 3D software since the beginning. Well, not possible because PS Extended seems to create an average position for the anchor point when impoting a 3D file from a third party software. So useless changing the coordinates in the 3D software.
    Photoshop Extended 3D is the only possible workflow to import 3D objects into AE that I know of.
    So, is is possible to change the 3D anchor point directly in After Effects ? What blocks that point from being changed ?
    This is quite a challenging problem, good luck for finding a solution ! I'm very sure that this technique is commonly needed and used when working in 3D, and that it will be of great help for many designers that want 3D in After Effects !
    Thanks again !
    Note : please do not confuse simple After Effects standard 3D layer, with the 3D PSD file import layer, these are two totally different types

    Any further forward with this anyone?
    This is driving me insane as well...
    I'm trying to create a simple comp within AE and have my clients logo fly on behind their text while rotating in 3D space.
    The idea is for it to rotate on the X axis, but rotate within the logo itself (straight through the axis within the logo itself)
    But when I try to rotate it, the AP is about 2.5 "logo depths" away from the logo, so when the rotation of any axis starts it looks ridiculous.
    Are Adobe really trying to tell us that moving the AP is not possible within AE for imported Live Photoshop PSD files?
    Hopefully a solution comes along soon as I cannot for the life of me figure out a workaround to the problem......
    Cheers,
    Paul.

  • Change the end point in a web service client???

    Hello,
    With the Web Service Proxy Wizard of JDeveloper 10g R3, I created a web service proxy that connects to a (web service) end point like this: http://carina.bicevida.cl/OidServices/OidBasicWebServiceSoapHttpPort
    My three related questions are:
    1.- How can I change the end point registered in the (client) web service proxy ?
    2.- How can I do this without need to rebuild the client application?
    3.- How can I do this once my client application have been deployed in the application server?
    Please help.

    Hi,
    these are your options
    - Edit the endpoint meta data stored in the .proxy xml file (e.g. \src\project\myservice.proxy)
    - Use WS proxy wrapper and call setEndpoint on the proxy
    - Recreate the proxy in JDeveloper based on the new endpoint. This may require merging any business logic if it was inserted directly in the proxy (as opposed to a wrappering class)
    where I think option 1 and 2 is what you would look for. I don't know how exactly JDeveloper 11 is different, but I got the info from development that there will be simplifications.
    Frank

  • HT1689 II need to change my ITunes store to a different country but it won't allow me to do it unless I spend the last 72c in my account. How can I do this?

    I need to change my ITunes store to a different country but it won't allow me to do it unless I spend the last 72c in my account. How can I switch stores? thx

    See:
    How to manage unused iTunes Gift Card and Gift Certificate balances

  • How do I make 2 points in two different objects to stick to eachother?

    As the topic says, I need to make 2 points in two different objects to stick to eachother, so for example when I rotate a line which is "connected" to a square object in one end, the line will rotate around that point.
    Also, if I have lets say two square objects and I "connect" one of the corners of one square object to another corner of another square object, where the points are located exactly on the same location, I need to be able to rotate any of the square objects around the point which is connected to the other square.
    Is this possible?
    Some will probably ask why I need to do this, but I can only say I do, it's a long story

    Its quite complicated guys , I'm quite sure Illy doesn't do what I'm looking for.
    It's basically a line which is "anchored" at one point and connected to a square at the other point. So when I move the square the line is being dragged with it without altering its length. And of course the "anchored" point of the line stays where it was from the beginning, while the other end is attached to the square moving with it.
    This way the squares point, the one which is connected to the line, can neither end up closer or farther from the lines "anchored" point. The square can only move around that point in an exact circle, with constant radius.
    I'm using this for measuring/map creation. It doesn't have to be 100% exact down to the millimetre, but I'd be happy if I could get it centimetres exact if you know what I mean. Of course this is on a scale of like 100x100 metres or more.
    I can do it without this "feature" too, but it takes more time and is not totally exact either.
    I can't use CAD for this, so it'll have to be Illy.

  • Changing the Size of generated graph in excel report generation toolkit

    Hi, i am trying to build a report generation vi for my Structural health monitoring system in which i need to export 3 graphs in to an excel report. The idea is to have the report on a single page, but when i paste them along with the ceiling and pillar deviation percentages, the report just exceeds the page limit. I wanted to know whether one can change the size of the graphs in excel? One can do it in word(tried that), but i dont want to use the bookmark option as it intend to put this up as a webservice in the next step. I am using LabVIEW 2009 Thanks.
    LabVIEW 8.2,8.6,2009...still learning
    Attachments:
    Report Generation SHM.vi ‏30 KB

    Hi,
    I haven't tried this myself, but looking through the report generation toolkit the "Excel format image VI" (in the Excel specific tab of the Report Genertaion window) looks to be the one you are after. The help entry for the VI says to: "Use this VI to format any type of image in a worksheet, including front panel images, images from a file, and graphs"
    Hopefully this will help.
    -CC 
    "If anyone needs me, I'll be in the Angry Dome!"

  • Change the order of boxes in different media queries

    How can I change the order of boxes in different media queries?
    Is the only work around to copy one box to the other order position and switch the Display attribute in the different media queries?

    Hi, thanks for your question. Reflow follows the rules of CSS and HTML. There is not a way to swap or move objects in the DOM without using something like Javascript. We've avoided that, and only focus on CSS and HTML with Reflow.
    Yes, you can use multiple boxes in different places and change their display as needed. But I might caution against doing this as it may add work for both you and anyone else that may take this design and put it into production. I might take a look at why you want to move the boxes around, and maybe find a simpler or more efficient design pattern to follow to get a result you would be happy with. Hope that doesn't sound preachy, you should try it if you want and don't listen to me. Either way, let me know how it goes!

  • Position of items in a region changes when changing region display point

    Hi all,
    I encounter a strange behaviour of items when changing the display point of a reports region from default (Page Template Body (3)) to anything else.
    If set to Body (3), my items are correctly displayed above the report, but else they are displayed below.
    Changing the sequence numbers does not affect this.
    To clarify what I mean I created a sample application:
    http://apex.oracle.com/pls/otn/f?p=16478:1
    Is there any possiblity to influence whether items in a reports region are displayed below or above the report table? - I did not find anything...
    TIA,
    Felix

    If you read the description of those other regions you'll clearly see "items below region content" rather than "items above region content", like the page template body region #3.
    This is one limitation of the ApEx region templates that some would like to see improved - meaning, allowing for more flexibility.
    Earl

  • I just upgraded to lion on my intel macbook.  I would like to change my facetime alert to something different than a phone ring and, I would like to be able to have full screen.  How do I do this?

    I just upgraded to lion on my intel macbook.  I would like to change my facetime alert to something different than a phone ring and, I would like to be able to have full screen.  How do I do this?

    Downgrade Lion to Snow Leopard
    1.  Boot from your Snow Leopard Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    2. After DU loads select your hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Note the SMART status of the drive in DU's status area.  If it does not say "Verified" then the drive is failing or has failed and will need replacing.  SMART info will not be reported  on external drives. Otherwise, click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Set the format type to Mac OS Extended (Journaled.) Click on the Options button, set the partition scheme to GUID then click on the OK button. Click on the Partition button and wait until the process has completed.
    4. Quit DU and return to the installer. Install Snow Leopard.
    This will erase the whole drive so be sure to backup your files if you don't have a backup already. If you have performed a TM backup using Lion be aware that you cannot restore from that backup in Snow Leopard (see below.) I suggest you make a separate backup using Carbon Copy Cloner 3.4.1.
    If you have Snow Leopard Time Machine backups, do a full system restore per #14 in Time Machine - Frequently Asked Questions.  If you have subsequent backups from Lion, you can restore newer items selectively, via the "Star Wars" display, per #15 there, but be careful; some Snow Leopard apps may not work with the Lion files.

  • How to save each section report into different excel sheet?

    Hi all
    How to save each section report into different excel sheet?
    I have a report in which there are 4 sections north south west east now i need to save north in excel sheet 1 , south in sheet2, west in sheet3, and east in sheet4. under each section there is list report.
    Please let me know is it possible are not if possible let me no the procedure to be followed.
    Thank you

    If you're running XI 3.1 you might be able to solve this as follows.
    1. Create four users: east, west, north, south
    2. Create a profile that filters on the variable you used for the section/break
    3. Publish the report
    3.1 Set users created above to be the enterprise recipients
    3.2 Add personalization (the profile created above)
    3.3 Check the Deliver objects to each user in Destinations
    (3.4 You could use %SI_OWNER% to get a nice suffix to the report name)
    This should cause four reports to be created, each with its own "personalized" contents.

Maybe you are looking for

  • ITunes crashing - Determing gapless playback information

    I am having a big problem with itunes, since my main drive crash with all my music, i had was to trash my library and restart from what every music I can find on my other drives. Problems problems.... 1. Adding music itunes will crash 2. Most time it

  • Can no longer find External HDD

    Ok so, last night I had a rough time with my MacBook Pro (startup wasn't working correctly) so I took it down to my local Apple Store today, where they formatted the entire hard drive. Luckily, I've been using my 500gb WD external hard drive to back

  • Why Accordions overlap in Firefox ?

    Hi there, I am new in creating website. I just finished creating my second website for my business. My site works well in IE and Chrome, but not in FIrefox. On the Order Page, I have used 2 Spry Accordions. The second Accordion just pushes up and occ

  • Cursor in cursor?

    create or notcreate procedure as cursor s1 is (select * from sellers); cursor s2 is (select * from orders where seller_id=s1.seller_id); begin null; end; hi guys! can i do something like that?

  • Stop Act Of Connecting A/C Adapter From Starting Up Laptop?

    We have some new laptops that we turn off with the lid closed and store them plug them into AC power in a charging cart so they are always charged up in the morning. (It's possible that these laptops could have been in hibernation mode rather than "o