Page through Records in JSP (URGENT)

Hello Friends,
If anyone can solve my problem, I am creating a sales report based on region. Now, here I have used paging for more records. The problem is:
Say on Page 1 I have some calculation and the total of that page is 4000
On Page 2 the total calculation of the page is 8000 and so on..........
Now on the last page I want the grand total of all the pages.
Can anyone let me know how to do this..........................Note: I am doing dynamic paging, i.e The query to fetch the record is executed page wize in the sense, for every page.

I can give you a vague idea on this issue:
Before i give my idea,i assume that when you are calling the next page or next button you are submitting the form, and in the form action you are calling the second jsp page.
For example: Assume that i have 10 jsp pages to display
i have 2 buttons called next and previous.
now for every button click i do like this:
if page 1 's next button is clicked then i will submit page1 and in the action of page 1 i will call page2.
I hope you understood till now.
And in the page2 jsp i will call whatever classes or do what ever i want to display page2.This is done in the scriplets in the beginning.
I assume that you are doing in this way.If this is the case, then ur problem can be solved like this.
For every page i will have 2 hidden variables called dbPageTotal,dbTotal.
so let us see the senario:
page1 : dbPageTotal=2000
dbTotal=2000
page2: dbPageTotal=4000
dbTotal=4000+2000=6000
page3 : dbpageTotal=1000
dbTotal=6000+1000=7000
(You need to write a little java script to assign the values to the variable)
now suppose we are moving from page 1 to page2 :
you can request that dbTotal with the help: request.getParameter("dbTotal") and you will have yoour value on that page.
you also need to check what type of button he clicked.
i hope u understood my point.
If you are not doing in this way, and calling some servlet each time let me know, i will also think of in this issue.

