How to send a request to other apex app users?

HI,
Is there any kind of function in apex can enable me to make a thing that can enable apex app end users communicating with each other?
Like, If I input an error item no, and I wouuld like my administrator to change it, I now will write him a small text in stick paper, can we do things within apex?

Hello,
I don't think it's too hard to make something like that. Basically you've a table for messages and you have a region on page 0 (to show on all pages) or whatever page you want that queries that table. You could even let it query every x seconds automatically with ajax.
Carl for ex has in his app a comments section: http://apex.oracle.com/pls/otn/f?p=11933:5
Regards,
Dimitri
-- http://dgielis.blogspot.com/
-- http://www.apex-evangelists.com/
-- http://www.apexblogs.info/

Similar Messages

  • How to send a request and get a response through xml

    How to send a request and get a response through xml files?

    This is the code that works for me. Hope you find it useful.
         public static String sendHttpGetRequest(String endpoint, String requestParameters){
              String result = null;
              // Send a GET request to the servlet
              try{
                   // Send data
                   String urlStr = endpoint;
                   if (requestParameters != null && requestParameters.length () > 0){
                        urlStr += "?" + requestParameters;
                   URL url = new URL(urlStr);
                   HttpURLConnection conn = (HttpURLConnection) url.openConnection();
                   conn.setRequestProperty("Accept", "application/xml");
                   // Get the response
                   BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
                   StringBuffer sb = new StringBuffer();
                   String line;
                   while ((line = rd.readLine()) != null){
                        sb.append(line);
                   rd.close();
                   result = sb.toString();
              } catch (Exception e){
                   e.printStackTrace();
              return result;
         }

  • How to send a Patch Impact report to a user?

    Hi:
    This is for 12.1.3, 10g on linux. Would please someone tell me how to send a Patch impact report to a user. She doesnot want to go to EBS to look and I asked me to send her a report. I have looked but didn't see anywhere I can do that. Please guide me.
    Thanks and regards

    873768 wrote:
    I ran a patch analyzer from OAM and got a report from "Impact". I was hoping the func person can also login to the OAM and see there. But she wants me to send a report to here. But when you click on the "Impact" There is no single report but a lot of clicks. I am asking if there is way to copy/download the report?
    Nayas has already answered this question -- You can save the report (File > Save As) or take a screenshot or whatever is convenient for you and send it to the user.
    Thanks,
    Hussein

  • Can responses be automated to send to Domo or other BI Apps for deeper analysis?

    can responses be automated to send to Domo or other BI Apps for deeper analysis?

    Hi Jeremy,
    First of all as suggested already, you’ll need to reconsider if it’s architecturally sound to route a message to two
    solicit response ports? if yes, read further.
    Then solution for your problem, if you still want to go ahead with this.
    Pre-Bitalk 2010 
    Hotfix available : http://support.microsoft.com/kb/923632
    Biztalk 2010 & Later:
    1) Inside the BizTalk administration console open the BizTalk Settings Dashboard.
    2) Go
    to the tab for the hosts settings, and select the host used by the request response ports.
    3) Check
    the checkbox for property Allow Multiple Responses.
    Rachit

  • Need to Apex App user login last login details

    Hi All.
    how will get the Apex App user login details ? is it have any table or please suggest me on this...

    Not sure what is your exact requirement, but did you look at "Monitor Activity" under "Administration" (you should be an Administrator to the workspace)?

  • How to send a request to a web server

    Hi All!
    How can I send a request to a web server using java.net package? Can any one give me a simple example?
    thanks,
    Padma.

    http://javaalmanac.com/egs/java.net/Post.html
    http://www.developer.com/tech/article.php/761521
    http://www.javaworld.com/javaworld/jw-03-2001/jw-0323-traps.html

  • How to send  a request to servlet from a java client.

    I called a servlet from java client using URL object.
    I could establish a connection with server and display
    the content(like req.getservername etc.,)
    of servlet on client side(DOS prompt).
    My question is how do i send a request to servlet from the client.
    let me say, i have to send a value as 10 to servlet and do some processing
    ( like 10*2 = 20) display the output (20) on client side..
    It will be appreciated if u can mention the syntax...

    just add the query string to the url you use to create the URL object from.

  • How to send SOAP request by HTTP POST?

    I want to access a SOAP webservice using mx.rpc.soap.mxml.WebService.
    Following is my code:
    <mx:WebService id="miner_service" wsdl="http://localhost:8080">        <mx:operation name="hello" result="echoResultHandler(event);"></mx:operation></mx:WebService>
    When debugging with that, I got such error message:
    [Fault] exception, information=[RPC Fault faultString="HTTP request error" faultCode="Server.Error.Request" faultDetail="Unable to load WSDL. If currently online, please verify the URI and/or format of the WSDL (http://localhost:8080)"]
    Then I use Fiddler try to capture the response returned by server, it's like this:
    Error responseError code 501. Message: Unsupported method ('GET'). Error code explanation: 501 = Server does not support this operation.
    But when I use python to send SOAP request by HTTP POST, the server will return correct response.
    So how can I send SOAP request by HTTP POST?
    (I tried <mx:WebService wsdl="http://localhost:8080" method="POST">, but no luck..)

    Sorry for my late reply..
    There's no WSDL for that SOAP service

  • How to send two request in the same connection with HttpURLConnection?

    As the title, I want to send two or more requests in the same connection with HttpsURLConnection..I wish all requests are in the same session.
    My code is as following:
    package test1;
    //import javax.net.ssl.*;
    import java.net.*;
    import java.io.*;
    public class httptest {
    public httptest() {
    public void test() {
    HttpURLConnection uc = null;
    String urlStr="";
    urlStr="http://172.16.245.151/test/page1.jsp";
    try {
    URL u = new URL(urlStr);
    uc = (HttpURLConnection) u.openConnection();
    uc.setRequestMethod("GET");
    uc.setDoOutput(true);
    // uc.connect();
    OutputStream out = uc.getOutputStream();
    out.flush();
    out.close();
    catch (Exception ex) {
    System.out.println(ex.getMessage());
    public static void main(String[] args) {
    httptest tt = new httptest();
    tt.test();
    The sample class just can send a request..Now we think of the sentence :uc = (HttpURLConnection) u.openConnection();
    Obviousely, a HttpURLConnection can just have a Object of the Class URL, and the Class URL have no setURL mothed. So I can't use a HttpURLConnection to send two request.
    I just want the HttpURLConnect is the same to IE...Do you understand what I mean?
    Any helps will be appreciated...

    As the title, I want to send two or more requests in the same connection with HttpsURLConnection..I wish all requests are in the same session.
    My code is as following:
    package test1;
    //import javax.net.ssl.*;
    import java.net.*;
    import java.io.*;
    public class httptest {
    public httptest() {
    public void test() {
    HttpURLConnection uc = null;
    String urlStr="";
    urlStr="http://172.16.245.151/test/page1.jsp";
    try {
    URL u = new URL(urlStr);
    uc = (HttpURLConnection) u.openConnection();
    uc.setRequestMethod("GET");
    uc.setDoOutput(true);
    // uc.connect();
    OutputStream out = uc.getOutputStream();
    out.flush();
    out.close();
    catch (Exception ex) {
    System.out.println(ex.getMessage());
    public static void main(String[] args) {
    httptest tt = new httptest();
    tt.test();
    The sample class just can send a request..Now we think of the sentence :uc = (HttpURLConnection) u.openConnection();
    Obviousely, a HttpURLConnection can just have a Object of the Class URL, and the Class URL have no setURL mothed. So I can't use a HttpURLConnection to send two request.
    I just want the HttpURLConnect is the same to IE...Do you understand what I mean?
    Any helps will be appreciated...

  • How to send the spool output to the specific user during ALE distribution

    Hi All
    In ALE internal order Configuration done by BAPI Method SAVEREPLICA Business object BUS2075whenever user changed the internal order which is moved to the destination system because of change data setting in data element fields.
    I want to know how to send the spool output of the changed internal order to the specific user during ALE distribution.
    Please help me to reslove the above issue
    Thanks & Regards
    KRISHGUNA

    Solved by myself

  • How to send a request from a page to another

    Hello,
    I've started a project an I would like to do the following.
    I have :
    -a datasource included in my project
    -a page customer_list.jsp with a list (and data binding a datasource table)
    -a page customer_search.jsp with a text field(where i write my sql request) and a ok button
    -a link (page navigation) between ok button and customer_list.jsp
    I would like, when I clic on the ok button, to go to the customer_list page with datas in the list that result from my sql request.
    What I think :
    -in the ok buton event, create a requestBean object and .... (don't know how to specify it a request, but i'm searching)
    -return "customer_list"
    -in the customer_list.java constructor : recover the requestBean Object (how to do ?) and bind the result to the list.
    I think it's not a good way to do, this is my first project and I don't know yet how to do a good work with JSC2.
    Can you tell me where are the "bugs" with what I want to do ?
    Thanks for your answers
    Nicolas

    I've found !
    let's see my ok button code :
    public String b4_action() {
            String sql = e1.getText().toString();
            try
            getSessionBean1().getCustomerRowSet().setCommand(sql);
            getSessionBean1().getCustomerRowSet().execute();
            catch(SQLException e)
                System.err.println(e);
            return "customer_list";
        }I hope this will help someone else ...
    Nicolas

  • How to send single id value in apex url on clik of link column in report

    Hi,
    Im using the following code to generate a report, in which BP_NAME is a link coloumn ,So I want to send the id(best_attachment table column ie bpa_id) to the next page(6) when I click on the link.If I hoover my mouse on the link it is showing the url like
    ..../f?p=114:31:5954054962330632:REQ:NO:P6_BP_ID:6,12,14(for the record 30 and if it is a two name it will pass two id)
    But i need to pass only one id on click of a link ,but in the url it showing three id.
    ===code====
    select bp_id,
    (select LISTAGG(BP_NAME, ';') WITHIN GROUP (order by BP_NAME) from best_attachment bpa where bpa.bpa_bp_id = bp.bp_id ) BP_NAME
    from best_practices bp
    ===========
    Ex
         Link column<br>
    10 Whalen
    20 Hartstein
    30 Raphaely;
         Khoo;
         Tobias;
    40 Mavris
    If I click any name on 30 record that is Raphaely, Khoo,Tobias It is showing the three id in the url and passing the same. Pls tell me how to pass single id(bpa_id) on clik of a link.And how to alter the above code to achive the same.
    Regards
    Balaji

    No One :(

  • How to send meeting request by mail adapter

    Hi,
    I'm doing scenario from file to mail. I have a sender file adapter to pick up the meeting request standard format file(*.ics) from file system. On the other side I have a receiver mail adapter to send mail. What I want to do is the sent mail by mail adapter should be a meeting request instead of a normal email with meeting request as its attachment.
    I use localejbs/AF_Modules/MessageTransformBean as first module in mail adapter, but the sent mail is also a normal with meeting request as its attachment. This is not what I expected.
    I also created own module for mail adapter to realize it. Do I need to change the format of meeting reqeust information in payload? Actually I have chance to do it in module. But what should I do? Thanks.

    Hi, Krishna:
    Thanks for your reply.
    Actually the content of ics file is like:
    BEGIN:VCALENDAR
    PRODID:-//Microsoft Corporation//Outlook 11.0 MIMEDIR//EN
    VERSION:2.0
    METHOD:REQUEST
    BEGIN:VEVENT
    ATTENDEE;CN="Wu, Oscar";ROLE=REQ-PARTICIPANT;RSVP=TRUE:MAILTO:[email protected]
    ORGANIZER:MAILTO:[email protected]
    DTSTART:20070626T130000Z
    DTEND:20070626T150000Z
    LOCATION:Shanghai
    TRANSP:OPAQUE
    SEQUENCE:0
    UID:040000008200E00074C5B7101A82E00800000000F067E9BB0DB8C7010000000000000000100
    00000C7423D530FE8744687B0C7C08D4CAA58
    DTSTAMP:20070626T104913Z
    DESCRIPTION:Meeting request without attachment\n
    SUMMARY:Test appointment
    PRIORITY:5
    X-MICROSOFT-CDO-IMPORTANCE:1
    CLASS:PUBLIC
    BEGIN:VALARM
    TRIGGER:-PT15M
    ACTION:DISPLAY
    DESCRIPTION:Reminder
    END:VALARM
    END:VEVENT
    END:VCALENDAR
    this content is content of meeting request based on RFC 822, what I want is not get the content itself in mail, I want the mail adapter send a meeting request out automatically when it get this content.
    Thanks

  • How to send a request ??

    Hi i am developing a web application
    I have two frames in my jsp page
    1. left fram
    2. Right frame
    Left frame contains some links to add items . To display that form i.e add.jsp , the request is send from servlet by checking certain parameters .
    But the problem is the add.jsp is complete different jsp page and request is forwarded with
    getrequestdispatcher ()method , but the response is generated in left frame that means i am unable to transfer the request to different jsp page
    Please help me
    Or let me know if you need some more information
    Thanks

    Well, obviously until you refresh the left frame contents it will not display any new additions.
    I can only think of JavaScript as the way out. After the add form is submitted and processed, as part of the response, send back a 'Please Wait' (or whatever suits you) page with JavaScript that will simply [set the location|http://www.tizag.com/javascriptT/javascriptredirect.php] to the original page containing the frameset. For example, if your main page is main.jsp, then your response (after successful addition of the entry) could be something like this:
    <html>
    <head>
       function redirectToMain()
            window.location = "http://hostname/main.jsp";
            //the only shortcoming of this method is that it doesn't work
            // with relative URLs; but you can always generate the complete
            // URL on the server side by getting the scheme, servername and port
           //from the HTTPServletResponse and contextpath from the ServletContext
    </head>
    <body onLoad="redirectToMain();">
    Please Wait...
    If you're not redirected for some reason, please <a href="http://hostname/main.jsp" target="_top">click here</a>
    </body>
    </html>Otherwise, you can consider
    a. opening add.jsp in the left frame (and not in the right frame); this way, when you submit the new entry, you'll finally get back the left.jsp with the updated contents
    b. opening a new window for add.jsp and use JavaScript to refresh the parent frame
    Edited by: nogoodatcoding on May 28, 2009 8:51 AM

  • How to send a request to Apple?

    Would someone please point me in the right direction to send and/or make a request to Apple. In particular, I would like to make a request to have Graphics card/energy saver selection for my MBP. It was a selection in Leopard, but not in SL. I could choose between one Graphics card for energy savings and another for higher performance, but now I do not have the ability to choose. I've searched under customer service, customer requests, etc, but I just can't seem to remember the term that has been used in this forum.
    Thanks in advance for the help.

    Better is to send a bug report or an enhancement request to Apple via its Bug Reporter system. To do this, join the Apple Developer Connection (ADC)—it's free and available for all Mac users and gets you a look at some development software. Since you already have an Apple username/ID, use that. Once a member, go to Apple BugReporter and file your bug report or enhancement request. The nice thing with this procedure over submitting feedback is that you get a response and a follow-up number; thus, starting a dialog with engineering.

Maybe you are looking for

  • Group form items to handle  large number of input items

    Hi, I have a form region with about 50 items. They are to many too display all at the same time. What I would like to do is to group these items into three separate groups. Also I would like to place "flip" button at the top that user can press and c

  • Asset Accounting implementastion problem

    Hi sap Friends, At the Time of create Asset master i have faced in the below problem.please help to my friends. Customizing inconsistency - missing/incorrect entry in table T093B Message no. AY159 Diagnosis There is a Customizing inconsistency. Chart

  • Hard currency is not valuated in FAGL_FC_VAL along with local and group currency

    Hi All, I have the below system settings for FOREX revaluation. The revaluation is not happening for Hard currency along with local and group currency. The test data and other settings seams to be fine as the below mentioned workaround works perfectl

  • Implementation Activities for SAP MM

    hi, Can any one please tell me what all activities are required to be done in SAP MM Implementation/Realization as I am working on my first project, I need to understand and give a time estimate for SAP MM Implementation. Regards, Amit

  • G5 is not starting, Fans are blowing...help!

    My mac is not working. Press button and seems to start ok, but after a few seconds the fans come on at full speed. The screen is grey with the loading icon but never gets further than that. I have cleaned the dust from inside and tried restarting but