Add a new SubmitButton on a Page

Hi,
I need to add a new submitButton on a page, so I have doen the following:
1) created a new stacklayout and submitbutton under it.
2) assigned the page's AM to this region.
3) assigned a new controller to this region.
4) using personalization added the region to the page.
However, when I press the button, I get an error :
My Controller code is :
public void processFormRequest(OAPageContext oapageContext, OAWebBean oawebBean)
super.processFormRequest(oapageContext, oawebBean);
if(oapageContext.getParameter("xxPrintReqButton") != null)
{    OAApplicationModule am = oapageContext.getApplicationModule(oawebBean);
MyReqsVOImpl vo = (MyReqsVOImpl) am.findViewObject("MyReqsVO");
OARow row = (OARow) vo.getFirstFilteredRow("select","Y");
String reqno = (String) row.getAttribute("RequisitionNumber");
// For testing only
OAMessageStyledTextBean fieldTest = (OAMessageStyledTextBean)oawebBean.findChildRecursive("PrintText");
fieldTest.setText(oapageContext,reqno );
My error stack is :
oracle.apps.fnd.framework.OAException: oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT prh.requisition_header_id,
prh.segment1 requisition_number,
prh.preparer_id,
hre.full_name preparer_name,
prh.description,
prh.authorization_status auth_status,
prh.cancel_flag,
NVL(prh.closed_code,
'OPEN'
) closed_code,
apc.card_number,
prh.creation_date,
prh.transferred_to_oe_flag placed_on_so_flag,
prh.emergency_po_num,
NVL(prh.change_pending_flag,
'N'
) change_pending_flag,
prh.contractor_status,
prh.contractor_requisition_flag,
prh.supplier_notified_flag,
NVL(prh.active_shopping_cart_flag, 'N') active_shopping_cart_flag,
'POR_VIEW_MY_REQS' view_mode,
prh.wf_item_type,
prh.wf_item_key
FROM po_requisition_headers prh,
ap_cards apc,
per_all_people_f hre
WHERE prh.authorization_status<>'SYSTEM_SAVED' AND
prh.preparer_id = hre.person_id AND
TRUNC(sysdate) BETWEEN hre.effective_start_date AND
hre.effective_end_date AND
apc.card_id (+) = prh.pcard_id AND
prh.preparer_id = :1
     at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2637)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:107)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
     at oracle.jsp.JspServlet.internalService(JspServlet.java)
     at oracle.jsp.JspServlet.service(JspServlet.java)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
## Detail 0 ##
java.sql.SQLException: ORA-01008: not all variables bound
     at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
     at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
     at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:589)
     at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1972)
     at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
     at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2559)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2950)
     at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:656)
     at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:582)
     at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627)
     at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515)
     at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347)
     at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825)
     at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:538)
     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2369)
     at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStartWithRefresh(ViewRowSetIteratorImpl.java:2327)
     at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStart(ViewRowSetIteratorImpl.java:2318)
     at oracle.apps.fnd.framework.server.OAViewObjectImpl.getFirstFilteredRow(OAViewObjectImpl.java:4726)
     at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:52)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:107)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
     at oracle.jsp.JspServlet.internalService(JspServlet.java)
     at oracle.jsp.JspServlet.service(JspServlet.java)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
java.sql.SQLException: ORA-01008: not all variables bound
     at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
     at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
     at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:589)
     at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1972)
     at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1119)
     at oracle.jdbc.driver.OracleStatement.doExecuteQuery(OracleStatement.java:2559)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2950)
     at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:656)
     at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:582)
     at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:627)
     at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:515)
     at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3347)
     at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(OAJboViewObjectImpl.java:825)
     at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4465)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:574)
     at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:538)
     at oracle.jbo.server.ViewRowSetIteratorImpl.ensureRefreshed(ViewRowSetIteratorImpl.java:2369)
     at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStartWithRefresh(ViewRowSetIteratorImpl.java:2327)
     at oracle.jbo.server.ViewRowSetIteratorImpl.setRangeStart(ViewRowSetIteratorImpl.java:2318)
     at oracle.apps.fnd.framework.server.OAViewObjectImpl.getFirstFilteredRow(OAViewObjectImpl.java:4726)
     at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:52)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:107)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
     at oracle.jsp.JspServlet.internalService(JspServlet.java)
     at oracle.jsp.JspServlet.service(JspServlet.java)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
All I need to do is , when the button is processed , get the current row selected in the table using the single selection attribute and find the value of the attribute RequisitioNumber in that row. I plan to use this reqno as a parameter later. The table uses the VO MyReqsVO.
It appears the fwk is trying to bind the variables for the above VO and errors. Can i not simply refer to the VO instance which has already executed and displays the results in the advanced table ?
Any help is much appreciated.
Thanks
Shankar

Thanks Avaneesh.
how does fwk know which VO to use for am.findRowByref() ?
Currently I write in my PFR :
OAApplicationModule am = oapageContext.getApplicationModule(oawebBean);
String rowReference = oapageContext.getParameter(OAWebBeanConstants.EVENT_SOURCE_ROW_REFERENCE);
OARow row = (OARow) am.findRowByRef(rowReference);
String reqno = (String) row.getAttribute("RequisitionNumber");
throw new OAException(reqno,OAException.INFORMATION); --- to test only
but it gives Null Pointer exception on line
String reqno = (String) row.getAttribute("RequisitionNumber");
because i think it does not know which VO 's get method to use ?
Thanks
see error stack below :
Exception Details.
oracle.apps.fnd.framework.OAException: java.lang.NullPointerException
     at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:888)
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.prepareException(OAPageErrorHandler.java:1145)
     at oracle.apps.fnd.framework.webui.OAPageErrorHandler.processErrors(OAPageErrorHandler.java:1408)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2637)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:107)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
     at oracle.jsp.JspServlet.internalService(JspServlet.java)
     at oracle.jsp.JspServlet.service(JspServlet.java)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
## Detail 0 ##
java.lang.NullPointerException
     at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:82)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:107)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
     at oracle.jsp.JspServlet.internalService(JspServlet.java)
     at oracle.jsp.JspServlet.service(JspServlet.java)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)