Similar Messages

  • How to call HTML page through JSP ?

    i want to know Hw to call Automaticly a HTML page through JSP.
    example :-
    have u seen yahoo login wen u put your ID & pass & Clock on login button it will chack ID & pass in the database & if it is correct then It will call A Mail Home Page.
    that's same i want to do.
    i have a jsp page which chacks the userID & Pass & call the first.html page
    but i dont know how to call html page automaticly.
    Any one can help me
    what i think is this
    tell me is it right or not
    suppose i have made a variable
    String add = "first.html"
    after chacking userID & pass
    if(idpass == true)
    add;
    if(idpass == false)
    erre;
    it will work or not pl tell me

    If you do the redirect with javascript, the user cannot resubmit his login when he presses the refresh button. When he does press refresh, he only refreshes the redirect, not the form post that was before it. When he presses back the redirect will also kick him back in stead of going back to the login page. A simple javascript redirect page would look like this:
    <html>
    <body onload="document.location.href='myhtmlpage.htm';">
    </body>
    </html>But that is only if you care about resubmits of course.

  • Click on jsp page Display records on another html page

    Hi All,
    I am new in jsp. I am making discussion forum. I have one jsp page "Post.jsp" I want when I clicked on submit button on jsp page all records display on html page "index.html". Plz. help me.
    Raj

    I have a html page (index.jsp) and a jsp pages (post.jsp) in Post.jsp page three fields: Id, Sub, message and submit button.
    I want when i click on submit button of post.jsp page then store in database and display these records on index.html.

  • Display records in JSP

    I am completely stuck at this point and need urgent help.
    here is what i have done till now:
    i have one jsp page called first.jsp which displays records in RowsetBrowser from View Object A.
    The attributes are ID,name,Location.
    in View Object A i have added a transient attribute to which i have given an expression
    as: ''&#0124; &#0124;ID&#0124; &#0124;'', i want to make the id as a link to the edit page,
    i do not want an additional column to show up as link,hence i am not using addTextUrlColumn method.
    now on clicking on this id,edit.jsp page is called and the parameter p which is the id is passed to
    edit.jsp page.
    The edit.jsp page is based on another View Object B.
    the code is as follows:
    String param=request.getParameter("p");
    oracle.jbo.html.databeans.RowsetNavigator rsn;
    rsn=(oracle.jbo.html.databeans.RowsetNavigator) new oracle.jbo.html.databeans.RowsetNavigator();
    rsn.initialize(application,session,request,response,out,"NTS_NTS_NTSModule.LogPanelView");
    rsn.getRowSet().getViewObject().setWhereClause("ncc_log_id="+param);
    rsn.getRowSet().getViewObject().executeQuery();
    The results of above query is only one record,which is right.
    my job is now to display all the attributes of the above record,in text fields or
    combo boxes.

    Hi Monali,
    If I understand your attribute Number1 (and Number 2) is one string value (varchar2 type, long type etc. in Entity) which include in self more different values (other strings or numbers). Right? You can do this if you parse string with an method which analyse that string and give you all the values in an array. Then you can display all the values just like you display other attributes. Off course between the values within attributes value must exist an sign (;, |, ^ etc.) which separate one value from another.
    Format is:
    SignValue(1)SignValue(2)SignValue(3)SignSignValue(maxData)Sign
    (e. g.)
    Format 1:
    |Ad45gt63e4|34f5t55B4|3d563H6a2|5G67sE3h7||d45fgh5|
    First sign (|) in the string is separator between the values
    Format 2:
    ;Friday;September 07;2001;Baker Street 21b;LONDON;Europe;;JSP;12345678;EJB;
    First sign (;) in the string is separator between the values
    I write one demo application (Parse) which you can see in listing 1: Parse.java (see below). Maybe isnt the best solution for this problem but working :-)(compile and run from java console)
    In your case code maybe look like in listing 2: BrowserBean.java (see below)
    I hope this help you...
    Veso
    Note: Sample code in listing 2 I write from my head (without testing), so maybe has errors.
    Parse.java
    public class Parse {
    public static String CheckValue(String strValue){
    int strEnd;
    char strSign = strValue.charAt(0);
    strEnd = strValue.indexOf(strSign,1);
    strValue = strValue.substring(1, strEnd);
    return strValue;
    public static void main(String[] args) {
    final int maxData = 100;
    int sAllValues;
    String sEmpty = "";
    String[] sAllValuesNumber1 = new String[maxData];
    String sValueNumber1 = ";Friday;September 07;2001;Baker Street 21b;LONDON;Europe;";
    try {
    sAllValues = 0;
    while (sValueNumber1 != null && !sValueNumber1.equalsIgnoreCase(sEmpty) && !sValueNumber1.equalsIgnoreCase(sValueNumber1.substring(0,1))) {
    sAllValues++;
    sAllValuesNumber1[sAllValues-1] = CheckValue(sValueNumber1);
    System.out.println(sAllValuesNumber1[sAllValues-1] + "\n");
    sValueNumber1 = sValueNumber1.substring(sAllValuesNumber1[sAllValues-1].length() + 1);
    } catch(Exception ex) {
    throw new RuntimeException(ex.getMessage());
    BrowserBean.java
    package demobeans;
    import java.io.PrintWriter;
    import java.io.OutputStream;
    import oracle.jbo.*;
    import oracle.jbo.html.databeans.*;
    public class BrowserBean extends oracle.jdeveloper.html.DataWebBeanImpl {
    public static String CheckValue(String strValue){
    int strEnd;
    char strSign = strValue.charAt(0);
    strEnd = strValue.indexOf(strSign,1);
    strValue = strValue.substring(1, strEnd);
    return strValue;
    public void render() throws Exception {
    final int maxData = 100; // number of values for attributes (Number1 or Number2)
    int sAllValues1;
    int sAllValues2;
    String sData = null;
    String sEmpty = "";
    String sQuery = request.getParameter("id");
    String sValueID = null; // if is ID column1 in ViewObject
    String sValueName = null; // if is name column2 in ViewObject
    String sValueNumber1 = null; // if is name column3 in ViewObject
    String sValueNumber2 = null; // if is name column4 in ViewObject
    String[] sAllValuesNumber1 = new String[maxValues];
    String[] sAllValuesNumber2 = new String[maxValues];
    Row[] drows = qView.getAllRowsInRange();
    AttributeDef[] dattrs = getDisplayAttributeDefs();
    for (int rowno = 0; rowno < drows.length; rowno++) {
    for (int j = 0; j < dattrs.length; j++) {
    if (!shouldDisplayAttribute(dattrs[j]))
    continue;
    if (drows[rowno] != null) {
    Object attrObj = drows[rowno].getAttribute(dattrs[j].getIndex());
    if (attrObj != null) {
    sValue = attrObj.toString();
    switch (dattrs[j].getIndex()) {
    case 0 : sValueID = sValue; break;
    case 1 : sValueName = sValue; break;
    case 2 : sValueNumber1 = sValue; break;
    case 3 : sValueNumber2 = sValue; break;
    sAllValues1 = 0;
    while (sValueNumber1 != null && !sValueNumber1.equalsIgnoreCase(sEmpty) && !sValueNumb er1.equalsIgnoreCase(sValueNumber1.substring(0,1))) {
    sAllValues1++;
    sAllValuesNumber1[sAllValues1-1] = CheckValue(sValueNumber1); // put values from Number1 in an array
    sValueNumber1 = sValueNumber1.substring(sAllValuesNumber1[sAllValues1-1].length() + 1);
    sAllValues2 = 0;
    while (sValueNumber2 != null && !sValueNumber2.equalsIgnoreCase(sEmpty) && !sValueNumber2.equalsIgnoreCase(sValueNumber2.substring(0,1))) {
    sAllValues2++;
    sAllValuesNumber2[sAllValues2-1] = CheckValue(sValueNumber2);
    sValueNumber2 = sValueNumber2.substring(sAllValuesNumber2[sAllValues2-1].length() + 1);
    sData = "<!-- html -->Name:" + sValueName + "<!-- html code (table tags or other) -->";
    sData += "<!-- html -->Number1[1]:" + sAllValuesNumber1[0] + " Number1[2]:" + sAllValuesNumber1[1] + ... + " Number2[sAllValues1]:" + sAllValuesNumber1[sAllValues1-1] + "<!-- html code (table tags or other) -->";
    sData += "<!-- html -->Number2[1]:" + sAllValuesNumber2[0] + " Number2[2]:" + sAllValuesNumber2[1] + ... + " Number2[sAllValues2]:" + sAllValuesNumber2[sAllValues2-1] + "<!-- html code (table tags or other) -->";
    out.print("Other HTML code...") // other elements for your look and feel
    out.print(sData);
    out.print("Other HTML code...") // other elements for your look and feel
    releaseApplicationResources();
    null

  • Calling a procedure from an OAF page through a button in the screen

    problem: calling a procedure from an OAF page through a button in the screen

    CREATE OR REPLACE procedure APPS.xx_delete_dept_prc(p_id in number)
    as
    begin
    delete from xx_training_dept_tbl where td_dept_id=p_id;
    commit;
    end;
    2.     create image button for delete
    3.     set the following property to this button:
    action type : fire action
    event :DeleteDept
    parameter :
    name: DEptIdParam value: ${oa.XxTrainingDeptVO1.TdDeptId}
    4.     create Co and writing the following code on process form request
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    String actionInscreen=pageContext.getParameter(EVENT_PARAM);
    if ("deleteDept".equals(actionInscreen))
    String deptidparam=pageContext.getParameter("DeptIdParam");
    Serializable [] s={deptidparam};
    Class [] c={deptidparam.getClass()};
    OAApplicationModule am=pageContext.getApplicationModule(webBean);
    am.invokeMethod("deleteDept",s,c);
    throw new OAException("delete completed",OAException.INFORMATION);
    5.     create AM and writing the following code
    public void deleteDept(String deptid) {
    XxTrainingDeptVOImpl deptview= getXxTrainingDeptVO1();
    deptview.deleteDept(deptid); }
    6.create VO and writing the following code in view object class
    public void deleteDept(String deptid
    System.out.println("Dept ID =" +deptid);
    String s = "call xx_delete_dept_prc(:1)"; // :1 is the number of parameter to pass it to procedure
    CallableStatement cs =trx.createCallableStatement(s,1); // 1 number of record to fetch but delete always delete 1 row
    try
    cs.setString(1,deptid); // the name of the first parameter
    cs.execute();
    cs.close();
    catch (SQLException e)
    e.printStackTrace();
    }

  • Displaying 10 records per page where records are unknown

    I'm new to programming. I'm trying to create a form that does the following in jsp/javascript
    Displays 10 rows, each row containing a record if records exceeds 10, it will display the remaining records on another page.The first form will contain a link to the second form and the second form will contain the link to the first. So basically there could be infinite number of forms containing 10 rows each on each form each displaying a link to the other forms. So each page at the bottom will have something like this <<previous [1][2][3][4][5]next>>.The algorithm seems complicated and I don't know how to generate another page for displaying the extra records. Is this complicated.Can someone please show me how this is done...HELP
    thanx in advance
    legato_bluesummers
    Here is the code I have currently my apologize for the length. this code is called by another page:
    <%@include file="header.jsp"%>
    <%@ page import="java.sql.*" errorPage="error.jsp"%>
    <%
    String connectionURL=
    "jdbc:mysql://localhost:3306/studentdatabase?username=username;passwrod=password";
    Connection connection = null;
    Statement statement=null;
    ResultSet rs=null;
    %>
    <html>
    <head>
    <%@include file="btechreportheader.jsp"%>
    </head>
    <body bgcolor="#efefef" text="#000000" link="#ffcc99">
    <form name="btechreport" method="post" action="deletestudent.jsp">
    <table width="100%" border="1" cellpadding="2" cellspacing="0" height="6">
    <tr bgcolor="#efefef">
    <td width="8%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Date</font></div>
    </td>
    <td width="10%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Student
    ID</font></div>
    </td>
    <td width="11%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Student
    Name</font></div>
    </td>
    <td width="15%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Email
    Address</font></div>
    </td>
    <td width="13%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Course
    Taken</font></div>
    </td>
    <td width="15%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Course
    Uncompleted</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Qualified</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Applied</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Accepted</font></div>
    </td>
    <td width="6%" height="18">
    <div align="center"><font face="Verdana, Arial, Helvetica, sans-serif" size="1">Delete</font></div>
    </td>
    </tr>
    <%
              String separator = "-";
              String sYear = request.getParameter("startYear");
              String sMonth= request.getParameter("startMonth");
              String sDate = request.getParameter("startDate");
              String startTime = sYear+separator+sMonth+separator+sDate;
              String eYear = request.getParameter("endYear");
              String eMonth= request.getParameter("endMonth");
              String eDate= request.getParameter("endDate");
              String endTime = eYear+separator+eMonth+separator+eDate;
         Class.forName("org.gjt.mm.mysql.Driver").newInstance();
         connection = DriverManager.getConnection(connectionURL, "", "");
         statement = connection.createStatement();
         rs=statement.executeQuery("SELECT students.studentid, students.firstname, students.lastname, students.email," +
                                       "btechpre.cisy1212, btechpre.cisy2311, btechpre.cisy2313, btechpre.cisy2314, btechpre.cisy2315," +
                                       "credential.recdate, credential.qualified, credential.accepted, credential.applied FROM students, btechpre, credential " +
    "WHERE students.studentid=credential.studentid AND credential.studentid=btechpre.studentid AND credential.recdate BETWEEN '"+startTime+"' AND '"+endTime+"' ");
         //SELECT DATE_FORMAT(date,'%M %d, %Y') from data
         while(rs.next())
              String cisy1212=rs.getString("cisy1212");
              String cisy2311=rs.getString("cisy2311");
              String cisy2313=rs.getString("cisy2313");
              String cisy2314=rs.getString("cisy2314");
              String cisy2315=rs.getString("cisy2315");
    %>
    <tr bgcolor="#efefef">
    <td width="8%" height="18"><%= rs.getString("recdate")%></td>
    <td width="10%" height="18"><%= rs.getString("studentid")%>
    <input type="hidden" name="studentid" value="<%= rs.getString("studentid")%>"></td>
    <td width="11%" height="18"><%=rs.getString("firstname")%>
    <%=rs.getString("lastname")%></td>
    <td width="15%" height="18"><a href="mailto:<%=rs.getString(email")%">"><%=rs.getString("email")%></a></td>
         <td width="13%" height="18"> <%
                   if((cisy1212!=null) || (cisy2311 !=null) ||(cisy2313!=null) ||(cisy2314!=null) ||(cisy2315!=null))
                   %> <%=cisy1212%>,<%=cisy2311%>,<%=cisy2313%>,<%=cisy2314%>,<%=cisy2315%></td>           
         <td width="15%" height="18"><%=rs.getString("cisy1212")%>,<%=rs.getString("cisy2311")%>,<%=rs.getString("cisy2313")%>,<%=rs.getString("cisy2314")%>,<%=rs.getString("cisy2315")%></td>
    <td width="6%" height="18"><%=rs.getString("qualified")%></td>
    <td width="6%" height="18"><%=rs.getString("applied")%></td>
    <td width="6%" height="18"><%=rs.getString("accepted")%></td>
    <td width="6%" height="18">
    <input style="BACKGROUND-IMAGE: url(file://C:\jakarta-tomcat-4\webapps\CISY2415\images\trash2.gif); WIDTH: 28px; HEIGHT: 36px; BACKGROUND-COLOR: #efefef" type=submit name=delete size=14 onClick="alert('Do you want to delete the record?')">
    </td>
    </tr>
    <% } //end while()
         //clean up
         if(rs!=null) rs.close();
         if(statement!=null) statement.close();
         if(connection!=null) connection.close();
    %>
    </table>
    </form>
    </body>
    </html>
    </a>

    You can avoid all of this cumbersome code by using tags:
    http://www.dotjonline.com/taglib/grid.jsp

  • Removing tool bar and menu bar to the navigated page through ADF

    Hi,
    Through facesconfig iam navigating to the other page, some thing like my method returns a striing "success" in faceconfig i made to navigate to page2.jsp if it receives success,
    My current requirement is to remove the tool bar as well as manu bar from the navigated page i.e. page2.jsp, i could n't able o configure that, can any one please help me on this.

    Yeah exactly i am talking about the browser window, let me explain you once more,
    the bellow iam calling from first.jsp
              FacesContext fc=FacesContext.getCurrentInstance();
              Application ac=fc.getApplication();
              NavigationHandler navigationHandler=ac.getNavigationHandler();
    try{
    navigationHandler.handleNavigation(fc,null,"success");
    }catch(Exception e){
    in faces config.xml i have used
    <navigation-rule>
    <from-view-id>first.jsp</from-view-id>
    <navigation-case>
    <from-outcome>success</from-outcome>
    <to-view-id>second.jsp</to-view-id>
    <redirect/>
    </navigation-case>
    </navigation-rule>
    right now what i need is when the page traverses to the second window i.e second.jsp i shudn't see menu bar and tool bar in my browser window.
    hope this will clear my question, any one please help me out......
    please let me know the sollution even if there is any in JSP

  • Gernerate JSF page through program

    Hi all of you,
    my name is Salomon i am a beginer in JSF programming with Oracle Jdeveloper 10g release 3.
    My difficulty is how to acivate and desactivate UI components on JSF page (or rather JSP page) through program (maybe a method integrated in class associated with JSP page)
    ,and also add or remove UI components on the JSP programmaticaly.
    I am looking forward in hearing from you soon.
    Thank you

    Hi,
    thank for your response but i got another problem:
    How to reach a component which is in jsf page whithin another jsf page
    programmaticaly so that i can modify its properties (mainly hide or show a commandbutton menu item ...) before displaying this page (page containing the component to modify) through the " return outcomename " statement.
    Thank you
    Salomon
    Message was edited by:
    user554608

  • Highlight records in jsp

    Hi all
    In would like to highlight some records in my jsp page based on some condition checking.
    please assist me how to highlight some particular records in jsp.
    thanks in advance.

    Have 2 different CSS classes, one that represents the normal record and one that represents the highlighted one. Something like:
    .normal {
         background-color: White;
    .highlight {
         background-color: Yellow;
         font-weight: bold;
    }Now when you construct your records, apply your logic to see which css class should be applied. For example to set every alternate row as a highlighted row you can do something like this:
    <c:forEach items="records" var="record" varStatus="vs">
    <tr class="${((vs.index % 2 == 0)?"normal":"highlight")}">
          <td>${record}</td>
    </tr>
    </c:forEach>

  • Not able to open Modal Page through a report attribute link

    Dear All,
         Not able to open Modal Page through a report attribute link, kindly help me...
      I am using skill builders modal page plugin ...
    Thanks and Regards,
    Madonna

    Here's what you have to do.
    You set up your column link like this:
    Link text: whatever you like
    Link attributes: onclick="return false;" class="open_modal"
    Target: Page in this application
    Page: number of the page you want to open in your modal window
    You set up your dynamic action like this:
    Event: Click
    Selection type: jQuery selector
    jQuery selector: .open_modal
    (notice the dot at the beginning!)
    Action: SkillBuilders Modal Page (2.0.0) [Plug-in]
    Event Scope: Dynamic
    And finally, in your True Action (SkillBuilders Modal Page (2.0.0)), URL Location should be set as Attribute of Triggering Element.
    And that's pretty much all it takes.
    Hope this helps.

  • How do i send the username and password to yahoo web page through url

    how do i send the username and password to yahoo web page through url i.e as Query string so that my account in yahoo will open...

    If you don't mind using a library, then download and use the Apache HttpClient library. It takes care of all these details for you.

  • Unable to open page through apache web server

    No one is able to open page through webserver it's giving message You don't have permission to access / on this server. Can any one help.

    Do you have a document called index.html in /Library/WebServer/Documents? The error mesage you mention usually happens when this document doesn't exist and you haven't set the option to list the files in the directory.

  • Unable to open login page through internet explorer

    Hi,
    Configured Reverse proxy external tier. We are able to access login page through Mozilla but unable to access through IE8.
    Raised SR, but they have reverted saying it's browser problem & not in their scope.
    Please help for the following error message when redirecting to login page.
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed.
    Thanks in advance

    Please post the details of the application release, database version and OS.
    Configured Reverse proxy external tier. We are able to access login page through Mozilla but unable to access through IE8.
    Raised SR, but they have reverted saying it's browser problem & not in their scope.Do you meet the requirements in these docs?
    Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
    Recommended Browsers for Oracle E-Business Suite 11i [ID 285218.1]
    Please help for the following error message when redirecting to login page.Can you find any errors in the application/apache/database log files?
    You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session. Please select Home to proceed. Please see if these docs help.
    Session Error Raised Direct After Login when Using Two-Letter Domain Segments [ID 420573.1]
    Login Issue via Internet Explorer after EBS Upgrade from 11.5.10.2 to 12.0.4 [ID 828534.1]
    R12 Login Fails When A Cookie Using Comma Separated Values Is Set First [ID 946807.1]
    R12: Error "You are trying to access a page that is no longer active" When Attempting to Access Through Internet Explorer [ID 968839.1]
    Thanks,
    Hussein

  • How to display the one BSP View page (not a start page)Through URL link..

    Hi Sir/Madam,
                 I want to open one BSP view page through URL link...
    Let me Explain clearly..
                I have an Z application ZHRRCF_APPROVAL..In this application approve.bsp file i have added som more Fields..and Finally I am going to click ApproVe Buton /Reject Button.When i click the reject button the the items are rejected.Its working fine.....
              My Requirement is :
                   1. I want to display the approval page directly when i click the URL link from mail box.--i am getting this .. No issues..(Got the URL link from function module)
                   2. After opening the approval page when i click URL link, when i click the reject button-- i am getting the error "The following Error Text was processed in the system GR2."Access via NULL object reference not possible"
                   3. How to proceed the this URL link without error .. the URL link is
    https://abd00093.de.abb.com:8200/sap(bD1lbiZjPTIwMA==)/bc/bsp/sap/zhrrcf_approval/application.bsp?objid=50003421&otype=NB&plvar=01&requestdate=20090121&requestedRsnCode=01&requestedstatus=1&requester=USRECRUITER1&SAPWFCBURL=https%3a%2f%2fabd00093%2ede%2eabb%2ecom%3a0000000000008200%2fsap%2fbc%2fwebflow%2fwshandler%3f_sapwiid%3d000000018491%26_saptask%3dTS51807979%26_saplogsys%3dGR2CLNT200%26_sapuname%3dLINEMANAGER%26_saplangu%3dE%26sap-client%3d200
    ( I got this URL directly using my own function module.. In this function Module i was not getting the SAPGUID -- the error is because of that i am not sure..)How to get this sapguid dynamically..
                    Please guide me to proceed this req asap..
    I am waiting for your reply ....Please
    Thanks and Regards
    Mohan,P

    Please have BPEL loggers both at domain and system level to DEBUG mode. Set all loggers to DEBUG as you are interested to see the entire sequence flow..however, some loggers give you unnecessary info ;/ apart from cube, activation, delivery, dispatch, persistence.
    Added to this, you might want to try SOAPUI, Fiddler, HTTP Analyzer.

  • Setting the custom master page through powershell is NOT working

    Hi,
     I am writing the below code to set the  custom master page through powershell.
    But its not working .when i went to site settings-->master page --> in the drodown , the  maste page set is seattle.master ONLY, though my current master page is available in the dropdown.
     Can anyone pls help, whether i am missing in the below :
          Add-PSSnapin Microsoft.SharePoint.Powershell
           $SiteURL = "http://srvr1:22307/sites/SPW5"
        $weburl= $SiteURL
        $Site= Get-SPSite $SiteURL
        $web =  $Site.OpenWeb()
    $web.CustomMasterUrl = "/_catalogs/masterpage/myMasterpage.master"
    $web.MasterUrl = "/_catalogs/masterpage/myMasterpage.master"
    $web.Update()
    Das

    Hi,
    Is it a publishing page? If yes can you try the PowerShell scripts corresponding to the following code snippet?
    var publishingWeb = PublishingWeb.GetPublishingWeb(web);
    publishingWeb.CustomMasterUrl.SetInherit(inheritFromParent, false);
    publishingWeb.CustomMasterUrl.SetValue(masterPageUrl, false);
    publishingWeb.MasterUrl.SetInherit(inheritFromParent, false);
    publishingWeb.MasterUrl.SetValue(masterPageUrl, false);
    I've noticed sometime (not sure though) that Master page doesn't get updated if the inherit property is not updated first.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

Maybe you are looking for

  • Chrome and Opera- Aw Snap/ Crashing Error on Literally Everything!

    I bought the new Mac Pro this past summer and have never been able to get Chrome or Opera (latest versions of each) to work. I have performed the steps suggested in the Google Help Center, including renaming the "Default" folder in Application Suppor

  • Possible to use Apple ID balance to gift apps?

    I have $10 on my Apple ID balance, and I wanted to use $2.99 to gift an app to a friend, but I can´t see how - iTunes only asks me to enter my credit card info (or, ironically, a new giftcard-code) but not draw from my existing amount. Is it even pos

  • Why can't I buy the Card?

    I spent hours creating a card in iPhoto. Every time I go to purchase it get an error that  "the address/city/state/zip is incorrect and try to correct it. This is the correct address of my friend. I even checked it at USPS.  I've sent cards before an

  • Qosmio G35-AV600 TV tuner

    How do I upgrade this laptop to receive digital TV stations through the Antenna input?  Do I have to buy a converter box for the laptop?

  • Error when uploading data.

    hi guys, when uploading data using customer datasource 2lis_01_s001.. i got the following error. <b>Update ( 0 new / 0 changed ) : Errors occurred Data records for package 1 selected in PSA - 1 error(s) Record 1 :No SID found for value 'ST ' of chara