Variable coming from a session attribute

Hello, I am developing a web application with JDeveloper 10g
I've got a View Object which is basically a query, where I use a variable:
WHERE BbCustomerOrderStatusTab.CUSTNO = :CustomerNumber
When I define CustomerNumber in a form, it works:
<af:panelForm>
<af:inputText value="#{bindings.CustomerNumber.inputValue}"
label="#{bindings.CustomerNumber.label}"
required="#{bindings.CustomerNumber.mandatory}"
columns="#{bindings.CustomerNumber.displayWidth}">
<af:validator binding="#{bindings.CustomerNumber.validator}"/>
</af:inputText>
<af:commandButton actionListener="#{bindings.ExecuteWithParams.execute}"
text="ExecuteWithParams"
disabled="#{!bindings.ExecuteWithParams.enabled}"/>
</af:panelForm>
But I would like CustomerNumber to come from a session attribute. I tried something like that:
session.setAttribute("CustomNum","IRI0001");
setCustomerNumber(session.getAttribute("CustomNum"));
with the View Object Editor -> Client Interface setCustomerNumber selected, but it doesn't work.
I tried :
String CustNum=session.getAttribute("CustomNum");
%>
<af:attribute name="#{bindings.CustomerNumber}"
value="<%= CustNum%>"/>
but it tells me that "Attribute value does not accept runtime expressions".
Does someone know how I could do that?
Thanks,
Romain

