How to obtain current location with in a flow

Hi,
This might be very basic level query, but i cant figure it out.
I want to extract the location with in a flow. ie in my proxy service i have multiple stages and with in each stage i am using some log actions to print some statements. I can see the log statement does shows the location where the 'log' is generated from. something like this
<ERROR> <ALSB Logging> <BEA-000000><*[Message Flow Pipeline, Message Flow Pipeline_request, stage1]*> My Message
My Query is how i can obtain this string "*[Message Flow Pipeline, Message Flow Pipeline_request, stage1]" , in some variable, in my flow in case i need to log my current location somewhere.
Many thanks for your help!
sall

thanks guys!
I had already looked for any context variable which could provide the current location but no success!
The business scenario is:
Proxy request pipleline has saveral stages, from within each stage i have to make a java callout, which is basically a internal logging mechanism, with current location.
Currently i am using hard coded string value e.g. "[JMS Flow Pipleline, JMS Flow Pipeline_request, Stage 1]" or "[JMS Flow Pipleline, JMS Flow Pipeline_request, Stage 2]", which is pretty pathetic. Any ideas how can we obtain the current location, within a flow, and assign it to some variable like location etc???
I would like to use something like '$input/@name' which returns some string "ProxyServices$Template$Services$ProxyService"
I hope this explains bit more, however let me know if you need more clarification.
thanks
sall

