Calling a website in Tidal

We are attempting to call a website through Tidal to trigger a process off site.  Currently, we are using tinyget.exe to do this internally with no issue.  However, when we attempt to call the external website with the same "setup" as our working process that calls one internally, it shows that it has completed, however, it is not firing off the external process.  If I put the same website in a browser on the agent that we are attempting to run it on, it does work.  Any thoughts or suggestions for those who may be doing something similar?
Thanks!
Bill         

Refer the SAP Online help :
http://help.sap.com/saphelp_nw70/helpdata/EN/a5/b8fa41c915da6fe10000000a1550b0/frameset.htm
I hope it helps you.
Thanx.
Saurav.

Similar Messages

  • Issue with selecting or copying a phone no. in dialing or direct calling from websites

    Dear All,
    I remarked that in Z10 I cannot use  in dialing screen neither copy/paste phone numbers nor calling direct from email or websites by selecting the phone no. and taping on it.
    This seems to be a bit annoying when you try to make a call from web or inside the email text, because you do not have even the possibility to paste the copied number into the dialing screen.
    Somebody knows if is possible to do it, as in the other phones ?
    Thanks !

    The dial pad does not allow you to paste a number. But within an email, text message, web site, BBM message, if its a valid phone number example 416-967-1111, it shows the number as blue, Just clik and hold it and a slider appears on the right(copy, call, send text message, View contact, share/NFC, share, ope in). If you just tap it, it will start to dial the number.

  • Download File Via JavaScript Calls From Website

    Hello,
    I am currently trying to create a program in c# that will download the file "PracticeProfiles.xls" from this website:
    http://fingertips.phe.org.uk/profile/general-practice/data
    I need to somehow on navigation to this site pass the javascript calls "showExport();exportData();", which will start the download.
    Any help would be greatly appreciated.
    Many Thanks

    The link has a method which apparently works, however I had to modify a few things to make it compile:
    public void DownloadIEFile(Browser browser)
    HwndSource source;
    source = HwndSource.FromHwnd(WatiN.Core.Native.Windows.NativeMethods.GetWindow(browser.hWnd, 5));
    Window windowMain = source.RootVisual as Window;
    System.Windows.Automation.TreeWalker trw = new System.Windows.Automation.TreeWalker(System.Windows.Automation.Condition.TrueCondition);
    System.Windows.Automation.AutomationElement mainWindow = trw.GetParent(System.Windows.Automation.AutomationElement.FromHandle(browser.hWnd));
    source = HwndSource.FromHwnd(WatiN.Core.Native.Windows.NativeMethods.GetWindow(new WindowInteropHelper(windowMain).Handle, 5));
    Window windowDialog = source.RootVisual as Window;
    // if doesn't work try to increase sleep interval or write your own waitUntill method
    Thread.Sleep(1000);
    windowDialog.Activate();
    System.Windows.Automation.AutomationElementCollection amc = System.Windows.Automation.AutomationElement.FromHandle(new WindowInteropHelper(windowDialog).Handle).FindAll(System.Windows.Automation.TreeScope.Children, System.Windows.Automation.Condition.TrueCondition);
    foreach (System.Windows.Automation.AutomationElement element in amc)
    // You can use "Save ", "Open", ''Cancel', or "Close" to find necessary button Or write your own enum
    if (element.Current.Name.Equals("Save"))
    // if doesn't work try to increase sleep interval or write your own waitUntil method
    // WaitUntilButtonExsist(element,100);
    Thread.Sleep(1000);
    System.Windows.Automation.AutomationPattern[] pats = element.GetSupportedPatterns();
    // replace this foreach if you need 'Save as' with code bellow
    foreach (System.Windows.Automation.AutomationPattern pat in pats)
    // '10000' button click event id
    if (pat.Id == 10000)
    System.Windows.Automation.InvokePattern click = (System.Windows.Automation.InvokePattern)element.GetCurrentPattern(pat);
    click.Invoke();
    However I am getting null when I try to get the hwnd source, can't see why?
    Any Suggestions?
    Many Thanks

  • How to secure the password when calling SACmd from a tidal job?

    I'm attempting to use the SACmd command line from a Tidal job.   I have the job configured and is working correctly. 
    My quesion, is how do i secure the password?  Currently, it is in the clear in the job parameters.   Is there a system variable i can set, which then isn't displayed?

    This has been answered by others in older posts (which was where I got some tips from) and I believe the reference guide or the command line PDF guides may have this info. Essentially this involves using the -persist command option from the server (where sacmd is installed - usually the master)  which then saves the particular credentials within users local home on the server so that you don't have to add password in the tidal job you create after that.
    1. Prior to running sacmd on the server as a job in TES61, you will need to verify that it can run via command line outside of TES GUI.
    [serveradmin@masterserv bin]$ pwd
    /opt/tidal/TIDAL/TESCmdline/bin
    [serveradmin@masterserv bin]$ ./sacmd.sh
    TES SA Command Console (Version 6.1.0.267).
    JRE Version : 1.7.0_25
    Style       : table
    DSP URL     : https://server.company.com/api/TesDevCM
    Username    : domain\interactiveuser
    Password    :
    SACmd>quit
    2. So that you don’t have to append login credentials required by TES 61 in your command parameters in the job definition, you will have to run the command below.  This uses the –persist parm, which stores the interactive user credential in the users local home one time.  You will need to run this again for another user and for when passwords change.
    [serveradmin@masterserv bin]$ ./sacmd.sh -cmdspurl https://server.company.com/api/TesDevCM1 -user 'domain\serveradmin' -pass
    '********' -persist
    TES SA Command Console (Version 6.1.0.267).
    JRE Version : 1.7.0_25
    Style       : table
    DSP URL     : https://server.company.com/api/TesDevCM1
    User        : domain\interactiveuser
    Connection info saved successfully
    [serveradmin@masterserv bin]$ ./sacmd.sh -help
    NOTE: the User has to be an interactive user in TIDAL in order for this to work.  In this particular case the Tidal job will use masterserv as the agent, and UNIX\serveradmin as the runtime user (since that is the user that owns the executable binaries).  But it is actually going to use the domain\interactiveuserTIDAL interactive user security to run sacmd.  If domain\interactiveuser doesn’t have security policy rights to perform something in sacmd, command will fail.
    This will save your credentials in this location:
    [serveradmin@masterserv tescmd]$ pwd
    /home/serveradmin/tescmd
    [serveradmin@masterserv tescmd]$ ls -lat
    total 12
    -rw-rw-r-- 1 serveradmin serveradmin   76 Aug 23 14:13 .connection
    drwxrwxr-x 2 serveradmin serveradmin 4096 Aug 23 14:12 .
    drwx------ 4 serveradmin serveradmin 4096 Aug 23 14:12 ..
    [serveradmin@masterserv tescmd]$ vi .connection
    https://server.company.com/api/TesDevCM
    Y8Rod7qhMMtHKx0W+Dx+F7FsdfsslQTr
    That's it, so when you run your sacmd , you don't have to pass any credentials from the command parameter.

  • Verizon Call Assistant website login error & other issues

    I have had FiOS for about a month (10/2MB Internet, TV, and phone).  I signed up for and have been intermittently able to access Verizon Call Assistant about a week ago.  If I go to http://www.verizon.com/callassistant, I get the VCA screen, and try to log in.  Every time, my login fails with an error "Blah".
    If I go to http://www.verizon.com, I get a display of my services, including (only when logged in from my home), a short list of recent calls to my home.  If I click on the detail link, I get into Verizon Call Assistant automatically (no login required).  At home, I'm running Linux, so I can't run the Call Assistant program (anyone know if there's a version for Linux?)
    Also, VCA does not list voicemails.  I had a call the other day which left a voicemail and purposely did not check it for several (over six) hours, to see if it would eventually show up on VCA.  The call appeared almost immediately, but the voicemail never appeared (I eventually listened to and deleted it).
    Anyone have similar experiences?
    Thanks,
    Adam

    Adam,
    1) I use this link to get to the web Call Assistant site: https://www22.verizon.com/callassistant/. Don't know if it will work any better than the one you have been using, but you might try it. I have never had a login fail.
    2) have Flash blocked on my browser (I selectively allow Flash using IE7Pro), so apparently Call Assistant does not use flash. But it may need some other service that I don't block. So the question is, do you have any graphic or script "stuff" blocked that the site might need?
    3) I am not aware of a Linux client. You don't have a Windows system at home that you can install the client on? The client needs some enhancements, but it is a start. And I too would like a Linux client, I have dual boot on both my desktop and laptop.  
    4) I don't use voicemail so I cannot provide any experience or advice for that. 
    I suggest you contact the Help Desk for Call Assistant (1-888-483-5156). I have called them twice, right when I first started using Call Assistant, and they answered the phone quickly, called back when they said they would, and were very helpful.
    Good luck, I hope you can get your problems resolved. I like having Call Assistant, although I have passed along via the Help Desk a number of improvements I think they need to make (and now we just wait and hope......)
    Justin
    Verizon FiOS TV, Internet, and phone
    IMG 1.5.0
    Keller, TX

  • Website requests that I download a plugin. When I try, it states "No sutible plugin was found." I called the website owner. They said to dl Silverlight. I did. Still get same message. I don't know what plugin I need.

    I've tried this on two different computers withe different Windows OS.

    Steps to resolve this issue:
    1. Open Firefox
    2. Go to '''Tools>Options>Advanced>Network>Settings'''
    3. Check '''No Proxy'''

  • Calling a method with a html Submit button

    hi guys,
    is it possible to call a method from a JSP file using a HTML submit button. I know i can call another website easily doing it this way, is there a similar way available to call a method once the button is clicked?
    FYI
    The method is in a bean file named jdbc. The methods name is getUsername.
    Nice one.
    <form action = <%jdbc.getUsername()%> <input type="submit" value="Submit">

    Dear friend,
    you mentioned that u need to call a method when submit button is clicked. Is the method dynamically created. If not so, then you can include the method on the submit button html file itself.
    Regards,
    Rengaraj.R

  • Button to trigger action then call URL

    Hi all,
    Does anyone know if it is possible to create a web dynpro button which when pressed triggers an action. Within the method of this action i want to execute some ABAP code then call a website URL.
    Is this possible and does anyone know what the syntax for the URL call would be.
    Thanks in advance
    Mart

    Hi Mart
    Use this piece of code in the onaction method of the button
    data lo_window_manager type ref to if_wd_window_manager.
    data lo_api_component  type ref to if_wd_component.
    data lo_window         type ref to if_wd_window.
    lo_api_component  = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_api_component->get_window_manager( ).
    CALL METHOD lo_window_manager->CREATE_EXTERNAL_WINDOW
      EXPORTING
        URL            = 'http://www.google.com/'
      RECEIVING
        WINDOW         = lo_window.
    lo_window->open( ).
    Hope this helps u
    Regards
    Tamil

  • Foxfire is remembering a past password for a website, and the site won't accept when I enter the new password.

    I enter data on a State Health website, which requires that I change my password on a regular basis. I tried to login with the new password, and called the website's help desk for help, when I was unsuccessful. They said it was because Firefox was remembering the old password each time I tried to log on, and that I should ask you to remove the "remembering password" component.

    Thank you. I had to pull up an article on "How to Clear the Cache", and I think I got that and "Removed Cookies" from the site that I was having trouble with (although I didn't see any where to "okay" the new settings, so I just closed out). But I'm still not able to get on the site, so I have a call in to their support.

  • Calling a url from forms

    Hi!
    i have created a website using ARCIMS - (if you are not familiar with ARCIMS it is software that is used to create maps) I now want to call URL (website) from a button on my form. I have tried to use web.show_docuement and I am getting errors such as 'register failk'.
    I was able to run this same URL succesfuly from my browser. any ideas please?!?

    Kayla.
    web.show_document() is the right buit-in to do this and it works the same as calling a URL from a Browser. if it says "register failed" (not sure if I am correctimng your error message the right way) then this does not look like a Forms error message but one coming from teh program you call. Please check teh URL that is composed before calling web.show_document(). Check for invisible characters added to it.
    Frank

  • Where do I set Author Website?

    In the exchange item under Additional Information, there is a field called Author website. I could not find a place where I could set this.
    Does anyone have an idea how this field is set?
    Thanks

    I also wanted to update my website info and did not find the right place in account informaiton. Does anynone have an idea?

  • Financial website doesn't recognize my computer and asks security questions each time I log in

    When I sign into a financial website it doesn't remember my mac and requires me to answer security questions each time.  I called the website and they said the problem is with my mac's settings.  Anyone else have this problem?

    They do it for YOUR protectoin and security and to avoid someone else pretending to be you.
    They may or may not use cookies and other things.
    it is possible it was designed to work with a differenent browser or even platform though I would say that has gotten rarer.
    Assuming you use Apple Safari
    Safari
    http://www.apple.com/support/safari
    you are asking us to make assumptions and jump to conclusions also.
    Enable the Developer menu in Safari and User Agent setting to 'tell' a site you are using something else;
    try using Firefox 3.6.17 also.
    Check your preferences

  • Websites Down After Autoscale

    Hi
    I have configured scheduled autoscale for my websites. I have about 30 sites running on 2 instances during daytime, 1 instance at night. What happend latley (now more regular) in the morning, at exact the time when it scales up from 1 to 2 instances i have
    several websites which do not run anymore after that operation. When calling the website I get "The page cannot be displayed because an internal server error has occurred." - Usually 2-3 sites are affected, in most cases the same ones. The only option
    to bring them up is to restart the website 2-3 times in the azure portal.
    Any ideas how to investigate that further
    Thanks

    Are you auto-scaling Websites or Webroles?
    If you're auto-scaling Web-Roles (Cloud Services), whenver you issue a change to topology of your Role and you only have 1 instance, that instance will be taken out of LB and brought back in.  In order to ensure that there is no downtime for your application,
    you want to ensure that you always have least 2 instances - so that Azure can manage your servers instance by fault domains.
    Auto-scaling & monitoring service for Windows Azure applications at
    http://www.paraleap.com

  • Verizon Call Assistant doesnt recognize logon

    Visiting the home page
    https://www22.verizon.com/callassistant
    There is an option for current users to sign in.  I sign in with my standard verizon.com & verizon.net credentials which work there.  Unfortunately this page tells me:
    An error has ocurred: USERID not found.[MYUSERNAME]  1001
    AccountName = [MYUSERNAME]
    Path = 0:1:2:
    Where [MYUSERNAME] is obviously my account user name that we know works on verizon.com & verizon.net.
    So trying something else, from that same webpage is a Get It Now button.  I click this which asks me to logon to verizon.com to check my plans.  I logon using this same logon username & password and it brings me to my billing plans.  Here it tells me I am already signed up.
    Third try - on the call assistant page mentioned above, there is also an option to Activate.  I click this and enter my phone number.  It asks if I have a verizon.com user ID for which I select yes and enter my credentials.  I agree to the terms and conditions and asks me to logon which fails and gives the error message above. 
    Optionally on Activate, if I select I dont have a verizon.com user ID, agree to terms and conditions it asks for billing phone number.  I enter this and it tells me I already have a verizon.com user id (as expected).
    Basically I think this demonstrates the Call Assistant website isnt properly integrated to logon with my verizon.com credentials.  Attempts to reach out to two different verizon support people ended with the expected level 1 inability to assist and no recourse.
    I assume I simply need to software which can then logon to my verizon.com user id.  Anybody have any ideas?

    http://www.verizon.com/callassistant
    If you are already signed up, then you probably just
    have to activate.
    so go to that site and hit the grey activate button and
    follow the prompts. if you get a wierd message that
    you haven't ordered it then try to simply log in to the
    site with your myverizon.com residential username
    and password.
    once you're logged in, you can download the client
    IF that doesn't work then you should call in, there may
    have been a problem with your order, if it did not
    allow you to activate.
    give the call assistant guys a call 888-483-5156
    they can help you with that. That is the specific call assistant support number

  • Msi windpad enjoy 7 skype video call problem

    i just bought msi enjoy 7 last week but when i used skype it doesnt support video call,and websites videos are not playing it says that some plug-in is needed.i need some advise.thanks

    Quote from: mherskie on 16-April-12, 06:51:22
    i just bought msi enjoy 7 last week but when i used skype it doesnt support video call,and websites videos are not playing it says that some plug-in is needed.i need some advise.thanks
    I already have this msi windpad enjoy 7. you will need to uninstall the update of adobe flash player 11 to 10.2 in order to view videos. Simply go to settings,; applications; manage applications; choose adobe flash player 11.; uninstall. it will revert bak to 10.2. don't forget to restart your tablet after the uninstall. As for skype video call, There is a problem with the skype application software so you cannot make a video call. There is a missing plug-in with the skpe video call and i'm still working on it.

Maybe you are looking for

  • ICloud with multiple users on on account

    My daughter and I share an iTunes account. We recently updated all our devices and activated iCloud. Now her iTouch is getting my phone's text messages. I've tried deleting the contacts off her iTouch and changing the mail settings. Nothing seems to

  • My brand new 13 inch retina display macbook pro won't turn on!?

    Hello all, I purchased a 13inch retina display macbook pro from an apple store at around 4pm today and at about 10pm (after I have been doing nothing more than downloading software and surfing the internet off of the power adapter) it randomly shut o

  • Record & NonRecord Disposition in URM 10g

    I have categories in 10g that allow both Records and NonRecords. But when I try to create a disposition to handle each in a Category I get an error that says a Record action can't be in a Non Record category. So I'm doing something wrong and my varia

  • Defining complex types in ABAP

    Hi Folks, I am new to the ABAP world and has started programming in it for about two weeks now (therefore, two weeks of experience so far ). I have a question regarding definition of complex types in ABAP. Basically what I want to achieve is to defin

  • Saving Music Files from Media Card

    I have a Torch 9810 with a 2GB digital media card. That card is full now and I need to insert a much large memory card. However, I cannot find how to save/backup my music MP3 files and need to save everything on the media card so I can re-load to a n