How to get responses to topics posted on forum

I have submitted multiple requests to the forum in the past, on multiple topics, and received sporadic responses. My most recent request was originally posted on Dec 18. I have yet to receive a response from anyone. I have reposted to the same topic, in an attempt to keep it near the front of the list (most recently on Dec 26th).
What is the correct approach to receive a response? I have paid for JDeveloper, and would like some kind of reliable resource for help with questions and issues. I know I can submit TARS, but I don't feel it's appropriate to do this unless I truly feel there is a 'bug'.
In reviewing my old questions which were not responded to, I've noticed there are many other questions which never receive a response, either.
Even if a response is entered by someone indicating we should take the time to read a help topic to answer our own question, that is much preferred to not hearing anything.
Surely other users of the JDeveloper forum share my concerns?
Given that I have paid for the software, and for annual maintenance, is there a more appropriate resource to work with?

Hi Randy,
The JDeveloper discussion forum is free to everyone. The Oracle people who respond on this forum tend to be developers and product managers. We try to monitor the forum and help out as much as we can, but we don't commit to answering every question; if we did that there wouldn't be much time left to actually develop the product, which is the main job of this group.
If you want a guaranteed response to a question you should contact technical support. They're a paid service that guarantee a response within a certain period of time - and they're not just for reporting bugs. Your support contract also gives you access to metalink, where you can download product patches.
Thanks
Blaise

