Urgetn - Can you call a url from a workflow?

Hey,
Does anyone know if you can call a url from a workflow?
Your urgent attention would be grateful.

I have done this in a form. You could put a manual action to call the form then display the url (Technical Reference 3-14)
<Field>
<Display class='Link'>
<Property name='name' value='Request
Group Access'/>
<Property name='URL'
value='user/processLaunch.jsp?newView=true'>
<Property name='id' value='Group Request
Process'/>
</Display>
</Field>
Hope this helps
BigBenny

Similar Messages

  • How can you block a URL from access?

    This URl (http://reduled.info/3131) keeps coming up as mal in Avast. Can a specific URL be blocked?

    Your Firefox is probably hijacked.
    You mentioned Avast, on their suportpage there are several entries about reduled.info
    Start windows in safe mode and run several different anti- virus / -malware / root-kit programs.

  • Can you call external code from XE?

    Hi,
    I have an application that uses external code, called via extproc. During a standard Oracle installation, I need to modify the listener configuration to allow it to do so. This is done by modifying listener.ora like follows:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\ora10_2)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ANY")
    without the 'ENVS' entry, the listener security prohibits the loading of our code.
    The touble I have on XE is that attempting to restart the listener after this change gives an error:
    TNS-01155: Incorrectly specified SID_LIST_LISTENER parameter in LISTENER.ORA
    NL-00303: syntax error in NV string
    Does this mean that external code cannot be used? or does anyone know a workaround?
    Thanks in advance,
    Jim

    One obvious problem is the missing close paren, seen when you reformat as follows:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\oracle\ora10_2)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ANY")
    ) <--- this is missing

  • Can you call with facetime from an iPad to an imac with both registered to same email

    when I tried to call ipad from imac via facetime it would connect - both devices use my email address will this work?

    See this
    https://discussions.apple.com/thread/4002331?start=0&tstart=0

  • Calling a url from a pl/sql proc

    HI!
    I was wondering if anybody has code that they can share calling a url from a pl/sql proc.
    Thanks!!

    Thanks - tell me if I am wrong but it does not seem to be what I need. does this package have the capabilities of doing the following... I want to call a pl/sql procedure - I am not in any browser window and by calling this proc it will bring up a browser window with the given url.

  • Can you call a plsql application process from a validation?

    Can you call an on-demand plsql application process from a page validation?
    Thank you,
    Gayle

    Gayle:
    I don't think you can do that. You could consider moving the ODP into the database as a stored procedure . The stored procedure can then be referenced in the ODP and in your validation code as well.
    varad

  • Can you call these regular US numbers from Skype? ...

    Can you call these regular US based number's from Skype without being blocked why or why not?
    Number's are  from (removed).
    They are considered "free telephone chat line's" only long distance or regular fee's would apply.
    So are these allowed by the Skype system etc?
    Some example's of the phone number's incase you can't visit the site are: (removed)
                                                                              Thanks in advance.

    playdoughfigure wrote:
    1. They are considered "free telephone chat line's" only long distance or regular fee's would apply.
    2. So are these allowed by the Skype system etc?
    Hello,
    I've made a test call to one of these #s.
    1. Yes. That statement is correct.
    2.  Yes they are allowed.
    I've had to edit your post a little as we don't allow third party sites being posted.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • How to call a URL from forms ?

    Dear All,
    I would like to invoke / call a URL from forms. I know we can make a call Using Web.show_document. But this will execute in a browser.
    What i need to do is, i have to send a request to by calling an URL, that should not visible to any body.
    This is my requirement, please help if you know.
    Thanks
    Balaji

    hi,
    here is a quick example : (data from url returns as a clob. you need to write it at db. and call from forms.)
    FUNCTION Get_DataFromUrl(pUrl IN VARCHAR2,pProxy IN VARCHAR2,pData IN OUT CLOB) RETURN NUMBER IS
    vRcv UTL_HTTP.HTML_PIECES;
    vData CLOB;
    eNoDataReceived EXCEPTION;
    BEGIN
    UTL_HTTP.SET_DETAILED_EXCP_SUPPORT(TRUE);
    -- Get data pieces from Url
    vRcv := UTL_HTTP.REQUEST_PIECES(pUrl,Proxy => pProxy);
    IF vRcv.COUNT < 1 THEN
    RAISE eNoDataReceived;
    ELSE
    -- Append varchar2 table data into clob variable
    DBMS_LOB.CreateTemporary(vData,FALSE,DBMS_LOB.CALL);
    FOR i IN 1..vRcv.COUNT LOOP
    DBMS_LOB.WriteAppend(vData,LENGTH(vRcv(i)),vRcv(i));
    END LOOP;
    -- Copy local data into return variable
    DBMS_LOB.Copy(pData,vData,DBMS_LOB.GetLength(vData));
    DBMS_LOB.FreeTemporary(vData);
    END IF;
    RETURN SUCCESS;
    EXCEPTION
    WHEN eNoDataReceived THEN
    RETURN FAILURE;
    WHEN UTL_HTTP.INIT_FAILED THEN
    RETURN FAILURE;
    WHEN UTL_HTTP.Request_Failed THEN
    RETURN FAILURE;
    WHEN OTHERS THEN
    RETURN FAILURE;
    END Get_DataFromUrl;
    hope this helps.
    Engin.

  • Can you get values back from a stored procedure via OUTPUT parameters?

    Can you get values back from calling a stored procedure via OUTPUT parameters/variables? I call the SP via a SQL statement from a script either in a WF or DF.
    I thought I read some reference that DI could not get the values from OUTPUT parameters but I could not find it again (don't know if it is in any of the documentation or referred to in a forum.
    I did try a couple of tests but it did not reutrn any values via OUTPUT. But before I give up I thought I'd see if you could and maybe I needed to change something.

    This isn't exactly an answer to your question, but I'll point out that, given that you're resorting to a SQL script in the first place, there's no reason you can't also turn the output parameters into a regular result or record set. (The following uses T-SQL, although I think it's pretty generic.)
    declare @param1 int, param2 varchar(100), @return int;
    exec @return = proc @param1 = @param1 output, @param2 = @param2 output;
    select @param1 as param1, @param2 as param2;
    That is, to get from output parameters to a "regular" output from the SQL script isn't much of a leap...
    Jeff Prenevost
    BI Consultant
    Ann Arbor, MI

  • How can i call a servlet from a servlet ?

    Hello,
    Can i call a Servlet from within a Servlet ?
    and is it "right thing" to Do ?
    Thanks

    JMO, but I wouldn't do it like this.
    Don't have a remote object like a servlet doing database queries for your app. That will mean TWO network hops for every query if the database resides on another machine. The network is the biggest bottleneck you've got.
    Write a JavaBean that does the database stuff for you and just have the first servlet instantiate it when it needs it. A Bean has a better chance of being reused, too. Write a TableGateway or DAO for your object.
    Or write an EJB to do it.
    The only time I've done a servlet-to-servlet connection like that was for one servlet running in a DMZ that would authenticate a user and then forward the request to another servlet running inside the second firewall.
    I wouldn't encapsulate database query logic in a servlet like that. JMO - MOD

  • Can I call a function from a dll in LabVIEW that returns:double*string and int.?

    I have a function from a dll that return a double* string and an integer. How can I call this function from LabVIEW? There is a possibility to work in LabVIEW with a double* string?

    pcbv wrote:
    > Hello all,<br><br>The header of the function is:
    >
    > "HRESULT WRAPIEnumerateDevices(WRAPI_NDIS_DEVICE **ppDeviceList, long *plItems);"
    >
    > where WRAPI_NDIS_DEVICE have this form:
    >
    > typedef struct WRAPI_NDIS_DEVICE<br>{<br>
    > WCHAR *pDeviceName;<br>
    > WCHAR *pDeviceDescription;<br><br>}
    > WRAPI_NDIS_DEVICE;<br><br>
    >
    > The function is from WRAPI.dll, used for communication with wireless card.
    > For my application I need to call in LabVIEW this function.
    Two difficulties I can see with this.
    First the application seems to allocate the array of references
    internally and return a pointer to that array. In that case there must
    be another function which then deallocates that array again.
    Then you would need to setup the function call to have a pointer to an
    int32 number for the deviceList parameter and another pointer to int32
    one for the plItems parameter.
    Then create another function in your DLL similar to this:
    HRESULT WRAPIEnumExtractDevice(WRAPI_NDIS_DEVICE *lpDeviceList, long i,
    CHAR lpszDeviceName, LONG lenDeviceName,
    CHAR lpszDeviceDesc, LONG lenDeviceDesc)
    if (!lpDeviceList)
    return ERROR_INV_PARAMETER;
    if (lpDeviceList[i].pDeviceName)
    WideCharToMultiByte(CP_ACP, 0,
    pDeviceList[i].pDeviceName, -1,
    lpszDeviceName, lenDeviceName,
    NULL, NULL);
    if (lpDeviceList[i].pDeviceName)
    WideCharToMultiByte(CP_ACP, 0,
    pDeviceList[i].pDeviceDescription, -1,
    lpszDeviceDesc, lenDeviceDesc,
    NULL, NULL);
    return NO_ERROR;
    Pass the int32 you got from the first parameter of the previous call as
    a simple int32 passed by value to this function (and make sure you don't
    call this function with a higher index than (plItems - 1) returned from
    the first function.
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Can you call a public method in a custom skin?

    I made a custom skin for a button. In the skin there's a method to change some text. Can I call this method from my application?
    I get an error message when I try to call it like a normal object:
    uploadNewBtn.setNewPhotosLabel("test");
    Error 1061: Call to a possibly undefined method setNewPhotosLabel through a reference with static type spark.components:Button.

    You said it yourself, the method is inside skin not the HostComponent (button in your case). Obviously you cannot call it.
    There is a skin protperty inside SkinnableComponent, but it is typed as UIComponent so you still cannot cal it on the skin without casting. I don't know your use case, so in theory you either push the text/label from the host towards the skin, or you listen or bind from the skin on the hostcomponent.
    C

  • I cannot download adobe reader in order to download an item. can you call me Removed by Moderator

    I cannot download adobe reader in order to download an item.  can you call me

    What is your operating system & version?
    Define "cannot" - what happens when you try?
    Try downloading the offline installer from http://get.adobe.com/reader/enterprise/
    P.S. this is a user-to-user support forum; you can use paid support if you want telephone support: http://helpx.adobe.com/reader.html

  • Can LabVIEW call a function from a .sys file or is LabVIEW limited to dll access?

    My vendor has sent me a .sys file with functions accessing their hardware.  Can i call these function from labview directly or do I have to wrapper the .sys with a dll?

    Well a sys file is a kernel device driver. LabVIEW does not have any direct way of accessing such a driver. The way kernel drivers are accessed is usually through a DLL which makes calls to WinAPI functions such as CreateFile(), ReadFile(), WriteFile(), CloseHandle() and DeviceIORequest(). Since these WinAPI calls are basically just DLL calls too, you could theoretically use the Call Library Node to call them and access the kernel device driver in such a way.
    However for any kernel device driver with more than one or two device driver calls, it will certainly be easier in terms of development, debugging and maintenance of the code, to write actually a dedicated DLL in C/C++ for this device driver and access that DLL from LabVIEW, especially if you consider the LabVIEW datatype limitations when designing the DLL interface (Basically this same DLL can then be called from any other Windows development environment, be it Visual Basic (similar datatype limitation as LabVIEW), Delphi, (Visual) C, LabVIEW or also various scripting environments like Python and Lua.
    Some of the necessary WindAPI calls are rather involved and pose quite a bit of trouble to get the parameter data right in LabVIEw.
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Can you Call qdbus?

    Hi
    After allot of upgrades, lot of .pacnew files resolving, a boot partition resize and grub reinstallation, I had allot of problems which is hardly surprising but I solved them all except one: when I login to KDE through KDM or GDM I get the good old error message
    Could not start D-Bus. Can you Call qdbus?
    And yes, I can call qdbus. I was seeing this error before I switched to systemd, but this was long time ago and then it was working until yesterday.
    I can start kde by starting X from the console and then typing
    DISPLAY=0 startkde &
    but not from a display manager. Gnome starts fine.
    I'm running out of ideas. Where should I look?

    After
    ln -s /usr/bin/qdbus /qdbus
    I can login into kde and I do not get the above message. But kde get unresponsive from time to time when I switch between windows. I had this problem more than a year ago and was using xfce in the meantime. Does anyone have any ide this time what causes this error?

Maybe you are looking for

  • How to Copy Images in 11g Database?

    Hi, I m using 11gr2 Database. I want to copy my entire table (table1) to table2. Table1 also have Images of datatype Long Raw. I m using following query, which doesn't work; Insert into table2 select * from table1 But this query is fine for tables wh

  • AR9.1 Rich Media Annotation TextInput and Backspace Key

    I've put together a test PDF see: http://www.amrita-cfd.org/4adobe/rich-media/shock-tube.pdf that shows that the backspace key does not work as expected for an a TextInput field in a rich-media annotation when viewed with Linux AR9.1; at least not wi

  • RG Registers

    Hi All, As we know that there are standard RG registers and excise registers, in xl reporter.  Is it possible to generate the same reports using Query Wizard or genarator. If so what all fields should i consider in the report. Can any one help me out

  • Number of concurrent managers

    Hi, how to change the number of concurrent managers ? Many thanks before.

  • Can I share my entire drive?

    I'm only able to share my G5's Home folder on my network, PCs and Mac Powerbook Pro. Can't find a way to share other folders, partitions, etc. I ask because a) my Macs see all files on the Windows machines b) at work, I see my partner's G4 on the net