java.lang.NullPointerException
     at xx.oracle.apps.icx.por.reqmgmt.webui.xxPrintRequisitionsCO.processFormRequest(xxPrintRequisitionsCO.java:82)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:799)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.layout.OAStackLayoutBean.processFormRequest(OAStackLayoutBean.java:370)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.OAPageLayoutHelper.processFormRequest(OAPageLayoutHelper.java:1118)
     at oracle.apps.fnd.framework.webui.beans.layout.OAPageLayoutBean.processFormRequest(OAPageLayoutBean.java:1579)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.form.OAFormBean.processFormRequest(OAFormBean.java:395)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:995)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequestChildren(OAWebBeanHelper.java:961)
     at oracle.apps.fnd.framework.webui.OAWebBeanHelper.processFormRequest(OAWebBeanHelper.java:816)
     at oracle.apps.fnd.framework.webui.OAWebBeanContainerHelper.processFormRequest(OAWebBeanContainerHelper.java:363)
     at oracle.apps.fnd.framework.webui.beans.OABodyBean.processFormRequest(OABodyBean.java:363)
     at oracle.apps.fnd.framework.webui.OAPageBean.processFormRequest(OAPageBean.java:2633)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1659)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:497)
     at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:418)
     at oa_html._OA._jspService(_OA.java:107)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java)
     at oracle.jsp.JspServlet.internalService(JspServlet.java)
     at oracle.jsp.JspServlet.service(JspServlet.java)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
     at org.apache.jserv.JServConnection.run(JServConnection.java:294)
     at java.lang.Thread.run(Thread.java:534)

