Is it possible to use JPDK to get  script_prefix and dad_name

Chris (Chris Broadbent),
I want to use JPDK to get script_prefix and dad_name. I tried
to use JDBC to call wwctx_api , but the get_script_prefix and
get_dad_name functions return null value. Is there a better way
doing this?
Jim

Ok... here's a cropped screehnshot
The rows in the top half of the page show the data where I have manually pulled the url into the third column.
First column - company name
second column - location
third column - I have been manually pulling the url and pasting it into this column
One the active line with the data "Boreal Camp Services & Outfitting" I have selected the text and hit Command-K to show the hyperlink associated with the data.... and that's the dialogue that opens. I have simply been copying the url from this point and pasting it into the third column.
So... the question is... can I somehow create a script/formula/automator that will do this across the entire sheet?
I tried to record using automator... didn't work... but I don't really know what I'm doing there.
d

Similar Messages

  • Is it possible to use imessage only in wifi and sms when no wifi is available?

    is it possible to use imessage only in wifi and sms when no wifi is available? I have unlimited texting but only 200mb of data. I know how to turn i messaging on/off manually but is there away to set it so it does it automatically?

    The only option you have is to turn off cellular data completely. You are correct, there is no setting for cellular data for messages. If you toggle iMessage off/on multiple times, you will end up with problems, since others will not know if you have iMessage off/on, and will continue to try to send iMessages to you. Also, you may find you will have problems with iMessage activating again after turning it off. iMessages do not use very much data, but if you are using data for other reasons, that could use up the limited pool of data you mentioned

  • Using AS2 to get time and change based on result

    I need to make an edit to a flash projector that was built some time ago that changes what is playing based on the time of day. It is used to advertise breakfast or lunch/dinner for a restaurant. Previously we had set it up so that the time change happened at 5 in the morning and 10 in the morning. The code is below. The restaurant wants to change the time switch to be on the half hour now. I know how to pull the hours and minutes to do this.
    This is the code I have been using
    var currentHours:Date = new Date();
    var currentMin:Date = new Date();
    timeInHours = currentHours.getHours();
    timeInMin = currentMin.getMinutes();
    var now:Date = new Date();
    shownow = now.setMilliseconds;
    if (timeInHours > 4 && timeInHours < 11 ){
    breakfast_mc._visible = true;
    breakfast_mc.play();
    dinner_mc._visible = false;
    dinner_mc.stop();
    //trace(timeInHours);
    } else {
    breakfast_mc._visible = false;
    breakfast_mc.stop();
    dinner_mc._visible = true;
    dinner_mc.play();
    //trace(timeInHours);
    trace(timeInHours);
    trace(timeInMin);
    stop();
    The breakfast and dinner movie clips have this code in them as well, so than at the end of each cycle, it checks the time and will switch.
    I found this code on Flash Kit and wanted to try and modify it, My hope was to get it to generate a 24hr time 1604 or 1029 that I could then do a < / > comparison with, but this function adds the numbers together so 4:15 PM = 31 and 12:19 = 31 also. Does anyone have any suggestions about how I can do this? I need the time to change at 5 AM and 10:30 AM.  There is a possibility that they may want to extend it out to include day of the week as well. RIght now I just need fractional hours to work though.
    function checkTime()
    var dat = new Date();
    var hr = dat.getHours(); // this is 24-hour format already...
    var mn = dat.getMinutes();
    // round to most recent 15 minute boundary
    //mn = Math.floor(mn/15) * 15;
    // OPTIONAL - add leading zeros to hr and minute
    if (hr < 10)
    hr = "0" + hr;
    if (mn < 10)
    mn = "0" + mn; // remove these last 4 lines if leading zeros not wanted
    return hr + mn;
    // example usage:
    time = checkTime();
    trace( time );
    Any and all suggestions are welcome. Thanks in advance!

    Hi Kglad,
    Thanks for your response, I am trying the code now and I am having some difficulty with it. This is probably so simple, but I can't see it.
    var d:Date=new Date();
    if ((d.getHours()>=5 && d.getHours()<10) || (d.getHours()==10 && d.getMinutes<=30)){
    breakfast_mc._visible = true;
    breakfast_mc.play();
    dinner_mc._visible = false;
    dinner_mc.stop();
    trace("it is breakfast time");
    } else {
    breakfast_mc._visible = false;
    breakfast_mc.stop();
    dinner_mc._visible = true;
    dinner_mc.play();
    trace("it is lunch time");
    stop();
    Once it is past 10:30 I want the dinner movie clip to play and the breakfast clip to stop and disappear. After 5 in the morning, I want the dinner clip to stop and the breakfast one to start.
    I've tried < and > with minutes and neither seems to work. The hours work, I set up a test clip with this script in it and when I change my computer clock, I can make this switch back and forth with hours but the minutes still do not factor in.
    Thanks

  • Using Rollup to get subtotals and grand total - missing right pren error

    Hello,
    I am trying to create sub totals by person_id and a grand total row in my APEX report but I get a "missing right pren error." I finally figure out that I need to eliminate column alias names to fix this problem, however, I now get an ambigous column reference. I am making this change in my main SQL report statement, however, I was wondering if I should be using the "group by Rollup" somewhere else while using "Break Formatting."
    I would appreciate any help.
    Thanks
    leh

    Can you post the Query please?

  • Is it possible to use MERGE with sql*plus and if yes how?

    Hello everybody,
    I have an xls file and I have to load its data with sql*loader, but instead of "APPEND" operation stated in the control file I need MERGE operation.Here is what my control file contains:
    LOAD DATA
    INFILE 'C:\WORK\DSK_WH\LOAD_FIRST\sqlldr\data.csv'
    BADFILE 'C:\WORK\DSK_WH\LOAD_FIRST\sqlldr\p_badfile.txt'
    APPEND
    INTO TABLE D_ACCOUNT_NAMES_TMP
    FIELDS TERMINATED BY ";"
    TRAILING NULLCOLS
    (account_number , consignment, sub_consignment, consign_sub_consign, account_name_bg, account_number_2, consign_parent_2, account_name_bg_2, account_number_3, account_name_bg_3, account_number_4, account_name_bg_4, account_number_5 , ACCOUNT_NAME_BG_5 ).
    How can I use merge in this case , instead of insert ?
    Regards,
    Maria

    I'm not sure if there is any MERGE thing in SQL*Loader, but you can have a backup table which gets loaded by SQL*Loader and then use MERGE statement from backup to the original table, if your data is not huge to become a performance barrier. This is just a suggestion, may be you can try some reading of SQL*Loader here.
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96652/part2.htm#436160
    Cheers
    Sarma.

  • Is it possible to use one respository between iPhoto and Picasa?

    Quick background: I have ~1k photos sitting on a file server on my LAN. Currently there is a Windows machine with Picasa using the file server as it's library (for both adding new photos and editting). I recently purchased a Mac Mimi and was hoping to use the same photo respository in iPhoto.
    iPhoto Research: From what I've found thus far iPhoto is a big fan of managing the "library" and will not be real happy to play with others in this respect.
    The Question: Is it possible to set up iPhoto to manage folders the same way Picasa does so I can have both machines using the same "library"? OR Can I set up an iPhoto Library and have Picasa use that, without out messing up the library so it becomes unusable by iPhoto?
    The Bottomline: I would really like to have just one respository for the photos and have both systems share it. I know, a pie in the sky idea.
    Thanks for any advice.

    jasontc:
    The answer is yes. If you use the "alias" method (in iPhoto's Advanced Preference pane - don't copy files when importing) you can use your own source folder system. You can also share the source files with another image management application. There are some unique issues, however. Any edit of a photo by iPhoto is not seen by the other application as the edited version is saved in iPhoto's Modified folder. If the other application can perform edits on the source file and save the edits to the actual source file, iPhoto's thumbnail of that file will not reflect the change but the edit will display when you open the photo in iPhoto's edit window or use that photo in a book or slideshow. If iPhoto hasn't edited before hand. If iPhoto edits the other application's edited version the source file is not touched. Also any file added to an existing source folder has to be manually imported into iView and then moved within iPhoto from its roll to the roll representing the source folder it was placed in via the Finder. When moved in iPhoto the source file will physically be moved to that folder in the Finder. Hope I haven't confused you with this convoluted description.
    So with some quirks you can use another application like iView MediaPro on the same set of source files.
    I do the above with iPhoto and iView.

  • Is it possible to use screen sharing between lion and mountain lion

    I could always use screen sharing between my 2010 macbook and my 2007 macmini,both with lion.But now since I upgraded the macbook to mountain loin it doesn't work.The macmini did at first show up on the macbook finder sidebar under sharing like it always had done but as soon as I tried to connect the sharing option disappeared and won't come back.The macmini can still see the macbook however,its on the finder there.But when I try to connect from the mini to the macbook I get an error message that says something like "server error" and contact administrator(that's me!)I can't upgrade the mini to mountain lion as it's too old.So it this an incompatibility between the two operating systems or is it something else?
    I also tried to do it with BackTo My Mac,enabled through icloud on both computers but no luck,not even showing the Back to my Mac icon on either Finder sidebar like it's supposed to.When I did it through system preferences-icloud,it said this was successfully enabled but it just doesn't work at all.
    Cross about this since I always use the macbook to control the macmini which is plugged into a flat screen tv and it's much easier than fiddling around with a mouse and keyboard.

    I can screen share my wife's Lion iMac using Mountain Lion and the reverse is true. If the computer is not showing up to be selected under shard on the left column of the finder it is probable a connection issue. I would check my home network, restart the the macs and toggle the sharded settings and energy saving settings like wake for network activity. Be sure and set up iCloud on both your macs and turn on UPnP if you have a router for your home network serving up NAT IP Numbers. UPnG will make the port forwarding enteries in you router to allow you macs to connect behind the firewall created by nat addressing.
    I am currently having a problem with back to my mac. S
    creen shares great the the Lion iMac but Mountain Lion to Mountain on one computer will not connect if the computer is sleeping. It lights the screen on the sleeping computer but never shows on the computer requesting to share. File share always workd. If I wake the computere before I attemp the connection, screen share work as it should. If I try to screen share while the second computer is sleeping, It will never work again until I restart the iMac.

  • Using read() to get byte and readLine to get textline at the same socket

    Hi:
    I know that readLine is used in BufferedReader and read is used in BufferedInputstream,
    but can I read some lines by readline, then read some byte by read. Because InputStreamReader is used to change from Inputstream to Reader ,how can I change from Reader to Inputstream.
    Thanks
    tdk

    I've got the same problem.
    Could you tell me if you found a solution.
    I know that the getBytes is not a solution because the stream was encoded.

  • Possibility to use both Time Range ACL and PBR.

                       Hello
    I would like to find out the attached requirement.
    If there is any related information we greatly appreciate it.
    Actually I have already configure on Cisco1812J by using the following command.
    however the ACL status still shows "inactive" and the PBR does not function.
    *Configuration on R1
    time-range PBR-TIME
    periodic weekdays 15:40 to 15:41
    ip access-list extended PBR-TIME
    permit ip host 10.0.30.11 host 1.1.1.1 time-range PBR-TIME
    route-map PBR-TIME permit 10
    match ip address PBR-TIME
    set ip next-hop 10.0.20.3
    interface Vlan1
    ip address 10.0.30.1 255.255.255.0
    ip policy route-map PBR-TIME
    *Verification
    R1#sh ip access-lists
    Extended IP access list PBR-TIME
        10 permit ip host 10.0.30.11 host 1.1.1.1 time-range PBR-TIME (inactive)
    R1#sh route-map
    route-map PBR-TIME, permit, sequence 10
      Match clauses:
        ip address (access-lists): PBR-TIME
      Set clauses:
        ip next-hop 10.0.20.3
      Policy routing matches: 0 packets, 0 bytes
    *Traceroute from SW1
    SW1#traceroute 1.1.1.1
    Type escape sequence to abort.
    Tracing the route to 1.1.1.1
    VRF info: (vrf in name/id, vrf out name/id)
      1 10.0.30.1 0 msec 0 msec 9 msec
      2 10.0.10.2 0 msec 0 msec 17 msec
      3 10.0.11.254 0 msec *  0 msec

    Oh that is incredible!!
    It has been functioning correctly like this.
    Thank you for quick and precious advise.
    Regards,
    Masanobu Hiyoshi
    R1#sh ip access-lists
    Extended IP access list PBR-TIME
        10 permit ip host 10.0.30.11 host 1.1.1.1 time-range PBR-TIME (active) (45 matches)
    (omit)
    R1#sh ip access-lists
    Extended IP access list PBR-TIME
        10 permit ip host 10.0.30.11 host 1.1.1.1 time-range PBR-TIME (inactive) (45 matches)
    R1#
    SW1#traceroute 1.1.1.1
    Type escape sequence to abort.
    Tracing the route to 1.1.1.1
    VRF info: (vrf in name/id, vrf out name/id)
      1 10.0.30.1 0 msec 0 msec 0 msec
      2 10.0.20.3 0 msec 0 msec 9 msec
      3 10.0.21.254 0 msec *  0 msec
    SW1#traceroute 1.1.1.1
    Type escape sequence to abort.
    Tracing the route to 1.1.1.1
    VRF info: (vrf in name/id, vrf out name/id)
      1 10.0.30.1 0 msec 9 msec 0 msec
      2 10.0.10.2 0 msec 0 msec 8 msec
      3 10.0.11.254 0 msec *  0 msec

  • Is it possible to use iMessage only over WiFi, and not use cellular data?

    When I go to Settings -> Cellular, there is no toggle for messages. Is there some way I could selectively disable cellular data usage for messages? That is, I want messages to be sent with SMS instead of data even if cellular data is available, but not if WiFi is available. If WiFi is available, then I would want the message to use the WiFi.
    My situation is that I will be traveling internationally and will have a plan that allows unlimited texting but limited data. I don't want to have to toggle iMessage on and off every time I connect to WiFi to prevent data use with messages!
    Thanks for any help!

    The only option you have is to turn off cellular data completely. You are correct, there is no setting for cellular data for messages. If you toggle iMessage off/on multiple times, you will end up with problems, since others will not know if you have iMessage off/on, and will continue to try to send iMessages to you. Also, you may find you will have problems with iMessage activating again after turning it off. iMessages do not use very much data, but if you are using data for other reasons, that could use up the limited pool of data you mentioned

  • Whenever I use Firefox, I get dozens and dozens of additional junk emails. I don't have this problem with IE8. Do I need to make a setting change to Firefox?

    I mainly use IE8 so that I don't have the junk mail problem. I use yahoo mail.

    Which problems do you have on that website?
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Use EMCLI to get list of Application Servers related to Databases?

    Hi,
    Is it possible to use EMCLI to get from OEM a list of Application Servers related to Databases? If not, is there another method recommended by Oracle?
    Thanks,
    Yoni

    Mohana,
    I want my Replication Program to:
    1. Create a copy of all objects stored in specific schema at the remote site in a local schema.
    2. Be able to replicate the addition and removal of records.
    Database link has been created between remote and local schema.You can query the remote site as if it is part of your local database and hence you can query the system tables to find out what objects are in remote site.
    When query the system tables i want to look for objects that are owned by HAROON.

  • Can I have two Time Capsules in the same network, use one as Time Machine and other to expand network?

    I need to purchase a divice to expand my Wi-fi network. I was looking at the AirPort Extreme, but a friend has a brand new Time Capsule for sale. So, for the same price of the AirPort Extreme, I´m getting the Time Capsule.
    I already own one and using it as Time Machine and wireless router. If I decide to purchase another TC would it have any conflict with the one that I already have?
    Is it possible to use one as Time Machine and wireless router and the other to just expand network and storage only (not as Time Machine)?

    If I decide to purchase another TC would it have any conflict with the one that I already have?
    No
    Is it possible to use one as Time Machine and wireless router and the other to just expand network and storage only (not as Time Machine)?
    Yes. The important thing to remember is that the "extending" Time Capsule must be located where it can receive a strong wireless signal from your "main" Time Capsule.

  • Call BAPI_SALESORDER_SIMULATE  from delphi to get ipricing and availability

    Hello
    I am trying to use the BAPI_SALESORDER_SIMULATE get price and availabilty of a specified Item .
    I'm trying to use the bapi from delphi is thsi syntaxe correct
    order := ctrlBAPI.GetSAPObject('SalesOrder');
    header := ctrlBAPI.DimAs(order, 'OrderSalesSimulate', 'OrderHeaderIn');
    items := ctrlBAPI.DimAs(order, 'OrderSalesSimulate', 'OrderItemsIn');
    partners := ctrlBAPI.DimAs(order, 'OrderSalesSimulate', 'OrderPartners');
    ret := ctrlBAPI.DimAs(order, 'OrderSalesSimulate', 'Return');
    and then how can I get the desired infos from ret?
    Does anyone have any advice or experience of doing this ?
    Regards

    Hello Fatiha,
    I am afraid, there is only a slim chance to find an expert on this matter here in the Web Dynpro ABAP forum. My suggestion to post this question to a forum more suitable.
    Best regards,
    Thomas

  • I am getting old and looking forward to use I Pad as a Phone if possible through WIFI! I this possible? The screen is to small for me! If possible, with new I Watch taking calls, other uses through I Pad!

    Like I wrote on title, I am getting old and it is not easy to see E-mails, news etc. on a I phone! New I phone will not help me for the size.
    If possible, everything without calls, I would like to use I Pad as direct unit, and for calls through I Pad over WIFI all calls. If a call as Skype, I would like
    to use the I Pad as a monitor. Is this possible?
    I found on a side that there is a product for people for better hearing, which can be put into the ears, using WIFI with I Phone.
    If this product could be used also for I Pad as a Phone for hearing, and the I watch or I Pad as Microphone, it will be great for old Mac users.
    Is this possible with our system know?
    I am using Mac since Classic II! Would like to continue with the newest items with the possibility for old person with bad Eyes or Ears.
    Looking forward for a kind answer
    with regards
    Christian an old Mac user!

    Definitely No

Maybe you are looking for