Similar Messages

  • How to get responses to my post

    Hi there. I posted in "sql and pl/sql" forum yesterday under my name (Al Kosteniuk) and got not responses. Was there some sort of protocol that I missed, or the question wasn't interesting enough?

    First off, please be aware that 99% of the folks that answer questions on OTN are volunteers with real jobs outside of OTN, so not all questions will be answered. If you need Oracle representatives to answer your question, you are probably better off posting in the Metalink forums.
    Second, you may be better off posting Forms questions in the Forms forum
    Forms
    rather than in the SQL and PL/SQL forum. No guarantees of course, but the folks over there are probably a lot more familiar with DDE.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • How  to get  response from such a  function

    How  to get  response from such a  function (in MODULE USER_COMMAND_0010 INPUT I get "ODGOVOR" 'X'
    FUNCTION Z_SEENKRAT.
    ""Local Interface:
    *"  EXPORTING
    *"     REFERENCE(ODGOVOR) TYPE  MSEG-KZEAR
    DATA ok_code LIKE sy-ucomm.
    DATA: test like mseg-kzear.
    BREAK-POINT.
    call screen 10.
    test = ODGOVOR.
    ENDFUNCTION.
    *&      Module  CLEAR_OK_CODE  OUTPUT
          text
    MODULE clear_ok_code OUTPUT.
      CLEAR ok_code.
    ENDMODULE.                 " CLEAR_OK_CODE  OUTPUT
    *&      Module  USER_COMMAND_0010  INPUT
          text
    MODULE USER_COMMAND_0010 INPUT.
    DATA odgovor LIKE mseg-KZEAR.
    CASE ok_code.
        WHEN 'DA'.
        ODGOVOR = 'X'.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0010  INPUT

    Hi,
    You need to declare the ODGOVOR variable in the TOP include, then you will get the value
    Regards
    Sudheer

  • How to get current date for posting date

    hi,
    how to get current date for posting date ? any sample code ?
    Thanks

    Hi......
    Use
    Select getdate()
    for current date.......
    Regards,
    Rahul

  • How to search a specific topic in a forum?

    How to search a specific topic in a forum? who can offer me a solution. I'm really appreciate it.

    Enter something in the box next to the words Advanced Search at the upper right and click on the button to display a list of search hits. Then, in the box to the right of the list, click on the word help to bring this Search Help and Tips page up:
    http://search.java.sun.com/search/java/help.jsp

  • How to get response from an asynchronous BPEL process in Java

    I'm experimenting with BPEL and doesn't seem to be able to get response from an asynchronous BPEL process. Here's the deal:
    I have a BPEL process that takes a string as input, and gives another string as output. This is a asyncronous process.
    I want to initiate this BPEL process as a web service so I generate a Webservice Proxy in JDeveloper 10g (10.1.3.0.4). The function to call the process is now called "initiate" and takes three arguments: the input string, a "org.xmlsoap.schemas.ws._2003._03.addressing.EndpointReferenceType replyTo" and a
    "org.xmlsoap.schemas.ws._2003._03.addressing.AttributedURI messageID".
    HTTP-Analyzer shows that invoking the BPEL process with initiate("somestring", null, null) results in sending a SOAP message to the BPEL process, which returns a "202 Accepted". How do I get the response from the process? My intuition tells me that I have to use that second argument, that EnpointReferenceType thing. How do I use that?
    Another question: If a asynchronous BPEL process does not exists (so the endpoint does not exist) the Java proxy does not throw an error when runned. It does not even sends a message. It exits with status 0! (This happens for example when deploying a new version of a process and when the "old" version is undeployed). Calling a non-existing synchronous BPEL process, the Java proxy DOES throw an error.

    Clemens,
    That all sounds logical. But somehow it is still a mystery for me ... Somehow I don't see what should be done.
    To call the async BPEL process I have the following procedure:
    initiate(String input, org.xmlsoap.schemas.ws._2003._03.addressing.EndpointReferenceType replyTo, org.xmlsoap.schemas.ws._2003._03.addressing.AttributedURI messageID)
    The first argument is the input for my BPEL process. The second is the address to a webservice that should handle the callback, right? The third is a messageID (makes sense, but why of the type AttributedURI?).
    Here lies my problem. It is not clear to me how these EndpointReferenceType & AttributedURI work. I can't find anything on the net about it. The AXIS examples as where mentioned earlier use other types (namely the "org.xmlsoap.schemas.ws.addressing.MessageID" and "org.xmlsoap.schemas.ws.addressing.ReplyTo") which are completely different.
    What I did so far:
    - I created an webservice proxy that listens on the onResult endpoint of the BPEL process.
    - I created an webservice proxy that calls the BPEL process through the initiate procedure, but it is not completely clear to me how to construct the EndPointreferenceType replyTo, and the MessageID. I did something like this:
    EndpointReferenceType replyTo = new EndpointReferenceType();
    // callback service running on local machine
    // This URI class is the java.net's version
    URI replyToURI = new URI("http://vaccinatie:8988/syncro-callback-context-root/stringconcatCallbackBindingPort");
    // This AttributedURI is the org.xmlsoap.schemas.ws._2003._03.addressing's version
    AttributedURI address = new AttributedURI();
    // the only public methos that made sense to me:
    address.set_value(replyToURI);
    replyTo.setAddress(address);
    // call the BPEL process
    myPort.initiate("test123", replyTo, address);
    But the above doesn't work (largely because I don't know what I'm doing here prob.:-) ) It does send the "test123" message, and the BPEL process does process it, but I don't seem to get the callback right.
    I hope this makes my problems somewhat clearer. I hope someone can help me, because I'm just a beginner in this whole "web service area" and seems to do something terribly wrong here, because it should be very simple. Thx.

  • How to get notified about new post created for Oracle istore

    I want be active part of post created in iStore or EBS. How can I get immediately get notified (email) about new post created in iStore or EBS (OTN Forum)?
    Currently I get immediate email about post that I am watching ie post I created or if someone reply to it.
    Appreicate.

    Thanks for your reply Hussein,
    I could not see any Watch Forum link on following url-
    iStore
    Just to repeat, I want to get notification for any new thread posted on iStore OTN forums, so that I can reply immediately.

  • How to get material's last posting date of issuing to production order?

    Hi,
    In my scenario, I need to get material's last posting date of issuing to production order (e.g. mov. typ. 261).
    I tried to select the material documents whose movement type is 261, and restrict the posting date from month to month each time, until the first material document is selected.
    But this method seems quite inefficient.
    What kind of algorithm is more effient to do this?
    Thanks
    Wesley

    Hi,
    select max( budat )
      from mkpf
      into gv_budat
      where mblnr in ( select mblnr
                         from aufm
                        where aufnr = gv_aufnr "(Prod. Order)
                            and  matnr = gv_matnr "(Issued Material)
                            and bwart = '261' ).
    Edited by: Azeem Ahmed Matte on Mar 12, 2010 12:33 PM

  • How to get notification of new post  for any discussion topic

    hi,
    i ve started a discussion in portal and i want to get notification for any new post to that discussion topic in my uwl....can anybody help me
    thanks in advance
    Message was edited by: Amit Pandey

    Have a look at this:
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/b03a381dc88d49b1f509cde90a27d1/frameset.htm
    This should help solve it!

  • How to get response from financial department

    How do I get someone in financial to review an account that has bad information in it ? Someone at Verizon has mistakenly used ACH (Bank) information and entered it as debit card information. When they tried to post to it, of course it failed. As a result I am now on COD cash only for the duration of my contract. No person in their financial division or in the regular customer service can seem to correct this. Any suggestions ?

    Update - I began a complaint with the BBB.
    I also called Verizon again as suggested, and asked for a supervisor again after explaining the situation. For the first time I spoke with someone who not only understood the problem but fixed it by changing the status of my account from cash only to auto payment.
    I received a call from an 'Executive correspondent' at Verizon regarding my complaint to the BBB. I related the entire story to her, after which she apologized and assured me she would look into why the original person I spoke with in financial services was unwilling to help, and that the assistant manager at the local store was unable to get help either. I implied that their customer service left a lot to be desired in its present form and, I agreed with her that some investigating needed to be done.
    I also asked why Verizon was unable to verify billing information before the actual transaction, as is done by many other corporations - Paypal being one. They will do a small (between .01 and .15) transfer then transfer it back. She informed me that Verizon had made a corporate decision not to do this as it would 'confuse' their customers. I disagree - their current system puts the entire responsibility for any errors on their customer. She confirmed that I had provided the correct information initially and had no explanation for how things turned out as they did.

  • Repair Depot won't finish and return my computer- can someone tell me how to get response?

    Repair depot received my G560 laptop on 12/2 after I talked to tech support who assured me it was a 7 day turn around in the repair depot.  So, I figured with shipping both ways, I should not be without it for more than 11 days.
    On 12/5 they posted an update that they were waiting for parts.  That is the last update online.  I called 12/7 and was told the motherboard was replaced and they were testing the system.  I called 12/9 and told the same thing.  I asked how long they will be testing the system since it took 5 months for it to happen to me.  I just got the canned apologies and assurances.  But, this guy said maybe 3-5 more business days. 
    I called 12/14 (yesterday) and told the exact same update.  She assured me she would email the depot and get an update and call me back.  Of course by evening she had not called.  So, I called again.  This guy told me the update put in their system (still nothing changed online) earlier that day was they were waiting for parts.  So, on 12/5 it was repaired and on 12/14 they are waiting for parts.  CRAZY!!  I explained to him I was going out of town next week and needed it back before then.  He assured me I would have it back before I leave.  How can can make that assurance is beyond me since they are waiting for parts (that they should keep a large supply of since this seems to be a common problem) and he has no idea when the parts will be in.  I told him it was going to be a big problem having it sit in the snow for 2 weeks and he again assured me it will be in my hands before I leave.  Of course, he never asked what day that would be. 
    So, tomorrow will be 14 days since they received it and I was told by tech support it was a 7 day turn around. 
    Has anyone found a phone number of someone with Lenovo who actually can help me rather than the regular "I'm sorry, ma'am, that you are having this problem"  and  "I assure you ..." employees?  In all my years of laptop use, this is the first time I have had problems with one prior to 3 years of use and even then, it's minor.  Funny how I was told Lenovo was a good brand, but the cheap plastic they are made of should have clued me in.
    Please share any successful tips you may have.

    @vgeorge,
    Appreciate if you can drop me a private message with the following information so I can get a customer relations person to follow up on your case.
    Name:
    Mobile:
    Email:
    MTM:
    S/N:
    Date of Purchase:
    Case ID:
    //JameZ
    Check out the Community Knowledge Base for hints and tips.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    X240 | 8GB RAM | 512GB Samsung SSD

  • How to get response of an Async Service in XI

    Hi all,
    I have a scenario where i am invoking an async webservice. I need to get the response of the webservice in the R/3 through XI. Can any body please suggest how to do that?
    Just to share more info, The web service writes its response into a particular port. So if i need to listen to that port, how can i do that?
    Thanks and best regards,
    Kulwant Singh

    Hi, On R/3 side you need to use Proxy or RFC/ BAPI.
    For Proxy configuration refer
    ABAP Proxy Runtime
    http://help.sap.com/saphelp_nw04s/helpdata/en/02/265c3cf311070ae10000000a114084/frameset.htm
    Setting Up Point-to-Point Connections with proxy
    http://help.sap.com/saphelp_nw04s/helpdata/en/85/78af1bf407434796aaf8dbd6d4e7b7/frameset.htm
    Reliable Messaging – EOIO in ABAP Proxies
    /people/arulraja.ma/blog/2006/08/18/xi-reliable-messaging-150-eoio-in-abap-proxies
    /people/stefan.grube/blog/2006/07/28/xi-debug-your-inbound-abap-proxy-implementation
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3dfac358-0d01-0010-5598-d4900e81a30c
    RFC/BAPI Communication
    http://help.sap.com/saphelp_nw04/helpdata/en/67/6d0540ba5ee569e10000000a155106/content.htm
    Configuring the Sender RFC Adapter - step by step
    /people/michal.krawczyk2/blog/2005/03/29/configuring-the-sender-rfc-adapter--step-by-step
    sap to webservice
    /people/siva.maranani/blog/2005/05/23/communication-between-sap-system-webservice-using-proxies
    Thanks
    Swarup

  • How to get responsibility in iProcurement (11.5.9) - OAF 5.6

    Hi, We have a requirement to disable some of the fields based on the responsibility. How do I do that in iProcurement (11.5.9) which is based on OAF 5.6. In this release of iProc, UI templates are defined in .xml format which is self service framework
    Example for a field:
    <POR_USSGL_TC ifFlag = "true" lov = "true">
    <if field = "POR_USSGL_TRANSACTION_CODE_ENABLED_FLAG" value = "n" itemStyle = "off" />
    </POR_USSGL_TC>
    This is how the field definition looks like in the xml file. We can give a condition based on which we can turn off any field.
    Please let me know how to solve this issue. Thanks.

    Ram Kumar/Tapash, any resolution for this issue. Thanks.

  • How to get response from a servlet which depends on cookies?

    guys,
    i have a servlet which behaves differently based on the presence of a cookie or not. If cookie A is present in the machine it shows the the home page and if not it shows the login page.
    now i want to get the home page HTML content from a program without using the browser. i am aware this can be done by using java.net.URL but how do i simulate the cookie given that i know that's the cookie name and value it expects?
    Unfortunately i cannot paste the servlet code as it is a servlet of a product and i don't have the source code for it.
    Thanks
    S

    I believe you use URLConnection.setRequestProperty(), with the key being "Cookie".

  • How to get response from ActionableEmail

    Hi Helping hands,
    I have created HumanTask which is able to send actionable emails with links like (APPROVE,REJECT) & worklist application.
    If I act on the task through worklist I'm getting the response to my BPEL process.
    If I do the same by clicking the APPROVE link in the email, it opens a new email window without TO address but it contains subject and body as
    NID:iBeS8jSTsA7vOx+ULF3+dJ7/e1fbklcDLkGHlkj38emd71NnzMgQMN89C0RxaPzu2PPgelhp+hvQAhRwUYMWJw==:NID
    Comments [[ ]]
    I want to get the response of the task action in the BPEL process.
    Looking forward for your help.
    Regards
    VIki

    Hi,
    You need to declare the ODGOVOR variable in the TOP include, then you will get the value
    Regards
    Sudheer

Maybe you are looking for

  • Reg check boxes in ALV report

    Hi All, I am displaying check boxes in my ALV report.I want to capture what all are the values that has been selected in the basic list ALV accordingly I want to write the code for the secondary ALV list .Could you please suggest somebody how to capt

  • ITunes refresh database (updating songs tags)

    I've been looking for a solution for ages!! I have almost 100 000 songs, and I like it clean! So I often spend hours cleaning tags, making sure everything is perfect (Artist, Album, Year, Categories). I don't want to use the iTunes auto managing thin

  • Garageband has detected a midi timeout

    Garageband takes a long, long time to open and then when it does, I get this error message about midi timeout.  Garageband eventually does open, but it says that there are no Apple loops installed.  What's going on?

  • DBIF_REPO_SQL_ERROR dump while executing the queries

    Hi Friends, Iam in a big mess . I have one query based on one my Zinfocube.This query ia attached in the workbook .. Previuolsy all was fine , but now whever iam executing this query it is throwing me the exception Query 0: Runtime error SQL error 31

  • LabVIEW 7.0 utilize the real-time functions in Window 2000 Real-time.

    Can an application written with LabVIEW 7.0 utilize the real-time functions in Window 2000 Real-time.