Similar Messages

  • How can I add a new submitbutton is like an oracle button?

    Hi everybody, I wanna add a new submitbutton to page(xxxxPG.xml). There are some oracle buttons in the page. But, when I add a new submitbutton to page, it is looking like a windows button. What should I do? Thanks...

    Hi there,
    Generally the attribute sets should work but not sure how you are attaching it dynamically. Please check the OA Fwk Guide page 134,135 and 171 to 175.
    It might be some precedence over writing your settings, just create a submit button and assign the attribute set don't set anything else. See if it is rendered
    properly as you want and then try to play around with it. Hope this helps.
    Metalink Document 269138.1 (Oracle Application Framework Developer's Guide Release 11.5.10 RUP5)
    Sample code
    import oracle.apps.fnd.framework.webui.AttributeSet;
    AttributeSet attrSet =
    new AttributeSet(pageContext,
    "/oracle/apps/fnd/attributesets/Buttons/Create");
    String createPrompt = (String)attrSet.getAttributeValue(pageContext,
    PROMPT_ATTR);
    Thanks,
    Sri

  • Issue to Add one new column in search Page..

    I have a JSP file of Service Form of Oracle Install Base . In this on select party Site page when search for any item it shows some result as a column. like address , name, country..
    we have to add a new column in that search. means when we search for any Item then with address, Name and country it shows a new column also with that. I have the jsp file of that page "csifLOV.jsp". This is the generic LOV page for any database columns.
    Can anybody please help where to add this new column definition.
    this is code of "csifLOV.jsp".
    <%--
    +==========================================================================+
    | Copyright (c) 2000 Oracle Corporation, Redwood Shores, CA, USA |
    | All rights reserved. |
    +==========================================================================+
    | FILENAME |
    | csifLOV.jsp |
    | DESCRIPTION |
    | This is the generic LOV page for any database columns |
    | NOTES |
    | |
    | DEPENDENCIES |
    | |
    | HISTORY |
    | 23-Aug-2000 X. Li Created. |
    | $Header: csifLOV.jsp 115.30 2004/06/14 21:05:05 anukal ship $
    +==========================================================================+
    --%>
    <%@ include file="jtfincl.jsp" %>
    <%@ include file="csifContextIncl.jsp" %>
    <%
    csiPageContext.setPermissionName("SupPer");
    csiPageContext.setJspName("csifLOV.jsp");
    csiPageContext.setFormName("LOVForm");
    String jspName = csiPageContext.getJspName();
    String csiFormName = csiPageContext.getFormName();
    String formName = csiFormName;
    appName = "CSI";
    if (CsifutDebug.LOCAL_DEV_ENV)
    Properties param = System.getProperties();
    String prop = param.getProperty("JTFDBCFILE",
    "E:\\myprojects\\dbcfiles\\crmdev04_SCCSIDV1.dbc");
    param.put("JTFDBCFILE", prop);
    prop = param.getProperty("service.Logging.common.filename",
    "E:\\myprojects\\jtflogs\\ebppFW_log");
    param.put("framework.Logging.system.filename", prop);
    prop = param.getProperty("service.Logging.common.filename",
    "E:\\myprojects\\ebppSys_log");
    param.put("framework.Logging.system.filename",prop);
    System.setProperties(param);
    // this may have to change for other people
    // ServletSessionManager.startStandAloneSession(appName,true,
    // "csiuser","welcome");
         ServletSessionManager.startRequest(request,response,
    appName,true,"csiuser","csiuser","Authenticator.system");
    /* Push the logFileName into the cookie for future use */
    oracle.apps.jtf.util.SystemCheck.setJTFCookie();
    // Set cookies for menu rendering
    MenuRenderer.setMenuCookies(request);
    //Added HTML tag with language code for accessibility.
    String CSI_HTML_LANG_CODE;
    CSI_HTML_LANG_CODE = oracle.apps.jtf.util.HtmlUtil.getHtmlLanguageCode();
    if (CSI_HTML_LANG_CODE == null)
    CSI_HTML_LANG_CODE = "en-US";//Added HTML tag with language code for accessibility.
    %>
    <HTML lang="<%=CSI_HTML_LANG_CODE%>">
    <%@ include file="csifStartReqIncl.jsp" %>
    <%@ include file="csifExceptionHandleBegin.jsp" %>
    <jsp:useBean id="lovBean" class="oracle.apps.csi.framework.pb.CsifpbLOVBean" scope="page" />
    <%
    lovBean.init(csiPageContext, request);
    lovBean.process();
    int pageMode = lovBean.getMode();
    if (pageMode == CsifpbBasePageBean.LOVRETURN_MODE) //forward to the caller of the LOV
         if (CsifutDebug.DEBUG)
    CsifutDebug.addMessage("forward URL=" + lovBean.getForwardToURL());
    csiPageContext.setForwardToJSP(lovBean.getForwardToURL());
    %>
    <%@include file="csifForwardIncl.jsp" %>
    <%
    else
    CsifcmException error = lovBean.getException();
    String callerName = lovBean.getJspCallerName();
    String labelSelect=null;
    String labelEnterPartial=null;
    String labelSearch=null;
    String labelTitle=null;
    int origAppID = csiPageContext.getPageAppId();
    String origAppName = csiPageContext.getPageAppName();
    csiPageContext.setPageAppId(542);
    csiPageContext.setPageAppName("CSI");
    Hashtable allLovPrompts = CsifutRegion.getPrompts(csiPageContext, "CSI_FRAMEWORK_LOV");
    csiPageContext.setPageAppId(origAppID);
    csiPageContext.setPageAppName(origAppName);
    if (allLovPrompts != null)
    labelSelect = (String)allLovPrompts.get("CSI_SELECT");
    labelEnterPartial = (String)allLovPrompts.get("CSI_ENTER_PARTIAL");
    labelSearch = (String)allLovPrompts.get("CSI_SEARCH");
    labelTitle = (String)allLovPrompts.get("CSI_LOV_TITLE");
    else
    allLovPrompts = new Hashtable();
    String cancelPrm = (String)allLovPrompts.get("CSIF_CANCEL");
    %>
    <head>
    <title><%=labelTitle%></title>
    <script language="JavaScript">
    function newSearch()
    document.<%=csiFormName%>.<%=CsifpbBasePageBean.PAGE_MODE_PARAM%>.value = '<%=CsifpbBasePageBean.QUERY_MODE%>';
    document.<%=csiFormName%>.submit();
    function returnToCaller()
    // alert("Return to " + "<%=callerName%>" )
    document.<%=formName%>.action = "<%=callerName%>";
    document.<%=formName%>.submit();
    function <%=lovBean.LOV_CANCEL_FUNC%>()
    var LOVForm = document.forms['<%=csiFormName%>'];
    var LOVFieldName = '<%=lovBean.getLOVFieldName()%>';
    var LOVOrigValFieldName = LOVFieldName + '<%=lovBean.LOV_ORIG_VAL_FIELD%>';
    LOVForm.elements[LOVFieldName].value = LOVForm.elements[LOVOrigValFieldName].value;
    LOVForm.elements['<%=CsifpbBasePageBean.PAGE_MODE_PARAM%>'].value = '<%=CsifpbBasePageBean.LOVRETURN_MODE%>';
    LOVForm.elements['<%=CsifpbBasePageBean.MODE_ACTION_PARAM%>'].value = '<%=CsifpbBasePageBean.ACTION_CANCELLED%>';
    LOVForm.action = '<%=lovBean.getJspCallerName()%>';
    LOVForm.submit();
    function onPageLoad()
    document.<%=csiFormName%>.<%=lovBean.getLOVFieldName()%>.focus();
    </script>
    <%=lovBean.renderLovReturnJS()%>
    <%@ include file="jtfscss.jsp" %>
    </head>
    <%@ include file="csifBodyBeginIncl.jsp" %>
    <%
    //if (!CsifutDebug.LOCAL_DEV_ENV)
    if (CsifutTimer.TIME)
    CsifutTimer.start(CsifutTimer.JTF_MENU);
    %>
    <%@ include file="jtfdnbartop.jsp" %>
    <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td>
    <%
    if (CsifutTimer.TIME)
    CsifutTimer.stop(CsifutTimer.JTF_MENU);
    } // end local_dev_env
    %>
    </td>
    </tr>
    <tr>
    <td>
    <form name="<%=csiPageContext.getFormName()%>" method="post" action="<%=jspName%>">
    <table summary="" width="100%" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <td valign="top">
    <table summary="" width="100%">
    <tr>
    <td> </td>
    <td class="pageTitle" colspan="4"><%=labelSelect%> <%=lovBean.getLOVPageTitle()%>
    </td>
    <td> </td>
    </tr>
    <%@ include file="csifDisplayException.jsp" %>
    <tr>
    <td width="5%"> </td>
    <td width="22.5%"> </td>
    <td width="22.5%"> </td>
    <td width="22.5%"> </td>
    <td width="22.5%"> </td>
    <td width="5%"> </td>
    </tr>
    <tr>
    <td> </td>
    <td>
    <div nowrap align="right" class="promptReadOnly"><%=labelEnterPartial%></div>
    </td>
    <td colspan="3">
    <input type="text" name="<%=lovBean.getLOVFieldName()%>" id="<%=lovBean.getLOVFieldName()%>"
    value="<%=HtmlWriter.preformat(lovBean.getLOVSearchPattern())%>" size="15">
    <input type="button" name="SearchButton" id="SearchButton"
    value="<%=labelSearch%>" onClick="javascript:newSearch()">
    <input type="button" name="CancelButton" id="CancelButton"
    value="<%=cancelPrm%>" onClick="javascript:<%=lovBean.LOV_CANCEL_FUNC%>()">
    </td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td colspan="4">
    <hr>
    </td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td class="prompt" colspan="4">
    <!-- Search Result goes here -->
    <%
    if (lovBean.getMode() != CsifpbBasePageBean.LOVRETURN_MODE)
    out.print(lovBean.renderLOVValuesTable(labelSelect));
    %>
    <!-- End of Search Result -->
    </td>
    <td> </td>
    </tr>
    <tr>
    <td> </td>
    <td colspan="4">
    <input type="button" name="CancelButton" value="<%=cancelPrm%>"
    onClick="javascript:<%=lovBean.LOV_CANCEL_FUNC%>()">
    </td>
    <td> </td>
    </tr>
    </table>
    <!-- Content ends here -->
              </td>
         </tr>
         </table>
    <!--Hidden Fields Go Here-->
    <input type="hidden" name="<%=CsifpbLOVBean.LOV_VALUE_SEL_PARAM%>" >
    <%
    if(csiPageContext.isAccessible())
    %>
    <label for="<%=lovBean.getLOVFieldName()%>" class='hidelabel'><%=labelEnterPartial%></label>
    <!-- Kamal for ADA v2 03-Mar-04
    <label for="SearchButton" class='hidelabel'><%=labelSearch%></label>
    <label for="CancelButton" class='hidelabel'><%=cancelPrm%></label>
    -->
    <%
    %>
    <%@ include file="csifHiddenFieldsIncl.jsp" %>
    </form>
    <%@ include file="csifBodyEndIncl.jsp" %>
    </HTML>
    <%
    } // end of if (pageMode == CsifpbBasePageBean.LOVRETURN_MODE ) .. else {
    %>
    <%@ include file="csifExceptionHandleEnd.jsp" %>
    <%@ include file="csifEndReqIncl.jsp" %> <!-- send an end request -->
    Thanks,

    If you are copying the 12KST1C to Z12KST1C and executing the s_alr_8701333 report, you will not see the new column added to Z12KST1C
    With the new Form Z12KST1C, create a new Report Z12KST1C and assign a new TCODE. Also you have to select all rows and column of form Z12KST1C
    TCODE CJE5
    Select the form Z12KST1C
    Extras--Drildown display --Select Rows and columns
    Select the all colhmns by F9
    Hope this helps.
    Edited by: psconsultant on May 20, 2011 8:42 AM

  • Hiow to add a new field in bsp page.

    Hi Experts,
    I am new to BSP,
    I am doing project in erec, I want to know how to add new fields in BSP page.
    Like I want to add a new field in portal where I could write some comment.
    Regards,
    amod

    Please try to post this question in BSP forum for getting better answers.
    For Enhancing an existing Standard BSP application , refer the below link.
    http://help.sap.com/saphelp_crm70/helpdata/EN/20/b0f4f819e844df9f47bc9c70c795f4/content.htm
    Raghu

  • How to add a new character in code page

    Hi,
    I need to add a new character to existing code page in the upgraded system.
    The character is latin small s with caron (u0161 ).
    The character ID is 000161.
    What is the byte sequence of the same?
    Thanks and Regards
    Shraddha

    Use tranaction SCP .
    Under segment , take the character sequence and include your new id value . Byte sequence in my opinion will be confirmed from the client .
    Br,
    Vijay.

  • How to add new links to a page

    Hello Community
    In Sharepoint 2013 Server can you create:
    A Link in the left navigtion bar  or Quick Launch
     when clicked it can open a new page  and on that page there is an “Add New” type of 
    button. 
    Then on that page you can add as many links as the page will allow, each 
    of those links can contain a url
        Thank you
        Shabeaut

    Hi,
    To add a new link on the left nav:
    You can go to site settings> navigation> add a link under "current navigation".
    For the second requirement:
    You can create a "links" list and add it to that second page. This way you can have that "Add Links" option and add links.
    Thanks,
    norasampang

  • How do i add a new page to my already existing pages template document?

    help i'm really confused and in a hurry! I am working on something using a template, but it doesn't have enough pages, but i can't add a new one.

    whoops sorry figured it out thanks!

  • How can I create a form with a button that adds a new page of fields to fill out?

    Hi,
    I have a one-page form created in Acrobat Pro 9 that contains five fields for a user to complete. I'd like to give the user the option of adding a page with the same five fields to fill out. The user finishes those fields, presses an "Add a Page" button, and then gets another page to fill out, and so on. When finished, their PDF form might be 10 pages long, at which point the user can save it as a single PDF file. Is this possible to do in Acrobat Pro 9 or 10, and if so, how?
    Thanks,
    Andrew

    When I created a new template like you told me, I wasn't given the option to rename the fields. See screenshot below. I'm just given the option to add a new template. Changing it refers to changing the template to a different page.
    If you can show me how to have the fields renamed automatically or use the rename parameter, I think that should fix it.
    Under Tools>JavaScript>Document JavaScripts, I've added a Script named "PackagingArtwork".
    // Here is the code
    function PackagingArtwork()
    {this.createTemplate({cName: "PackagingArtwork", nPage: 5});
    // Here the code that spawns the template
    var PackagingArtworkArray = this.templates;
              var PackagingArtwork = PackagingArtworkArray[0];
              PackagingArtwork.spawn(this.numPages, false, false);
    This is what the JS debugger said.
    Acrobat EScript Built-in Functions Version 10.0
    Acrobat SOAP 10.0
    var t1 = createTemplate("t1", 0);
    var oXO = t1.spawn({nPage: numPages, bOverlay: false});
    while (numPages < 50) {
        t1.spawn({nPage: numPages,  bOverlay: false, oXObject: oXO});
    undefined
    [object CosObj=<<Stream>>]
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:Field:Mouse Up
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1
    TypeError: PackagingArtworkArray is null
    2:AcroForm:Duplicate Packaging Artwork:Annot1:MouseUp:Action1

  • How can I add a new font to pages?

    I want to add a new font to page.  How do I do that?

    Download new fonts from the Internet (e.g. 1001fonts.com), and then open the file once downloaded. This will launch the application FontBook. It will ask "Install the font?" Click "OK", and you will be able to use the new font in Pages, TextEdit or other word processors. (You may have to re-start the application for it to recognize it.)
    Bonus info: pressing command–t in many applications opens you computer's font control panel.

  • How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    How can I add a new Template to My Templates in Pages? I've read most of the discussions on the subject but it doesn't work for me. By the time I reach the Templates folder, I only see templates for Numbers and not for Pages. Need help, please.  Thanks

    Si vous avez utilisé la commande Save As Template depuis Pages, il y a forcément un dossier
    iWork > Pages
    contenant Templates > My Templates
    comme il y a un dossier
    iWork > Numbers
    contenant Templates > My Templates
    Depuis le Finder, tapez cmd + f
    puis configurez la recherche comme sur cette recopie d'écran.
    puis lancez la recherche.
    Ainsi, vous allez trouver vos modèles personnalisés dans leur dossier.
    Chez moi, il y en a une kyrielle en dehors des dossiers standards parce que je renomme wxcvb.template quasiment tous mes documents Pages et wxcvb.nmbtemplate à peu près tous mes documents Numbers.
    Ainsi, quand je travaille sur un document, je ne suis pas ralenti par Autosave.
    Désolé mais je ne répondrai plus avant demain.
    Pour moi il est temps de dormir.
    Yvan KOENIG (VALLAURIS, France)  mercredi 23 janvier 2011 22:39:28
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How to add new button in Customized page....

    Dear All,
    I need to add new button to the page button bar in the UI page.I tried like this in the controller but still i can not get output:
    OAPageButtonBarBean oapbb = (OAPageButtonBarBean)oawebbean.findIndexedChildRecursive("OrderPageButtons");
    OAButtonBean cancelButton = (OAButtonBean)createWebBean(oapagecontext, OAWebBeanConstants.BUTTON_BEAN,
    null, "cancelButton");
    cancelButton.setText("Cancel");
    oapbb.addIndexedChild(cancelButton);
    Is there anything i missedout?
    TIA

    what you are doing incorrectly is
    trying to get the handle to the OAPageButtonBarBean.
    This is a named child of the parent bean(OAPageLayoutBean), and what you are trying to do is find it as a indexed child, this should give you a nullpointer excp in this line oapbb.addIndexedChild(cancelButton);
    since the handle should be null.
    to get the handle to OAPageButtonBarBean, use some like this
    pageContext.getPageLayoutBean().getPageButtons();
    and then add buttons to it.
    Thanks
    Tapash.

  • Add a new Wiki Page and then change its name will an "Unexpected error has occured"

    I have the following:-
    1. windows server 2008 R".
    2.SQL server 2008 R2.
    3. SharePoint 2013 SP1
    The problem is as follow:-
    1. inside my enterprise wiki, i go to "Page"-->"New"
    2. enter the page name , for example "test page".
    3. on the second page , the user change the wiki name as follow:-
    4. save the page
    5. then the user will get the following error:-
    6. but if the user refresh the above error page, he will see the updated wiki page without any problem.
    so can anyone advice what might b causing this ?and did any one face similar problem ?
    i got this logs regarding the problem :-
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Logging Correlation Data 77a3 Verbose Starting correlation. 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://www.tgroup.intra/kb/CustomerServiceKB/Pages/12121212 wweqwe.aspx) 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (RequestManagement Processing). Parent Request (GET:http://www.tgroup.intra/kb/CustomerServiceKB/Pages/12121212 wweqwe.aspx) 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (SPRequestManagement.GetRoutingTargets). Parent RequestManagement Processing 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aaz9x Verbose Target pool count based on routing rules: 0 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aaz9l Verbose Initial routing target count: 1 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring b4ly Verbose Leaving Monitored Scope (SPRequestManagement.GetRoutingTargets). Execution Time=0.217904789575211 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____Execution Time=0.217904789575211 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____CPU Cycles=463478 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aaz9y Verbose Target count before throttling: 1 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aaz9z Verbose Throttling enabled, finding available targets 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (SPRequestManagement.EvaluateThrottlingRules). Parent RequestManagement Processing 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (Throttling Evaluation). Parent SPRequestManagement.EvaluateThrottlingRules 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring b4ly Verbose Leaving Monitored Scope (Throttling Evaluation). Execution Time=0.0102666679703705 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____Execution Time=0.0102666679703705 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____CPU Cycles=20599 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management ai6y0 Verbose Lowest threshold after evaluating rules '2147483647' 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring b4ly Verbose Leaving Monitored Scope (SPRequestManagement.EvaluateThrottlingRules). Execution Time=0.128577794105117 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____Execution Time=0.128577794105117 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____CPU Cycles=281366 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aaz90 Verbose Available target count based on throttling rules: 1 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aaz9n Verbose Unthrottled routing target count: 1 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring b4ly Verbose Leaving Monitored Scope (RequestManagement Processing). Execution Time=0.781454067486231 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____Execution Time=0.781454067486231 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____CPU Cycles=1692328 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aaz9q Verbose Final target for request: TGVSPS01 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management adc7u Medium Mapping URI from 'http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/12121212%20wweqwe.aspx' to 'http://TGVSPS01/kb/CustomerServiceKB/Pages/12121212%20wweqwe.aspx' 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aa0ai Verbose Copying incoming headers to outgoing request 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management agmky Verbose Existing correlation ID found '4217bc9c-5cc5-c0b7-30fc-02d3a61b6275', adding header to outgoing request 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aa0ak Verbose Attempting to send data with method 'GET' to server 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (RequestManagement Request Upload). Parent Request (GET:http://www.tgroup.intra/kb/CustomerServiceKB/Pages/12121212 wweqwe.aspx) 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Request Management aeboc Verbose No data was found on the incoming client request 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring b4ly Verbose Leaving Monitored Scope (RequestManagement Request Upload). Execution Time=0.0303111149601416 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____Execution Time=0.0303111149601416 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nass Verbose ____CPU Cycles=81559 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x277C SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (SPRoutingReverseProxy Get Response). Parent Request (GET:http://www.tgroup.intra/kb/CustomerServiceKB/Pages/12121212 wweqwe.aspx) 4217bc9c-5cc5-c0b7-30fc-02d3a61b6275
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x1CC8 SharePoint Foundation Logging Correlation Data 9gc5 Verbose Thread change; resetting trace level override to 0; resetting correlation to empty list
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x1CC8 SharePoint Foundation General 6t8b Verbose Looking up context site http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/12121212%20wweqwe.aspx in the farm SharePoint_Config
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x1CC8 SharePoint Foundation General 6t8d Verbose Looking up the additional information about the typical site http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/12121212%20wweqwe.aspx.
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x1CC8 SharePoint Foundation General 6t8f Verbose Site lookup is replacing http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/12121212%20wweqwe.aspx with the alternate access url http://www.tgroup.intra.
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x1CC8 SharePoint Foundation General 6t8g Verbose Looking up typical site http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/12121212%20wweqwe.aspx in web application SPWebApplication Name=SharePoint - 80.
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x1CC8 SharePoint Foundation General 6t8h Verbose Found typical site /kb/CustomerServiceKB (10dd91fc-10aa-4f08-a706-8178c2d0ba73) in web application SPWebApplication Name=SharePoint - 80.
    09/26/2014 01:06:00.53 OWSTIMER.EXE (0x04BC) 0x1D20 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Timer Job Rebalance crawl store partitions for 9004fabc-2086-478e-8581-605309dd8161). Execution Time=112.245969809012 4217bc9c-8cbe-c0b7-30fc-04f1a178544b
    09/26/2014 01:06:00.53 OWSTIMER.EXE (0x04BC) 0x1D20 SharePoint Foundation Monitoring nass Verbose ____SQL Query Count=4 4217bc9c-8cbe-c0b7-30fc-04f1a178544b
    09/26/2014 01:06:00.53 OWSTIMER.EXE (0x04BC) 0x1D20 SharePoint Foundation Monitoring nass Verbose ____SPRequest Objects=0 4217bc9c-8cbe-c0b7-30fc-04f1a178544b
    09/26/2014 01:06:00.53 w3wp.exe (0x12DC) 0x1CC8 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/12121212%20wweqwe.aspx)). Parent No
    09/26/2014 01:06:00.53 OWSTIMER.EXE (0x04BC) 0x1D20 SharePoint Foundation Monitoring nass Verbose ____CPU Cycles=125203169 4217bc9c-8cbe-c0b7-30fc-04f1a178544b
    09/26/2014 01:06:00.53 OWSTIMER.EXE (0x04BC) 0x1D20 SharePoint Foundation Monitoring nass Verbose ____Service Calls=0 4217bc9c-8cbe-c0b7-30fc-04f1a178544b
    09/26/2014 01:06:00.53 OWSTIMER.EXE (0x04BC) 0x1D20 SharePoint Foundation Monitoring nass Verbose ____Execution Time=112.245969809012 4217bc9c-8cbe-c0b7-30fc-04f1a178544b
    09/26/2014 01:06:00.53 OWSTIMER.EXE (0x04BC) 0x1D20 SharePoint Foundation Usage Infrastructure d0hz Verbose Starting write tra

    Hi John,
    I tested the issue in my environment, it works without error. From the log you posted, I cannot find any error related message.
    I’d recommend you test the issue on another machine and then with another account to see if there is any difference.
    Regards,
    Rebecca Tu
    TechNet Community Support
    i re-create the case and i found these errors in the log file:-
    Parent No
    09/28/2014 17:22:44.95 w3wp.exe (0x0908) 0x31D0 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://www.tgroup.intra/kb/CustomerServiceKB/Pages/ytty ttyty.aspx?ControlMode=Edit&DisplayMode=Design) f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.95 w3wp.exe (0x0908) 0x31D0 SharePoint Foundation Request Management adc7u Medium Mapping URI from 'http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/ytty%20ttyty.aspx?ControlMode=Edit&DisplayMode=Design' to 'http://tGVSPS01/kb/CustomerServiceKB/Pages/ytty%20ttyty.aspx?ControlMode=Edit&DisplayMode=Design' f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.95 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/ytty%20ttyty.aspx?ControlMode=Edit&DisplayMode=Design)). Parent No
    09/28/2014 17:22:44.95 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://www.tgroup.intra:80/kb/CustomerServiceKB/Pages/ytty%20ttyty.aspx?ControlMode=Edit&DisplayMode=Design) f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.97 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Authentication Authorization agb9s Medium Non-OAuth request. IsAuthenticated=True, UserIdentityName=0#.w|ad-tgroup\User.A, ClaimsCount=30 f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High UserAgent not available, file operations may not be optimized. at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb, Boolean copyOnFirstWrite, Boolean disposeIlb) at Microsoft.SharePoint.SPFileStreamManager.SetInputLockBytes(SPFileInfo& fileInfo, SqlSession session, PrefetchResult prefetchResult) at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBufferFactory.CreateFromDocumentRowset(Guid databaseId, SqlSession session, SPFileStreamManager spfstm, Object[] metadataRow, SPRowset contentRowset, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ...) at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, ... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ...Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbst... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ...rRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion,... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ... String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri pageUrl, Int32 pageVersion, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest, Boolean fetchDependencyInformation, Boolean& ghostedPage, String& siteRoot, Guid& siteId, Int64& bytes, ... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ...Guid& docId, UInt32& docVersion, String& timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object& oMultipleMeetingDoclibRootFolders, String& redirectUrl, Boolean& ObjectIsList, Guid& listId) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String path, Boolean impersonate, Boolean& isAppWeb, Boolean& fGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, ... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ...String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetFileForRequest(HttpContext context, SPWeb web, Boolean exclusion, String virtualPath) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.InitContextWeb(HttpContext context, SPWeb web) at Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.GetContextWeb(HttpContext context) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PostResolveRequestCacheHandler(Object oSender, EventArgs ea) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IEx... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ...ecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompl... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ak8dj High ...etion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:44.98 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files aiv4w Medium Spent 0 ms to bind 2694 byte file stream f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.00 NodeRunnerContent1-9004fabc-208 (0x108C) 0x2B70 Search General ahjoj Verbose Getting Correlation Header failed, no correlation ID.
    09/28/2014 17:22:45.00 NodeRunnerContent1-9004fabc-208 (0x108C) 0x2B70 Search General ahjok Verbose JunoReceiveRequest: LocalAddress: 'net.tcp://tgvsps01/5F0B48/ContentProcessingComponent1/ContentSubmissionServices/content' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/ceres/contenttransformation/2009/11/submission/IContentSubmissionService/PollCallbacks' MessageId: 'urn:uuid:423b914b-e07f-4ce3-9530-089ffba0f8c6'
    09/28/2014 17:22:45.00 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Files ahjkm Medium Spent 0 ms to send 2694 byte file stream f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.00 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Logging Correlation Data xmnv Medium Site=/kb/CustomerServiceKB f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.00 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=42.1991482157649 f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01 w3wp.exe (0x0908) 0x2B94 Web Content Management Publishing Cache ck14 Verbose Processing change collection, found SPChangeItem with SiteId: 10dd91fc-10aa-4f08-a706-8178c2d0ba73, WebId: 8f114afb-9703-4daa-b1cf-3630a5e395e4, ListId: 6a6ece84-4d39-48e2-bd6a-c20b2ac6355b, ItemId: f0398018-a848-45d1-8f6e-002e53524fd3, ChangeType: Add, queueing web for invalidation with dependants f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01 w3wp.exe (0x0908) 0x2B94 Web Content Management Publishing Cache ahh6z Verbose InvalidateDependencesOnWeb : Enqueuing web to resync for web id = '/KB/CUSTOMERSERVICEKB' url = '/kb/CustomerServiceKB'. f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01 w3wp.exe (0x0908) 0x2B94 Web Content Management Publishing Cache ahh6y Verbose RemoveItemFromCache : Removing item from cache. WebId = '8f114afb-9703-4daa-b1cf-3630a5e395e4', item guid ='f0398018-a848-45d1-8f6e-002e53524fd3' isList = 'False'. f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General 8nca Medium Application error when access /kb/CustomerServiceKB/Pages/ytty ttyty.aspx, Error=Object reference not set to an instance of an object. at Microsoft.SharePoint.Publishing.WssObjectCache.RemoveItemFromCache(Guid webId, Guid itemGuid, Boolean isList) at Microsoft.SharePoint.Publishing.WssObjectCache.HandleChanges(SPChangeCollection changes) at Microsoft.SharePoint.Publishing.CacheManager.CheckForChanges(SPSite site, Boolean forceGetChanges) at Microsoft.SharePoint.Publishing.CacheManager.GetManager(SPSite site, Boolean useContextSite, Boolean allowContextSiteOptimization, Boolean refreshIfNoContext) at Microsoft.SharePoint.Publishing.TemplateRedirectionPage.ComputeRedirectionVirtualPath(TemplateRedirectionPage basePage) at Microsoft.SharePoint.Publishing.Internal.CmsVirt... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General 8nca Medium ...ualPathProvider.CombineVirtualPaths(String basePath, String relativePath) at System.Web.Hosting.VirtualPathProvider.CombineVirtualPaths(VirtualPath basePath, VirtualPath relativePath) at System.Web.Hosting.VirtualPathProvider.CombineVirtualPathsInternal(VirtualPath basePath, VirtualPath relativePath) at System.Web.UI.DependencyParser.AddDependency(VirtualPath virtualPath) at System.Web.UI.DependencyParser.ProcessDirective(String directiveName, IDictionary directive) at System.Web.UI.PageDependencyParser.ProcessDirective(String directiveName, IDictionary directive) at System.Web.UI.DependencyParser.ParseString(String text) at System.Web.UI.DependencyParser.ParseFile(String physicalPath, VirtualPath virtualPath) at System.Web.UI.DependencyParser.GetVirtualPath... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General 8nca Medium ...Dependencies() at Microsoft.SharePoint.ApplicationRuntime.SPVirtualFile.CalculateFileDependencies(HttpContext context, SPRequestModuleData basicRequestData, ICollection& directDependencies, ICollection& childDependencies) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.EnsureDependencies(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.EnsureCacheKeyAndViewStateHash(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.GetVirtualPathProviderCacheKey(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPVirtualPathProvider.GetCacheKey(String virtualPath) at System.Web.Compilation.BuildManager.G... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General 8nca Medium ...etVPathBuildResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath ... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General 8nca Medium ...virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp) at System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Runtime tkau Unexpected System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.Publishing.WssObjectCache.RemoveItemFromCache(Guid webId, Guid itemGuid, Boolean isList) at Microsoft.SharePoint.Publishing.WssObjectCache.HandleChanges(SPChangeCollection changes) at Microsoft.SharePoint.Publishing.CacheManager.CheckForChanges(SPSite site, Boolean forceGetChanges) at Microsoft.SharePoint.Publishing.CacheManager.GetManager(SPSite site, Boolean useContextSite, Boolean allowContextSiteOptimization, Boolean refreshIfNoContext) at Microsoft.SharePoint.Publishing.TemplateRedirectionPage.ComputeRedirectionVirtualPath(TemplateRedirectionPage basePage) at Microsoft.SharePoint.Publishing.Internal.CmsVirtualPathProvider.CombineVirtualPaths(String basePa... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Runtime tkau Unexpected ...th, String relativePath) at System.Web.Hosting.VirtualPathProvider.CombineVirtualPaths(VirtualPath basePath, VirtualPath relativePath) at System.Web.Hosting.VirtualPathProvider.CombineVirtualPathsInternal(VirtualPath basePath, VirtualPath relativePath) at System.Web.UI.DependencyParser.AddDependency(VirtualPath virtualPath) at System.Web.UI.DependencyParser.ProcessDirective(String directiveName, IDictionary directive) at System.Web.UI.PageDependencyParser.ProcessDirective(String directiveName, IDictionary directive) at System.Web.UI.DependencyParser.ParseString(String text) at System.Web.UI.DependencyParser.ParseFile(String physicalPath, VirtualPath virtualPath) at System.Web.UI.DependencyParser.GetVirtualPathDependencies() at Microsoft.SharePoint.Applic... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Runtime tkau Unexpected ...ationRuntime.SPVirtualFile.CalculateFileDependencies(HttpContext context, SPRequestModuleData basicRequestData, ICollection& directDependencies, ICollection& childDependencies) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.EnsureDependencies(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.EnsureCacheKeyAndViewStateHash(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.GetVirtualPathProviderCacheKey(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPVirtualPathProvider.GetCacheKey(String virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuildResultFromCacheInternal(VirtualPath v... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Runtime tkau Unexpected ...irtualPath, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) at System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext c... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.01* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation Runtime tkau Unexpected ...ontext, Boolean allowCrossApp) at System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) at System.Web.HttpApplication.MaterializeHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.03 w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General ajlz0 High Getting Error Message for Exception System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.Publishing.WssObjectCache.RemoveItemFromCache(Guid webId, Guid itemGuid, Boolean isList) at Microsoft.SharePoint.Publishing.WssObjectCache.HandleChanges(SPChangeCollection changes) at Microsoft.SharePoint.Publishing.CacheManager.CheckForChanges(SPSite site, Boolean forceGetChanges) at Microsoft.SharePoint.Publishing.CacheManager.GetManager(SPSite site, Boolean useContextSite, Boolean allowContextSiteOptimization, Boolean refreshIfNoContext) at Microsoft.SharePoint.Publishing.TemplateRedirectionPage.ComputeRedirectionVirtualPath(TemplateRedirectionPage basePage) at Microsoft.SharePoint.Publishing.Internal.CmsVirtualPathProvi... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.03* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General ajlz0 High ...der.CombineVirtualPaths(String basePath, String relativePath) at System.Web.Hosting.VirtualPathProvider.CombineVirtualPaths(VirtualPath basePath, VirtualPath relativePath) at System.Web.Hosting.VirtualPathProvider.CombineVirtualPathsInternal(VirtualPath basePath, VirtualPath relativePath) at System.Web.UI.DependencyParser.AddDependency(VirtualPath virtualPath) at System.Web.UI.DependencyParser.ProcessDirective(String directiveName, IDictionary directive) at System.Web.UI.PageDependencyParser.ProcessDirective(String directiveName, IDictionary directive) at System.Web.UI.DependencyParser.ParseString(String text) at System.Web.UI.DependencyParser.ParseFile(String physicalPath, VirtualPath virtualPath) at System.Web.UI.DependencyParser.GetVirtualPathDependencies... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.03* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General ajlz0 High ...() at Microsoft.SharePoint.ApplicationRuntime.SPVirtualFile.CalculateFileDependencies(HttpContext context, SPRequestModuleData basicRequestData, ICollection& directDependencies, ICollection& childDependencies) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.EnsureDependencies(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.EnsureCacheKeyAndViewStateHash(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPDatabaseFile.GetVirtualPathProviderCacheKey(HttpContext context, SPRequestModuleData requestData) at Microsoft.SharePoint.ApplicationRuntime.SPVirtualPathProvider.GetCacheKey(String virtualPath) at System.Web.Compilation.BuildManager.GetVPathBuild... f1f3bc9c-ccfd-c0b7-30fc-0aed2b84ccd4
    09/28/2014 17:22:45.03* w3wp.exe (0x0908) 0x2B94 SharePoint Foundation General ajlz0 High ...ResultFromCacheInternal(VirtualPath virtualPath, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile, Boolean throwIfNotFound, Boolean ensureIsUpToDate) at System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean throwIfNotFound) at

  • Can we add a new attachment to an existing SC from any other custom page in SoCo PO View

    Hi Experts,
    Need your expert advice on the below requirement.
    We have created a custom view in SoCo PO page. There we have a New custom view called Notes&attachement.which contains same value from Notes & attachment of Shopping Cart.
    We are updating existing Notes of SC by FM 'bbp_pd_sc_update' and same is reflected in SC of same item guid & same header guid.
    Similarly trying to add a new Attachment to already existing attachment. New attachment is reflected in custom page and the describe link is working perfectly. but if come out of SoCo page , lets say in SC the new added attachment is shown but display_url,phio_size etc are not stored properly in DB.
    in bbp_pd transaction every thing looks same for new and existing attachment. we are using same FM 'BBP_PD_SC_UPDATE' by passing new internal table of attachment in import statement. Even 'BBP_PROC_DOC_UPADTE' has same result that is attachment is partially updated.
    Suppose, SC has one attachment at the time of creation. then adding a new attachment in custom view of SoCo PO page then every thing works fine in SoCo PO page but out of that SoCo PO or in SC the newly added attachment is not properly updated.
    I have added mime_type,phio_size,disp_url,file_name,file_ext,ev_content of new attachment in existing attachment internal table and calling above FM for update.
    Can we  add new attachment outside SC to existing SC ? if yes , then how?
    Thanks,
    Partha

    Hi Partha,
    Please post this query in the category: SAP SRM. Your post currently shows up on the forum - SRM User Interface Add-on. As your query is not related to the new ad-on, you might not get as many responses in this forum as you would have if you had posted the query in the general SRM forum (http://scn.sap.com/community/srm).
    Hope this helps
    Cheers,
    Yateesh

  • Add new field in OAF Page.

    I want to personalize a OAF page. My question is, Can i add new field in OAF page linked with database field and some calculations.
    I am trying to add new field in Termination page of Self service HR which will show the hiredate of employee and number of year served.

    Hi,
    As already specified by Kali..
    Step 1 - Create a new Field of type MessageStyledText using Personalization Link.
    Step 2 - Set the corresponding VO Attribute, which will fetch Hire Date.
    Step 3 - Extend the CO and calculate the Served Year, using Java Code.
    Step 4- Set the same value over the bean manually.
    Regards,
    Gyan

  • Pages 5.0 won't let me add a new page to a 13 page document.

    Since updating to Pages 5.0, I have not been able to add anymore pages to a 13 page document I am working on for an art project. The document uses original photographs as a background and a text box over them for the text. In the "Insert" drop down box in the tool bar, everything is grayed out. The program will also not let me copy and paste any of the previous pages so I can't even add a new page that way. I've also just looked to see if there were any restrictions on the file on the "Get Info" menu from the Finder, it still had the file as anyone can read and write to the file, so it can't be that either. I was wondering if anyone else has had a similar issue, and if so, how they managed to work around it?
    Thanks in advance!

    Sorry to be "that guy", but i've done that without an issue, I can now add pages by copying previous ones, but now Pages 4.3 groups a new page which is blank, with page 13. It also adds a the copy of the last page below the two that get grouped together.  So basically, I end up with 2 copys of page 13, and the original.

Maybe you are looking for

  • Proxy editing in Adobe Premiere Pro CS3?

    Hey all. I understand proxy editing is a method by which the user does all of his/her editing with lower quality footage, and then all of the edits/effects/transitions/etc are applied to higher quality footage when the project is rendered.  Does Prem

  • Miro execution takes long time

    Hi Experts, While posting Credit memo for Purchase returns in MIRO, processing takes long time, it takes hours to complete entire posting. For each inputs say while entering PO number, selecting tax code, selecting 'calculate tax' checkbox it takes m

  • Best practice for C# WCF Webservice To Be Consumed By Many SAP Clients

    Hi Experts, I am making a web service for an online payment site that will push payments made to our customers SAP systems.  I am reading through the documentation how how to get sap to take in the wsdl and that all looks pretty straight forward.  Wh

  • [SOLVED]Lsmod explanation - How it works!

    Hi all! Its kind of a silly question but want to know how lsmod works. Man and info pages does not have enough information and so do google. When I do lsmod it shows columns, first is 'modules', 'in use' etc.. Now there are a lot of modules that show

  • How can we control the standard filed using CUF?

    Hello We use SRM Server 5.5 (SP 07) We want to make the Price field as display on shopping cart screen. We created CUF for PR type. We have PR01 and PR02. If PR type is PR01, we want to make Price field as display. So We tried to use BBP_UI_CONTROL_B