Hi,
Frank's suggestion should work.
Most importantly, don't forget to declare your bind variable in your view object !!
Your statement looks odd to me
String CustNum=session.getAttribute("CustomNum");
%>
<af:attribute name="#{bindings.CustomerNumber}"
value="<%= CustNum%>"/>
There are many ways to do it. You may try using backing bean for command button's actionlistener or action like the following
class myBackingBean
private String CustNum; //of course with getter and setter method
myButtonAction() {
CustNum = yourFavouriteValue;
OperationBinding ob = getBindings().getOperationBinding("ExecuteWithParams"};
ob.execute();
note you must declare CustomValue in your pageDef's binding to #{yourBackBeanClass.CustNum} in your ExecuteWithParams binding
I don't know and seems not being recommended to set session value in jspx.
Another way is inside your command button in the jspx
<af:setActionListener from="#{somesource.value}"
to="#{processScope.CustNum}"/>
in such case, you must declare CustomValue in your pageDef's binding to #{processScope.CustNum} in your ExecuteWithParams binding
If you have already set session value somewhere beforehand, then what you need to do is simply declare CustomValue in your pageDef's binding to #{sessionScope.CustNum} in your ExecuteWithParams binding.
I did lot of ExecuteWithParams thing and no problems occur so far.

Similar Messages

  • Guestname coming from session, not from parameter, and it's URL-encoded. Need it decoded.

    We have a hosted account for Adobe Connect. When users want to enter a room, they go to a URL like this:
    http://connectpro12345678.na5.acrobat.com/rereview/?launcher=false&guestName=John%20Smith
    This drops them into the meeting room, but the name is listed under Participants as
    John%20Smith
    rather than the desired John Smith.
    I've determined that the URL-encoded name is coming from the session, because when I deleted the BREEZESESSION cookie and hit the meeting room directly, using a URL like:
    https://connectpro12345678.adobeconnect.com/_a963369417/rereview/?launcher=false&guestName =Michael%20Van%20Kleeck
    the guest name is displayed appropriately.
    How can I force Connect to either decode the guestname or to use the guestname from the parameter, rather than the session?
    Thanks!
    -Michael

    You shouldn't be using the naX.acrobat.com URLs. These URLs are redirecting to the new adobeconnect.com URLs, which may be where you are seeing the issues. You shouldn't need to use your account ID (_a963369417) so your links should look like: http://connectpro12345678.adobeconnect.com/review/?launcher=false&guestName=John%20Smith

  • How to deploy a VO Bind variable to get value from user session....

    Hello everbody...
    A JSF Page has a table based on VO with two parameters. One of this parameters I will pass by operation ExecuteWithParams.
    but the other parameter I need to pass a value from User session.
    Is that possible? How would I do that? I´m using jdev10.1.3
    Thankyou...

    When you created a binding for executeWithParams in your pageDef, the action binding should have had NamedData elements for each of the parameters. These would have been assigned values from a variableIterator up in the executables section. The parameter that gets its value from user input should be left alone. For the parameter that gets its value from the user session, change the EL expression that defines its NDValue attribute so that it references the session information that you want to use. This can be a sessionScope variable that you set earlier in the session, as Frank suggests, a property of a managed bean in session scope, or some other variable.

  • How to get from data entered on a form to a session attribute

    I have a jsp with a form with fields that are updated by the user.
    The values are in the fields value as I expected.
    Example. document.frm.Name.value = "Me"
    How do I populate a session variable with document.frm.Name.value?
    I think I have to do a request.getParameter("Name") followed by a
    session.SetAttribute. But the request.getParameter does not get populated with the latest value in document.frm.Name.value.
    Any idea is welcomed. Thanks
    Claudiine

    Below is the code:
    What I want to do is save in the session attribute "mailToAddressList" whatever the user types in the textarea "MailTo"
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    import java.sql.*;
    import java.text.*;
    import java.io.*;
    import com.cname.apl.*;
    public class DealTeamServlet extends HttpServlet {
    private appUtil util ;
    private java.sql.Connection conn ;
    private static String dbUrl ;
    private static String dbUid ;
    private static String dbPwd ;
    private static String mailFromAddressList ;
    private static String mailToAddressList ;
    private static String mailCcAddressList ;
    private static String mailBccAddressList ;
    private static String mailSubject ;
    SimpleDateFormat SDF = new SimpleDateFormat("d-MMM-yyyy");
    public void init(ServletConfig config) throws ServletException {
    super.init(config);
    dbUrl = config.getInitParameter("dbUrl");
    dbUid = config.getInitParameter("dbUid");
    dbPwd = config.getInitParameter("dbPwd");
    mailFromAddressList = config.getInitParameter("mailFromAddressList");
    mailToAddressList = config.getInitParameter("mailToAddressList");
    mailCcAddressList = config.getInitParameter("mailCcAddressList");
    mailBccAddressList = config.getInitParameter("mailBccAddressList");
    mailSubject = config.getInitParameter("mailSubject");
    if (dbUrl == null)
    dbUrl = "*" ;
    if (dbUid == null)
    dbUid = "*" ;
    if (dbPwd == null)
    dbPwd = "*" ;
    if (mailFromAddressList == null || mailFromAddressList.equals("*"))
    mailFromAddressList = "" ;
    if (mailToAddressList == null || mailToAddressList.equals("*"))
    mailToAddressList = "" ;
    if (mailCcAddressList == null || mailCcAddressList.equals("*"))
    mailCcAddressList = "" ;
    if (mailBccAddressList == null || mailBccAddressList.equals("*"))
    mailBccAddressList = "" ;
    if (mailSubject == null || mailSubject.equals("*"))
    mailSubject = "" ;
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, java.io.IOException {
    HttpSession session = request.getSession(true) ;
    String msgBody = (String) request.getParameter("msgBody");
    String uid = (String) request.getParameter("uid");
    String key = (String) request.getParameter("key");
    Boolean isAuthorized = (Boolean) session.getAttribute("isAuthorized");
    java.io.PrintWriter out = response.getWriter();
    if (msgBody == null) msgBody = "" ;
    response.setContentType("text/html");
    if (uid == null || key == null) {
    isAuthorized = new Boolean(false);
    if ( isAuthorized == null ) {
    util = new appUtil();
    conn = util.getConnection(dbUrl, dbUid, dbPwd) ;
    isAuthorized = util.isAuthorized(conn, uid, key);
    util.closeConnection(conn) ;
    if ( isAuthorized.booleanValue() ) {
    session.setAttribute("isAuthorized", new Boolean(true));
    java.sql.Timestamp serverTime = util.getServerTime(conn) ;
    java.sql.Date now = new java.sql.Date(serverTime.getTime());
    int idEntry = Integer.parseInt(msgBody);
    mailToAddressList = request.getParameter("MailTo");
    out.println("<html>");
    out.println("<head>");
    out.println("<title>Team Members</title>");
    out.println("<SCRIPT LANGUAGE=JavaScript>");
    out.println("function open_window() {");
    out.println("document.domain = \"ny.cname.com\"");
    out.println("var loc = \"http://peoplelkp.ny.cname.com/peoplelkp/PDLookupService?&emil2=eMail&form=frm&launch=myRoutine()&csr=1&srch=1&adv=1&wc=y&pump=\"");
    out.println("loc = loc + document.frm.Name.value");
    out.println("var w = window.open(loc,\"Model_Details\",\"scrollbars,width=400,height=450,resizable=yes\")");
    out.println("return;");
    out.println("}");
    out.println("function myRoutine() {");
    out.println("document.frm.MailTo.value=document.frm.MailTo.value+\",\"+document.frm.eMail.value;");
    out.println("}");
    out.println("function submitForm() {");
    out.println("alert('submit form')");
    out.println("var mailAdd = document.frm.MailTo.value");
    out.println("alert('mailAdd='+mailAdd);");
    out.println("if ( mailAdd.length == 0 || mailAdd.indexOf(' ') == 0 || mailAdd.indexOf('.com') == -1 || mailAdd.indexOf('@') == -1 ) {" );
    out.println("alert('The To: field must be populated. No space are allowed. Email addresses must have valid format. Example: [email protected]')");
    out.println("document.all.frm.MailTo.focus();");
    out.println("return false;");
    out.println("}");
    out.println("return true;");
    out.println("}");
    out.println("function UpdateMailTo() {");
    out.println("alert ('I am in UpdateMailTo='+document.frm.MailTo.value);");
    out.println("}");
    out.println("</SCRIPT>");
    out.println(util.getStyleSheet());
    out.println("</head>");
    out.println("<body bgcolor='silver'>");
    out.println("<form name='frm' action='SendMail' method='post'>");
    out.println("<b>Team Members</b>");
    out.println("<tr>");
    out.println("<TABLE cellpadding='0' cellspacing='0' border='0'>");
    out.println("<tr>");
    out.println("<td align='right'><b>Subject:  </b></td>");
    out.println("<td>Deal Team Members Cleared by Conflicts</td>");
    out.println("</tr><br>");
    StringBuffer bod = new StringBuffer("");
    SimpleDateFormat SDF = new SimpleDateFormat("d-MMM-yyyy");
    try {
    /*get header information*/
    CallableStatement st = conn.prepareCall("{call apl_get_sp ?}");
    st.setInt(1, idEntry);
    ResultSet rs = st.executeQuery();
    int id = 0;
    int dw = 0;
    String cde_proj = "";
    String nm_title = "";
    String nm_long = "";
    String empl = "";
    String sid = "";
    int userid = 0;
    String email_pr = "";
    while ( rs.next() ) {
    id = rs.getInt("id_entry");
    dw = rs.getInt("id_dealworks");
    cde_proj = rs.getString("cde_proj");
    nm_title = rs.getString("nm_title");
    nm_long = rs.getString("nm_long");
    empl = rs.getString("empl_name");
    sid = rs.getString("id_standard");
    email_pr = rs.getString("id_email_ext_unix");
    mailToAddressList = email_pr.trim();
    out.println("<tr><td align='right'><b>To:  </b></td>");
    out.println("<td><textarea name='MailTo' cols='50' rows='2'>"+mailToAddressList+ "</textarea></td>");
    out.println("<td>  </td>");
    out.println("<td><input type='button' value='Save' onClick='UpdateMailTo()'></td>");
    out.println("</tr>");
    // out.println("request.setAttribute('mailadd',document.frm.MailTo.value);");
    // mailToAddressList = request.getParameter("mailadd");
    out.println("<tr><td align='right'><b>Name:  </b></td>");
    out.println("<td><INPUT NAME='Name' VALUE='' size=65 ></td>");
    out.println("<td>  </td>");
    out.println("<td><input type='button' value='Search' onClick='open_window()'></td>");
    out.println("</tr>");
    out.println("<tr><td align='right'><b>EMail:  </b></td>");
    out.println("<td><INPUT NAME='eMail' VALUE='' size=65'></td>");
    out.println("</tr>");
    if (rslt != null) rslt.close() ;
    if (stmt != null) stmt.close() ;
    }/*end try*/
    catch ( Exception e) {
    System.out.println(e) ;
    getServletContext().log(e.toString());
    out.println("<td colspan='5' align='right'><input type='submit' value='Send email' onClick='submitForm()'></td>");
    out.println("</tr>");
    out.println("</table>");
    out.println("</form>");
    out.println("</body>");
    out.println("</html>");
    mailSubject = "Team Members";
    String body = "testing";
    session.setAttribute("mailFromAddressList", mailFromAddressList);
    session.setAttribute("mailToAddressList", mailToAddressList);
    session.setAttribute("mailCcAddressList", mailCcAddressList);
    session.setAttribute("mailBccAddressList", mailBccAddressList);
    session.setAttribute("mailSubject", mailSubject);
    session.setAttribute("mailBody", body);
    else {
    session.setAttribute("isAuthorized", new Boolean(false));
    out.println("You are not authorized.");
    //out.close();
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, java.io.IOException {
    processRequest(request, response);
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, java.io.IOException {
    processRequest(request, response);
    public String getServletInfo() {
    return "Short description";
    }

  • READ UNCOMPLETE DATE FROM SESSION ATTRIBUTE

    i have servlet read from DB and set result at vector and put it in session attribute to jsp that read it and print it
    but this view does takes 10 sec on my computer
    and on hosting server
    it shows date un complete what is do you thing it wrong

    i have servlet read from DB and set result at
    vector Vectors are normally discouraged because they're Synchronized.
    Why don't you read the ResultSet in an ArrayList Collection instead?
    and put it in session attribute to jsp that
    read it and print itInstead of putting the ArrayList of results (or in your case Vector) into the Session, you could store it in the HttpRequest attribute instead.
    HttpRequest attribute has an advantage over HttpSessions
    1) The Request Attribute is available through the scope of the Request
    But the session attribute can expire at any time. The session attribute will not work if the page gets cached by the browser.
    but this view does takes 10 sec on my computer
    and on hosting server If it is taking that long you may want to optimize your JDBC code.
    1) Use Connection Pooling
    2) Prepared Statements
    3) RowSet
    4) Check the SELECT statement
    it shows date un complete what is do you thing it
    wrongHard to say without looking at the code.

  • Events or attributes triggered by data coming from a data file

    Without using scripts, is there any way to have rectangles or textboxes act on values coming from a data file? If not, does anyone know or have some scripting suggestions to do that. For examplle if the value in a textbox was greater than 10 coming from a data record, could the textbox change color, or any other attribute to make it change from record to recortd as it is being viewed or printed?
    Thanks

    That is how I solve your question.
    I use a formula in Excel:
    I import the result in ID, not Column A, but B (result of the calculation):
    And I modify the paragraph style like this:
    It is easy and fast to do. 

  • Transient attribute for a view object coming from a socket

    Hello,
    I'd like to create a readonly table (based on a view object without a backing entity).
    Some columns are coming from a table and some other columns (based on the table key) are coming from a socket.
    The problems is that the additional columns are all returned at once by the socket (to avoid calling it for every field and killing our network) and then stored in a java bean.
    So i'd like to make the call to the socket once for every row of the table.
    Do you know in which method of the View object should i make the call (maybe I should do this at the Row level ?)
    Do you have any idea ?
    thank you
    -regards.

    Hi,
    you can try the follwing
    In the bindings of your jspx page you can see iterators defined under "executables". set the "*CacheResults*" property of the specific view object iterator that contains the transient attribute to false.(The default value is true).
    Example:
    <iterator Binds="EditWorkflowNodesView1" RangeSize="25"
    DataControl="AdministratorAppModuleDataControl"
    id="EditWorkflowNodesView1Iterator" CacheResults="false"/>
    Regards,
    Priya.

  • Session attribute is lost while going from one action to other action

    Hi All
    I am working on struts application. The problem that I am facing is my session attribute is losing. I am doing following steps.
    1. Setting some values in ActionForm (note this action form is in session scope for each action using it) from homepage.
    2. then submit the form and go to searchation.
    3. perform some task and set some values on actionform.
    4. click a link and get back to homepage using homeaction.
    5.change on value on homepage and again perform step -1.
    till step 4 value is retained fine but as soon as we perform 5th step the values got lost.
    please if anyone can expalin why is this happening ( I am using get method on homepage.jsp)

    Hey if someone can help me

  • How to get Multiple Values for a key from a session object?

    Hi,
    It might seem dumb but I am facing a problem here with the session object. I'll paste the session object's content from the netbeans "Local Variables" window for clarity -
    Name Type Value
    hsession StandardSessionFacade #66
    session LWSFSession #69
    inherited
    attributes Hashtable #80
    [0] Hashtable$Entry "cart"=>#115
    key String "cart"
    value DummyCart #115
    item null
    submit null
    v Vector
    [0] String Full Metal Jacket
    [1] String As Good As It Gets
    [2] String Tim
    What I want is to get the values "Full Metal Jacket", "As Good As It Gets" and "Tim" from the session obejct?
    The problem I am facing is that if I do a session.getAttribute("cart"), I'll get a single value in return. What will that value be? Will it be "item", "submit" or "v"? And if I want all the values in v above, how can I get them?
    Thanks.

    None of the above.
    HttpSession.getAttribute() will return what you put into it using HttpSession.setAttribute(). In your case, it'll return an Object which you need to cast to DummyCart. Then you can access the data in DummyCart using the API of the DummyCart class.
    hth

  • How to set session attributes in a bean?

    How do I set a session attribute in a server-side bean?
    I'm not sure if I asked the question the right way. What I meant is, while it's easy to set session attributes in a JSP page (session.setAttribute("sessionname", "sessionvalue")), I'd want to set such an attribute within a server-side bean defined in this web application. But what is the syntax for doing it?

    Here a simple bean that stores something in the session and retrieves something from it.
    import javax.servlet.http.HttpSession;
    public class TestBean {
      private String value;
      public void doSomething(HttpSession session, int a, int b) {
        if (a+b > 0) {
          session.setAttribute("ab",Boolean.TRUE);
        } else {
          session.setAttribute("ab",Boolean.FALSE);
      public void init(HttpSession session) {
        if (session != null) {
          Boolean b = (Boolean)session.getAttribute("ab");
          if (b == Boolean.TRUE) {
            value = "a + b is greater than zero";
          } else {
            value = "a + b is not greater than zero";
        } else {
          value = "no session";
      public String getValue() {
        return value;
    }In your JSP, use something along the lines of :
    <%
      TestBean bean = new TestBean();
      bean.init(session);
      bean.doSomething(session,1,2);
    %>If your bean only lives during one request, you can pass the session to the constructor, which stores it in a private variable. This saves passing the session each time.
    Hope this helps,
    --Arnout                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Fetch Value from Client Session

    Hi,
    I have a requirement where Vendor code is getting set in the session from a Hidden iView on Portal. Now, my Web Dynpro application has to extract the vendor code value present in the session. I have read few threads and tried by using different code :
    1)    HttpSession session = ((IWebContextAdapter)WDWebContextAdapter.getWebContextAdapter()).getHttpServletRequest().getSession();
    String abc = (String)session.getAttribute("VendorCode");
    2) IWDProtocolAdapter protocolAdapter = WDProtocolAdapter.getProtocolAdapter();
    IWDRequest request = protocolAdapter.getRequestObject();
    String paramValue = request.getParameter("VendorCode");
    3) WDScopeUtil.get(WDScopeType.CLIENTSESSION_SCOPE,"VendorCode")
    None of the code seems to work. All return a null value. Is there any way I can check when the Session contains the attribute Vendor Code itself or how I can get the Value.
    Can I fetch the same by creating a custom portal development where in I can have the Web Dynpro application running in an iView or is there any other way to extract the session attribute itself?
    Please reply,
    Points will be awarded.

    Hello,
    I too have the same problem.
    I am using this query:
    select manager from leave_mgmt where support_engg=:APP_USER
    and source type is SQL Query(return single value)
    but nothing is coming up in the text field. Its empty.
    Please advice. Thanks in advance.

  • Session attribute between JVMs

    Hi,
    I have a JSP try to send two session attribute from one JSP to another. The target JSP is in different WEB server (JVM). How can I do so that target JSP can use "session.getAttribute" to get the attribute?
    1. Cann't use any JAVA Script in JSP.
    2. Conn't show or send hidden because I don't want let user see the value of the variable.
    Thanks
    Kenny

    SEND IT VIA HIDDEN BUT INSTEAD OF USING GET METHOD USE POST TO ADDRESS YR SECURITY CONCERNS

  • Getting a session-attribute

    Hi
    I have managed to store a session-attribute containing user-info:
         HttpSession session = request.getSession();
         session.setAttribute(Constants.USER_KEY, user);
    when the current user gets to the mainmenu I want to show different content depending the users authority, problem :
    How do I in my menubean (extending org.apache.struts.action.ActionForm)
    retrieve this users sessionvalues ?
    I can get the servlet but I can't figure out how to get hold of the session
    thanks in advance

    Hi,
    Set you session variable like this and put it in a session for you to read it at a later stage:
    HttpSession session = request.getSession();
    session.setAttribute("USER_KEY", user);
    Read it from you jsp/servlet/bean like:
    HttpSession session = request.getSession();
    String usr_key = (String)session.getAttribute("USER_KEY");
    HTH

  • Prefer hidden field instead of session attribute

    In my application we have around 17 jsp for getting information
    from the user.
    Also we have around 65 jsp for user navigation
    This 17 jsp has average 19 html components like textbox,
    select etc
    To maintain user entered data we prefer hidden field than
    session attribute.
    Number of user: 1, 00,000
    Server: WebSphere Application Server v6.1
    Framework: struts 1
    For every new module in our project we add corresponding
    variable in all the forms and there jsp to maintain the user entered data.
    I know that this is an extra work and changing the other module
    code just to retain the user information is not a good design.
    But we believe that putting the struts form in session will
    lead to memory out for 1, 00,000 user
    Please guide me is this approach right or wrong?
    Edited by: WorldOfJava on Jul 17, 2009 6:48 AM

    Hi WorldOfJava,
    IMO, it is not a good practice to hide data in forms and to transport them from page to page. It's growing uselessly the size of HTML documents. Also, the servlet which has to treat the user's request will have each time to extract the hidden data in order to fire them to the next servlet.
    Just imagine you have to build a web site like Amazon where people can buy products on line, your solution means that the content of the client's basket will be hidden in each page displayed in the client's browser !
    The better solution is to use a bean where data may be stored for each session. All you have to do, it's to build a Map that contains the session id (obtained via the getId() method of the [*HttpSession*|http://java.sun.com/products/servlet/2.2/javadoc/javax/servlet/http/HttpSession.html] interface) as a key and the bean as a value. The advantage of such system is when you want to add new modules with new data in your application, you have only to add new instance variables and their getters/setters to the bean.

  • Getting http session attributes

    Hello,
    Perhaps the question here may sound stupid, but I have real problem with that:
    Is it possible to obtain http session attributes from the client side
    (and even worse) in other languages like VB or VC++? What i mean is that after creating Http session by servlet, and setting some attributes, is it possible to get them by VC or VB app? Thanks in advance :)

    What i mean is that after creating Http session by servlet, and >setting some attributes, is it possible to get them by VC or VB app? >Thanks in advance :) What do you mean by "VC or VB app" ?
    A desktop app written in VC or VB ? a web app in VBscript/ASP ? (but as far as I know there is no web language based on VC, unless you're talking about executable CGIs that can be written in any language).
    Assuming that you talk about VB-ASP, I don't think it possible "out of the box" to retrieve session variables created by a servlet in an ASP page.
    That would be possible if HTTP supported sessions.
    Sessions are implemented at the application level on top of HTTP; they reside in the application that handles requests. Outside it, they don't exist.
    It doesn't mean that you can't do that, but that you have to do that using HTTP constructs like URL rewriting or form submission.
    For example you could set session variables in a JSP page, and then forward the request to an ASP page through a GET request with all session variables written in the URL.

Maybe you are looking for

  • Firefox will only open websites via url link, does not even attempt to connect through the address bar.

    I can only open Firefox websites by using a url link. If I try to type something in the address bar it will not even attempt to load the page, no loading circle, no error or no connection message. I'm at youtube.com and I type in google.com and slap

  • Probably a stupid question but ....

    I applied 10.6.5 from Software Update. All seems fine. It seems many prefer to apply the combo update. Is there any reason for me to reapply 10.6.5 from the combo package?

  • Asset posting in F-90

    < MODERATOR:  Message locked.  Please post this message in the [Asset Accounting forum|SAP ERP Financials  - Asset Accounting;. > Hi, Iam getting an error during the time of (AUC)asset posting in F-90.I have mentioned the error below Error :(Asset 90

  • Hyperlinks in Interactive ADOBE Forms

    Dear experts, I have a scenario of INTERACTIVE ADOBE FORM in ABAP WEBDYNPRO wherein Attachments have to be stored for a given form and these forms would be archived in a shared folder after a complete workflow lifecycle . Initially, we implemented th

  • Will Portal 4.0 SP1 run on WLS6.1 SP3?

    Currently we are running Portal SP1 on WLS6.1 SP2. Since we have customized some of the framework code, it appears the SP2 may not be extremely simple, but that the upgrade to SP3 for server should be simple. Just curious if it is supported.