Similar Messages

  • I want to run down how dissatisfied I currently am with Verizon Wireless

    I want to run down how dissatisfied I currently am with Verizon Wireless; this stated with the pre-order of the iPhones on Friday I like many other customers received the "ecdp" error on the web site and it took 45 minutes to actually be able to place the order.  I got the order in and had a 09/19/2014 ship date; spoke with a few Customer Service Reps in various areas such as 611, on many of the 800 numbers available, Internet Orders (including a Supervisor) and even a Social Media Service Rep all who have confirmed this ship date to be accurate. 
    Well today (09/17/2014) I check the Pre-Order Status page and my date has been changed to 10/14/2014 so I call in to speak to Internet Orders and the Rep advises me that yes my date was pushed back but no reason is supplied, I asked to speak to a Supervisor and was transferred to Howard, Operator # 2431235, who stated that yes the prior rep was accurate and that there was no reason available as to why my ship date changed.  Howard continues by stating that as per upper management, Apple reported to Verizon that no iPhone 6+'s would be available at launch for Verizon to ship and that this has been common knowledge, within the company, that the 6+'s were not shipping until 10/14/2014, and that prior Verizon employee's to include supervisors were misinforming me of my shipping date.  Howard continued to state that the reason I got the "ecdp" error was because of the company that I work for as Verizon offers a discount so the 'ecdp" error is not something Verizon is currently addressing.  Howard then tells me not to worry that with the 10/14 date is a guaranteed delivery date and not to worry, if the phones come in early the order will be filled, I at this point ask Howard to note my account with our conversation to include the fact that he stated the 10/14 was a guaranteed date, at this point he states that while he is telling me this he will not put it in writing as at that point Verizon would be obligated to meet that date at minimum and he was not willing to put his position on the line if the phone is not shipped by that date(this can be confirmed by reviewing the recording of the call as I was advised that I was on a recorded line).  I then asked to speak to his supervisor and was told his supervisor went home for the day and that he was the highest level supervisor on at this time.  When I then asked for his supervisors contact information to lodge a complaint he said that I would need to call back in on 611 from my handset as Customer Service handles complaints not supervisors. 
    I did call back and speak with a Representative on 611 who tried to assist but was not able to do much, this rep took my information and is having their supervisor call me to try addressing the way Howard handled the call however this has not occurred at the time of this writing.  I did tell this rep that I was honestly considering going to another carrier, (I have been with Verizon 7-8 years and currently have 10 lines of service on my account) I know I will not get the iPhone 6+ on launch day with another carrier which was not the driving factor but rather the way Howard dealt with the situation and the lack of respect that as a customer of Verizon I have always got from other representatives, as you know it takes one person to sour someone on a whole company, Howard even stated that if I want to go to another carrier that was fine with him.  However, the Customer Service Rep I spoke with after Howard (I wish I could remember his name) calmed me down not to leave Verizon but did agree that a complaint needed to be filed, personally I would like to file it directly with an Associate Vice President or higher but do understand that there is a “Chain of Command” that needs to be filed
    Let this be a warning to anyone who call internet sale and gets Howard, operator #2431235, I would suggest you immediately request a different supervisor that will treat you with respect.  As stated above Howard will tell you that the iPhone 6+ was not and has never been available to ship on launch day due to Apple purposely not providing enough units to meet the demand and that Verizon knew this while taking our pre-orders. 

    I feel your pain Robert. I do believe VZW and Apple knew all along the I6 Plus would not be available on 19 Sep and that it was a way to bolster new contracts, renewed contracts and apple sales stats. It's unfortunate the company wasn't more clairvoyant, most of us would have still pre-ordered but been a little less frustrated.

  • How to get Current Location in a Android Emulator using Flex

    Hi
    In the following code I am able to plot the Location using Latitude and Longitude but the requirement is
    in an Android Emulator on launch of the application I need google map to display the users current location,
    How can this be achieved ??? I tried to get the Latitude and Longitude of the current position using
    geoLocation class by I am not able to get that working,
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark" title="Home">
        <s:layout>
            <s:VerticalLayout />
        </s:layout>
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import com.google.maps.LatLng;
                import com.google.maps.MapEvent;
                import com.google.maps.MapType;
                import com.google.maps.controls.PositionControl;
                import com.google.maps.controls.ZoomControl;
                import flash.sensors.Geolocation;
                private var myGeo:Geolocation;
                protected function showBtn_clickHandler(event:MouseEvent):void
                    if(Geolocation.isSupported == 'true')
                        myGeo = new Geolocation();
                        myGeo.setRequestedUpdateInterval(100);
                        myGeo.addEventListener(GeolocationEvent.UPDATE, onUpdate);
                    else
                        myTextArea.text = "Device Not Supported";
                private function onUpdate(event:GeolocationEvent):void
                    myTextArea.text += "Hi"+ "/n"+ event.latitude.toString() + "/n" +
                        event.longitude.toString();
                protected function myMap_mapevent_mapreadyHandler(event:MapEvent):void
                    myMap.setCenter(new LatLng(24,58),9,MapType.NORMAL_MAP_TYPE);
                    myMap.addControl(new ZoomControl);
                    myMap.addControl(new PositionControl);
            ]]>
        </fx:Script>
        <s:Button id="showBtn" label="Show" click="showBtn_clickHandler(event)"/>
        <s:TextArea id="myTextArea" width="100%" height="50%" />
        <maps:Map id="myMap" width="100%" height="50%"
                  xmlns:maps="com.google.maps.*"
                  sensor="true"
                  key="ABQIAAAA2Fwy6HLBheYSAWRBEZKwEhRLum8XdHegG17d4EymNgK0o7h2qRRWVBVQywiGHEiGtKahjfGW8xxc RA"
                  mapevent_mapready="myMap_mapevent_mapreadyHandler(event)"
                  url="http://www.xyz.com"/>
    </s:View>

    Geolocation isn't supported in the Emulator. You'll have to set up a test case that gives the geolocation without relying on the Emulator.

  • How to compare current date with past date

    Sample code for comparing current date with past date
    i dont want to Calender.set method to compare it.
    How can i do it?

    PLEASE stay with ONE thread:
    http://forum.java.sun.com/thread.jspa?threadID=5143991&tstart=0

  • How to register a Location with database link in Ombplus?

    Hello,
    what's the detailed syntax in owb 10.2 to register a location with a database link?

    Hi,
    thanks that helps.
    Now i found out that after an import of the location the field "from Location" is not set. I need to set it to OWB_REPOSITORY_LOCATION.
    How can i do it?
    OMBALTER LOCATION 'Locname' SET PROPERTIES (FROM_LOCATION) VALUES ('OWB_REPOSITORY_OWNER') does not work
    -> Property FROM_LOCATION is not defined in class ORACLE_GATEWAY_LOCATION
    Cann you help me again?
    Thanks
    Helga

  • How to compare current time with any particular time?

    Hi All,
    Problem:
    I have a form which accept data from user but i want that user can enter data only before 4 in the evening after that no data will be accepted and user get any message. Now the problem is I want to compare the current time with 4 o clock or 16:00:00 but i dont know how to check whether the current time is greater or lesser than 4. Till now my code are like this: if(tt.equals("16:00:00")){}else{}
    where tt is current time. but this is not the feasible solution for my second clause.
    Any kind of help will greatly appreciate.
    Thanks

    One more thing:
    I find timestamp class quite helpful in my case but i
    dont know how to implement the before() method
    of this class.
    Any idea.* You wouldn't implement before(). You'd just use it. It's already implemented for you.
    * before() doesn't just compare the hour of the day. It compare two date & time objects to see which one is greater--that is, it effectively looks at all the fields, not just HOUR.
    * You don't need Timestamp if you're not dealing with a database.

  • How to obtain current version of Listener for z/OS

    I am a z/OS system programmer who does not speak Oracle, and we are currently using the Oracle Listener 10.2g on z/OS 1.9. I have been requested to find out if there is a newer version of the Listener for z/OS. I do not think our site has an 'Oracle Support Identifier', so I was pointed to this Oracle Forum.
    How do I determine if there is a new version of the Listener for z/OS, and how do I download it?
    If there is a new version of the Listener, how do I download the documentation to install it on z/OS?
    Thanks for any guidance you can provide.

    Hi,
    Normally listener version is same as DB, but that have several exceptions.
    Logon to DB server, with OS user who is owner of DB.
    I expect that all required environment variables are already set, execute below statement.
    lsnrctl status
    if this throws error
    lsnrctl status <listener_name>
    this will give you status of listener, on the first line of output of the command, you will get version of Listener.
    FYI...any DB can have listener with same or higher version than DB and you need to install full Oracle binary to get the listner of that version.
    Rahul

  • HT204053 how may a share location with another apple id

    I want to enable another family member to find my location. How may i authorize that .

    Download "Find my Friends" app in both devices.
    Invite the other member through this app.

  • How to obtain entire DB with any extentions?

    hi for all
    we have Oracle Server DB at my work. I need to DB of my programs that work with our DB.
    how to gather DB as Back up? If i back up (data pump) of DB , and i restore dump, do i able use same DB at my work?
    I need to DB at my work and i would like use it any other palce. how to?

    jgarry wrote:
    Ubun2OS wrote:
    ok. I have used SQL server for long time ago. i maked Back up file of my DB (source A) and Restor to another Server (destination B) that run SQL server and any thing in A, now inclued in B.!!
    now i need same things in Oracle. data pump of Oracle at work has 10 G about.What you call a DB in SS we call a schema. You can export the schema, and then import it into the same schema in your own database, or use the remap functions to import it into a different schema. Either way, you should probably create your schema and tablespaces before you import the data, although the import can create it for you if you don't remap anything, and has a transform option if you want to change things. You can get the ddl for creating things in several ways, including the sqlfile option of impdp.
    There are so many ways to do this, we can't advise what exactly is best for you. But again, do you really have permission to take all your company data home? That is a big red flag in most places.
    If you have 10g of data, you can probably zip an export of that into 1G, which could fit on a cheap thumb drive.oKey. i am new in oracle manege. but your comments was very usefull for me.
    yes. I want bakup from Schema on server and i would like use it on new schema without anything(bare schema); is it possible? what's import and export code?

  • How to know drop location with a transfer handler?

    Using the Swing TransferHandler, there doesn't seem to be a way to figure out the location of the drop!
    Does this mean I must use the older mechanism instead of this new one, my situation here requires that I know where the object is being dropped so that I can add it in the right location.
    Help!

    Hey, anybody using drag & drop at all?!?!
    It's funny, you search around the web and the new features of 1.4 drag & drop are nowhere to be found/discussed!
    :-(

  • Changing Current Location

    I was a little too anxious while setting up my new ipod touch. I accidently set my current location to...somewhere other than my current location. How do I change this setting to my accurate address?

    FYI - this is the iPhone discussions area.
    You set your current location with what on your Touch?

  • Issue while creating location with database link

    Hi all,
    I am using OWB 10.2.0.4.0 (same Oracle DB version). I am trying to create a location using a database link.
    When I select the location which the database link is located (From location drop-down list), I face the following error.
    >
    ENV0036: The selected location is not valid.
    ENV0036: The selected location is not valid.
         at oracle.wh.service.sdk.integrator.RepositoryUtils.createDBLinkWithLocation(RepositoryUtils.java:156)
         at oracle.wh.ui.environment.wizards.DatabaseLinkComponent.init(DatabaseLinkComponent.java:61)
         at oracle.wh.ui.environment.wizards.DatabaseLinkComponent.reload(DatabaseLinkComponent.java:204)
         at oracle.wh.ui.environment.wizards.FromLocationComponent.itemStateChanged(FromLocationComponent.java:111)
         at javax.swing.JComboBox.fireItemStateChanged(JComboBox.java:1162)
         at javax.swing.JComboBox.selectedItemChanged(JComboBox.java:1219)
         at javax.swing.JComboBox.contentsChanged(JComboBox.java:1266)
         at javax.swing.AbstractListModel.fireContentsChanged(AbstractListModel.java:100)
         at javax.swing.DefaultComboBoxModel.setSelectedItem(DefaultComboBoxModel.java:88)
         at javax.swing.JComboBox.setSelectedItem(JComboBox.java:551)
         at javax.swing.JComboBox.setSelectedIndex(JComboBox.java:597)
         at javax.swing.plaf.basic.BasicComboPopup$ListMouseHandler.mouseReleased(BasicComboPopup.java:749)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:232)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at javax.swing.plaf.basic.BasicComboPopup$2.processMouseEvent(BasicComboPopup.java:452)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:141)
         at java.awt.Dialog$1.run(Dialog.java:542)
         at java.awt.Dialog$3.run(Dialog.java:569)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.awt.Dialog.show(Dialog.java:567)
         at java.awt.Component.show(Component.java:1133)
         at java.awt.Component.setVisible(Component.java:1088)
         at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
         at oracle.bali.ewt.wizard.WizardDialog.runDialog(Unknown Source)
         at oracle.wh.ui.owbcommon.OWBWizard.initialize(OWBWizard.java:815)
         at oracle.wh.ui.owbcommon.OWBWizard.<init>(OWBWizard.java:168)
         at oracle.wh.ui.owbcommon.OWBWizard.<init>(OWBWizard.java:147)
         at oracle.wh.ui.owbcommon.IdeUtils._doLaunchDefinition(IdeUtils.java:1188)
         at oracle.wh.ui.owbcommon.IdeUtils.showWizard(IdeUtils.java:471)
         at oracle.wh.ui.owbcommon.IdeUtils.showWizard(IdeUtils.java:427)
         at oracle.wh.ui.jcommon.tree.WBRepositoryObjectTree.launchWizard(WBRepositoryObjectTree.java:502)
         at oracle.wh.ui.console.commands.CreateByWizardCmd.showUI(CreateByWizardCmd.java:33)
         at oracle.wh.ui.console.commands.CreateCmd.performAction(CreateCmd.java:76)
         at oracle.wh.ui.console.commands.TreeMenuHandler$1.run(TreeMenuHandler.java:188)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:189)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:478)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    >
    Could you please let me know how to solve this and how to create such location with OMB*Plus?
    Thanks,
    Sebastian

    Hi David,
    Thanks a lot for the tip. Now I was able to use this and using a registered location.
    OMBCREATE LOCATION 'X' SET PROPERTIES (TYPE,VERSION,CONNECTION_TYPE, SCHEMA) VALUES ('ORACLE_DATABASE','11.1','DATABASE_LINK','MY_SCHEMA')
    OMBCREATE CONNECTOR 'REGISTERED_LOC/X SET PROPERTIES (DATABASE_LINK_NAME) VALUES ('MY_DBLINK') SET REF LOCATION 'X'
    OMBCOMMIT
    OMBCC '/MY_PROJECT'
    OMBCAC 'DEFAULT_CONFIGURATION'
    OMBCONNECT CONTROL_CENTER USE 'owb_user/owb_user'
    OMBREGISTER LOCATION 'X' REUSE
    OMBCOMMITBut now my question is the following.
    I am having problems to import the metadata from X.
    When create a module (source), I am able to make "data location" from location 'X' but when I want to import a table from location 'X' is not possible, because it shows as a plausible metadata location as "REGISTERED_LOC"
    Could you please let me know how to use 'X' as metadata location?
    Thanks!
    Sebastián

  • How do I make my Timeline play forward or reverse depending on its current location?

      I'm attempting to make a side scrolling site. I have a wide div set up in the main timeline that animates 1000px at a time on the x-coordinate between the labels I have set for each "page".
    I would like to click a button and go to the associated label and stop. I am faced with 2 problems:
    1. Sometimes this would require the playhead to move in reverse rather than forward.
    2. I originally had stop triggers on the timeline under the labels but if I am able to get my first problem fixed these triggers would stop the animatin before reaching the label.
    I'm just learning java so I'm guessing I need an if statement and a function.
    Example of what I'm trying to figure out:
    I want to press work button and play to label "work".
    If I'm at label "home" I need to play(); and stop at label "work". If I were at label "blog" I would need to playReverse(); to label "work".
    Please help! I've been going looney trying to figure it out!

    Thank you for your reply!
    My post may have been a little misleading...
    I have a navigation bar with 5 items.  Home, work, blog, about, contact.  My main timeline has a symbol that is 6000px wide. Inside that symbol are individual symbols that make each of these "pages" which are 1000px each. My timeline has animations that last 1.5 secs each and animate the main symbol 1000px on the x dimension to stop on the main stage which is 1000px.  Essentially it creates a 5 "page" side scrolling layout. I have the five labels on the timeline starting at 0s with "home", 1.5s labeled "work", 3s labeled "blog"... etc.
    I wish to be able to click blog and travel forward or reverse on the timeline and then stop on "blog".  Then If you click home you should reverse along the timeline and stop on "home".  If I have any stop(); triggers on the timeline it would stop in transition to my target label without reaching it.  In addition a generic play(); or playReverse(); doesnt target a specific label which is whats required for my navigation bar.
    I need to play forward or reverse from the current location on the timeline and stop when it reaches a specific label. Visually you would be sliding back and forth across the pages as you use the navigation.
    Is there a way to do this with variables?
    I'm going to try triggers on the timeline like this sym.setVariable("pageValue", "home"); when on the "home" label.    sym.setVariable("pageValue", "work"); when on the "work" label.
    but then how would I tie that to my buttons?
    If I click work and I'm on home I need it to check:  var myVariable = sym.getVariable("pageValue"); and then an if or else statement I think?  I'm such a noob. I'm trying really hard to grasp it
    something like:   if pageValue = "home" { sym.play();} else if pageValue = "blog","about","contact" {sym.playReverse} if pageValue = "work" {sym.stop();};
    I know there is probably all kinds of syntax errors there but can someone understand what I'm getting at?
    to make this even more tricky I am interacting with the stage with an html and css navigation bar that lays over the stage so I need this to be in function style (see code)
    function goHome()
    javascript:var targetComp = AdobeEdge.getComposition('EDGE-57204389');
       targetComp.getStage().playReverse();
    and then call it like this in html
    <li><a href="javascript:goHome();" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
    This works to play the stage in reverse but its not the functionality I need.  Any help would be greatly appreciated and a great learning point for me and hopefully others in my situation!

  • How to set up iTunes with an external hard drive so that there is not a double location for the iTunes Media folder

    Hi,
    A very helpful postee got to the end of his knowledge level, so I am posting this for you tech guys to sort out. Bit long because I've tried to set it out step by step. Briefly I'm new to iTunes and my laptop has a very small hard drive and is virtually full and due to be replaced. So I want to use an external hard drive.
    Now I know that iTunes installs itself to two locations: 1. Programs Files 2. Music. And its the Music location that bothers me.
    I asked about using an external hard disk to store the actual AAC files. I was advised that in order to change the loaction of the iTunes media folder I was should employ preferences/advanced/ and this is what i saw (as you would expect):
    Then I hooked up my hard drive, hit 'change', and this is what I saw:
    I was a bit worried by the lack of pathway details, but assumed it must have done something on the external drive, so I looked on  it and this is what i saw (highlighted):
    But compare this with what was in the directory I attempted to reproduce, viz in the iTunes folder in /laptop/Music/iTunes:
    A ton of stuff. The only stuff that corresponded with what iTunes had created on my external hard drive was in Music/iTunes/iTunes Media folder:
    Now this suggests that there are TWO locations for my preferences. The advanced tab only allowed me to ADD an extra location, not REPLACE the original.
    So:
    1. Which of the two locations will iTunes choose when I add music? Surely it will go with the original pathway laid down in the directory when iTunes was installed, and ignore my external Hard Drive? I mean, how can there be two automatic locations?!!!
    2.. I don't mind itunes library being on my laptop as this is just a list, but it obvoiusly has to have a pathway to the site where the actual AAC files are stored.
         so surely it won't work unless the whole lot is on the external hard drive: library, extras, genius, the lot?
    4. How then do I get it all on the external since merely changing "preferences" doesn't do the job?
    5. Is this perhaps the reason why so many people report that iTunes does not recognize their external hard disk:
    http://www.ehow.com/info_12199596_external-hard-drive-not-recognized-itun es.html
    I just don't want this to happen to me. Any answers?
    Philip Joy
    UNITED KINGDOM

    As I've replied to your other threads...
    Easy method 1:
    Move or Copy entire working library from current location to the root of your external drive. Press & hold down shift (option on a Mac) as you click the icon to start iTunes. Click Choose when prompted, then browse to ..\iTunes\iTunes Library.itl on the external. If you copied the library across then test your new library works properly after renaming the original folder, before deleting the original folder to recover space.
    Easy method 2:
    If you haven't really started to build your library. Press & hold down shift as you click the icon to start iTunes. Click Create. Browse to the root of the external drive. Create the library as ITunes. Drag your media into ..\iTunes\iTunes Media\Automatically Add to iTunes.
    Complex method:
    Required if you've already tried other things and now have media & library scattered around. See the post make a split library portable.
    in addition...
    In all cases the idea is to get a library folder called iTunes containing a media folder called iTunes Media with all media inside this media folder. Once you have the library in this shape it is easy to reconnect to the library with the shift-start-iTunes method if the drive letter changes, move the library to another computer, and backup the library by cloning the folder to another drive.
    tt2

  • How do i change current location?

    I get local news and weather on my Yahoo homepage for Cleveland, OH. I'm not in Cleveland. How do I change my current location to get news and weather for my real location? (Default is already set for my real location). When I try to add a city, I get an error message.

    Best to discuss that with your internet service provider. They give you your IP Address, which (unless you are using WiFi) determines the location which is "reported" to websites. The website "reads" the IP Address of your connection to the website's server.

Maybe you are looking for

  • How can I call a FM in WDA?

    Hi All, Plz tell me, How can I call a function module in WDA. I have an Inputfield and a attribut under a node. I have a FM, too. I need to call the FM in a Method. How can I do it? thx Best Regards Shuo

  • Why cant my voice be heard to people i call

    when i make a call, i can hear the person speak but they cant hear me. Whats gone wrong and how can i fix? thanks

  • Reset hub and now getting extremely slow speeds...

    Hi there, So I have had bt broadband for 3 months and had nothing but problems. The speed is very slow, though I do live in a rural area so somewhat to be expected. However in the evenings I have noticed I can get extremely high pings (1000+) and slo

  • What is field symols

    hiiiii friends.. i m new to this website... plz do help to grow in this abap field.. what is field symbols and use of this ?? diffrence between hide and get cursor in the interactive report..

  • Unable to type info into a PDF

    I have a client who uses Adobe Pro 7 at home and at work. He has 2 systems basically, which are a carbon copy of each other. All settings are relatively the same. However, the home system is not allowing him to input text into a PDF file. That same f