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

Similar Messages

  • Want to add one new column in Report form

    Hi all,
    I have searched in forum but not able to find the answer.
    I want to add one new column in form 12KST1C. I have added one column PR commitment in left and saved the form, it is showing in form but when i am running the report again then pr commitment column which i have added in form is not coming in report.
    How to activate this form or column?
    Help me....in doing so...

    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

  • Add a new column in search table SERIAL_NUMBER that remains 1-10 everytime

    Hi All,
    I need to add a column SERIAL_NUMBER to search table and what i want is that it should display 1-10 on every page.I press Next and it should again show Sr No. 1-10.
    For this i added a transient variable to the SearchVO and the CO code for Table region is as follows :-
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    SearchAMImpl am= (SearchAMImpl)pageContext.getApplicationModule(webBean);
    SearchVoExImpl vo=(SearchVoExImpl)am.getSearchVoEx();
    SearchVoExRowImpl searchRow=(SearchVoExRowImpl)vo.first();
    searchRow.setSerial(new Integer(1));
    while(vo.hasNext())
    if(searchRow.getSerial().intValue()==11)
    searchRow.setSerial(new Integer(1));
    int i=searchRow.getSerial().intValue();
    Integer p=new Integer(i+1);
    searchRow=(SearchVoExRowImpl)vo.next();
    searchRow.setSerial(p);
    The problem i am facing with this is when i sort the result table using any column the Serial Number gets disappeared.
    And also when i press Go button for searching it shows me the end results first.
    Please help me out.

    hi,
    yes i am displaying 10 rows at a time and also there is no order by clause in VO query.
    The above method did not work again. I tried and again got the serial number which is not ordered.
    You can see my query:- select decode(mod(rownum,10), 0, 10, mod(rownum,10)) Serial_Number,party_name,address1,address2 from hz_parties
    As i mentioned in my question in the beginning that after sortin the sr_no disappers i am able to solve it by handling SORT_EVENT.
    Now the only problem left is that it shows me the last results first. Can you please help me here?
    Thanks

  • How to add a new column in SIM datawarehouse screen

    Hi All,
    Need to add one new column in SIM datawarehouse screen and map that with a database table column.Navigation for the that screen is -Shipping/Receiving->Warehouse Delivery ->select ASN->Select Container ->We get a detail screen.There need to add a new column.How to achive this.

    Hi....
       You can edit it from screen painter.. directly....with edit mode....
    > 1. goto -> secondary window -> dictionary fields or program fields...
    > 2. enter the table or program name... and drag that filed in to your table control header
    > 3. Or you can enter I/O field from tool box and text field from tool box for header of that I/O field
    > 4. You can adjust visible length... for your new field...
    > 5. Save and activate.
    Did you faced any problem with that?
    Thanks,
    Naveen Inuganti.

  • How to add a new column as "Warehouse name" in Goods Receipt PO screen?

    Hi, Experts
    I hope to add a new column or just "display" warehouse name besides Whse column in Goods Receipt PO.  How can I do?
    Thanks

    still not work.
    Maybe I did something wrong in UDF definition. Please help to check.   Thanks
    I named UDF as WhseName, and set it as Alphanumeric and lengh is 20, structure is Regular. And all below check-boxes are not ticked.
    And in Goods Receipt PO screen, I marked the UDF as Visible and Active.
    Then I ALTSHIFF2 in the UDF fields, and FMS screen displayed.
    Then I chose the 3rd one: Search in Existing User-defined value According to Saved Query
    T05
    Auto Refresh when field changes is not ticked.

  • Add a new column in VL31N

    Hi experts,
    In TCode, VL31N, at the item table control, I want to add a new column. How do I go about it. Is it modifying the SAP standard or can I enhance the table control to add my own data.
    Warm Regards,
    Abdullah

    yes nagaraj,
    I too searched for the exits available. The inbound delivery may have more than one purchase order items which may be similar. Manual entry will increase chances of an error and it will be very cumbersome for the user to find the purchase order it refers to and then enter the values required.
    Is there any other solution apart from making a Z. Because this is not in line with best practices.
    Warm Regards,
    Abdullah

  • To add a new Column in ME21 item screen

    Hi,
    We need to add a new column at item level of the transaction ME21.
    Does adding the new column refres to adding the new field in the EKPO table as an include structure?
    or
    Is there any screen exits which could be used.
    Thanks in advace.

    Dear,
    Before posting any threads plz search in SDN for ur reference below is one  link
    screen exit for VA01
    Cheers
    fareed

  • Need to add 2 new columns to the existing table control of C223 transaction

    Hi ABAP Gurus,
    I have to do a screen enhancement for transaction C223.
    Below is the requirement:
    need to add 2 new columns to the existing table control of C223 transaction.
    there is no customer exits, screen exit or user exit present for this transaction C223, i have found one enhancement spot for this transaction.
    i dont have any idea how to do this in standard transaction C223, the table control in C223 saves the data to MKAL table and the table control uses the structure MKAL_EXPAND in the screen program.
    i have created an append structure for  the 2 fields to the standard table MKAL.
    Can anyone please suggest me how this can be done in standard screen C223, will the enhancement spot can be used to do this....
    please sugest...
    Thanks & Regards

    Hi Santosh,
    Thanks for the reply. I have looked into this Enhancement Spot CPFX_SCREEN_SET , inside this there is only one method INPUT_DISABLED having below parameters
    IM_MKAL     Importing     Type     MKAL                                                                                Production Version
    EX_MSGID     Exporting     Type     SY-MSGID                                                                                Messages, Message
    EX_MSGTY     Exporting     Type     SY-MSGTY                                                                                Messages, Message
    EX_MSGNO     Exporting     Type     SY-MSGNO                                                                                Messages, Message
    EX_MSGV1     Exporting     Type     SY-MSGV1                                                                                Messages, Message
    EX_MSGV2     Exporting     Type     SY-MSGV2                                                                                Messages, Message
    EX_MSGV3     Exporting     Type     SY-MSGV3                                                                                Messages, Message
    EX_MSGV4     Exporting     Type     SY-MSGV4                                                                                Messages, Message
    EX_INPUT_DISABLE     Exporting     Type     CHAR1                                                                                Display Only if X Was Set
    the BADI definition present here is a SAP internal so we cant implement the BADI , but we can created a enhancement spot implementation for this. as per my understanding on this the enhancement spot is only for making the table control fields display / change .  i dont think this can be used to add two new coloumns to C223 table control.
    I am not sure thats why seeking your help/valuable sugestion on this.
    Please provide your sugestion on this , so that i can come to conclusion on this issue.
    Thanks & Regards
    Siddhartha Mishra

  • How to add a new column (Project Number) in the action items table under NPD Module?

    There are two projects with same name and created by same person in NPD.
    So when it is displayed in "Action Items" table, It looks similar.
    To avoid this, I need one more column (Project Number) to be added in the "Action Items" table and " Strategic briefs and projects" table.
    So, How to add a new column (Project Number) in the "Action Items" table and " Strategic briefs and projects" table under NPD Module?
    Please do the needful.

    There is no out of the box configuration available to add columns to NPD action items.   As always we welcome enhancement requests. 
    Thanks
    Kelly

  • Add a new column to an "Insert Form" created by HTMLDB Wizard throws Error

    Hi,
    My table design has changed and I had to add 2 new columns.
    The corresponding Insert Form/Report/Update Forms created by the HTMLDB should now reflect the new columns that have been added.
    In report and update forms I did not have a problem but in the Insert form, under Edit Page Process I tried to change the sql and I get the below error
    "Encountered the symbol "end-of-file" when expecting one of the following: begin case declare end exception exit for goto if loop mod null pragma raise return select update while with "
    My Edit Page Process SQL is as below-(Last two columns are the NEW columns i.e CDPL and CDPLCA)
    insert into "L2ENTRIES"
    ("AUTONUML2E",
    "ROLLNO",
    "AWARDCODE",
    "ROLLCLASSCODE",
    "SURNAME",
    "FORENAME",
    "SEX",
    "DOB",
    "PPSNO",
    "M1",
    "M2",
    "M3",
    "M4",
    "M5",
    "M6",
    "M7",
    "M8",
    "M9",
    "M10",
    "M11",
    "M12",
    "M13",
    "M14",
    "M15",
    "M16",
    "FEES",
    "CNULLS",
    "CDUPPPS",
    "CROLL",
    "CAWARDS",
    "CMODULES",
    "CHECKCHAR",
    "CHECKNO",
    "VALIDPPS",
    "VALIDPPSUK",
    "PPSNOPAD",
    "CDPL",
    "CDPLCA")
    values (
    :P3_AUTONUML2E,
    :P3_ROLLNO,
    :P3_AWARDCODE,
    :P3_ROLLCLASSCODE,
    :P3_SURNAME,
    :P3_FORENAME,
    :P3_SEX,
    :P3_DOB,
    :P3_PPSNO,
    :P3_M1,
    :P3_M2,
    :P3_M3,
    :P3_M4,
    :P3_M5,
    :P3_M6,
    :P3_M7,
    :P3_M8,
    :P3_M9,
    :P3_M10,
    :P3_M11,
    :P3_M12,
    :P3_M13,
    :P3_M14,
    :P3_M15,
    :P3_M16,
    :P3_FEES,
    :P3_CNULLS,
    :P3_CDUPPPS,
    :P3_CROLL,
    :P3_CAWARDS,
    :P3_CMODULES,
    :P3_CHECKCHAR,
    :P3_CHECKNO,
    :P3_VALIDPPS,
    :P3_VALIDPPSUK,
    :P3_PPSNOPAD,
    :P3_CDPL,
    :P3_CDPLCA)
    It will be great if some one can assist me in this matter.
    Thanks.

    Resolved this by a simple ";" at the end of the insert sql.
    I did not think a ";" will be necessary because when you edit the page process a ";" is not visible.

  • Can't add a new column to LCD table? Option there, just wont add it.

    I have a LCD form with a table in it. Im trying to simply add a new column to the table. The option is there but the column just wont appear after clicking add Column to Left. I selected a column, right clicked the space > Insert > Column to left. But wont intsert. The table object properties tab shows rows and colum numbers but they are grayed out.
    See screenshots:
    http://www.emermed.net/staging/forums...
    http://www.emermed.net/staging/forums...
    This is a dynamic table where a new row can be inserted using a button. Is that dynamic nature the issue? Id hate to undo all the dynamic flow and programming just to add a column then reapply everything.
    Thanks!

    Hi,
    You don't add columns in the Object > Table palette (Screenshot 2). I suspect that the problem is that there is not enough on the page (within the content area) to actually add the column. In Screenshot 1, if you look at the width of the highlighted column versus the space available to the right of the table, you will see that a column cannot be added due to space restrictions.
    Reduce the width of the highlighted column (temporarily), then add a column. Once added, you can resize the columns to match the page width.
    Hope that helps,
    Niall

  • Check 2 tables(Table A and Table B) and figure out new columns present in Table A and add these new columns to Table B

    How to check 2 tables(Table A and Table B) and figure out new columns present in Table A and add these new columns to Table b.
    DDL-
    Create table A
    ( A INT,
    B INT,C VARCHAR(2)
    Create table B
    A INT,
    B INT
    Any advice on the best approach or method to achieve this.
    I understand that I need to check the schema of the columns and then do a match between 2 tables and find new columns and then alter my target table
    Mudassar

    Can you try this..
    CREATE TABLE A ( A INT, B INT, C VARCHAR(2) )
    CREATE TABLE B ( A INT, B INT )
    Declare @ColumnVar nvarchar(128),@DatatypeVar nvarchar(128)
    SELECT @ColumnVar=x.COLUMN_NAME, @DatatypeVar=x.DATA_TYPE
    FROM INFORMATION_SCHEMA.COLUMNS AS x
    WHERE TABLE_NAME = 'A'
    AND NOT EXISTS ( SELECT *
    FROM INFORMATION_SCHEMA.COLUMNS
    WHERE TABLE_NAME = 'B'
    AND COLUMN_NAME = x.COLUMN_NAME )
    Declare @SQL VarChar(1000)
    SELECT @SQL = 'ALTER TABLE B ADD ' + @ColumnVar + ' '+ @DatatypeVar
    Exec (@SQL)
    select * from B
    Please Mark This As Answer if it helps to solve the issue
    http://stackoverflow.com/questions/2614101/alter-table-my-table-add-column-int

  • Need to add a new column in the extended VO

    Hi
    I have an urgent requirement like i need to add a new column in one of the extended VO.Can anyone give the procedure to do that..
    Please do the needful.
    Thanks
    Preeti

    Hi Gaurav,
    For example...
    Consider seeded VO is XXXVO and we added a new column to the XXX by extending XXCHRXXXVO(extended VO).and the we gone thru the full substitution process..
    Now new requirement came as add a new column to extended VO - XXCHRXXXVO.Can you please tell in this example scenario? It will be good if you provide the inputs...
    Thanks
    Preeti

  • How to add a new column in a SWITCHER PAGE

    Hi,
    I am working on iexpense and i have to add two new fields (column) in expense line GRID in iexpense Allocation page.
    for that i modified the VO and added my attributes and by personalization wanted to add a new column to that ...but its not happening......
    Could any one please explain any alternative way to get rid of that....
    Regards,
    prakash

    Yes i am trying to add by personalization only.. and i am giving all the credential correctly..but still i am not getting the new column .....
    for that i have modified my VO also.... to add that new attribute and given that attribute name and new VO name in the desired field while doing personalization.....
    is there any alternative soultion is there ..by which i can add it?
    Thanks
    Prakash

  • Add a new column in Agreement Items table control (ME31K/ME32K/ME33K)

    Hi guys,
    I have a big issue.
    How can I add a new column at Agreement Items table control (ME31K/ME32K/ME33K) level.
    Thanks a lot.

    I think i solved the problem . The single way to to that is to modify the SAP standard Screen.

Maybe you are looking for

  • Receiving OCI/ORA-27163 when querying XML data in 11g.

    When querying a table with a column stored in XML format, we get this error for large XML values. This works in Oracle 10g but this error happens when the same data is queried in an 11.2.0.3 instance. I have had a support request open with Oracle for

  • Calling Plan and Upgrade

    Appologies to clutter another thread about the upgrade but i cant find any info on this question To upgrade i will need to start a new contract. Is that all that will change? will my current package be affected? Currently have unlimited anytime calls

  • Gate pass

    hello all, i want that SBO will produce the gate pass for all of the material/Equipment that is going out in the company Premisses. this is the Scenario, we have our own equipment, then it was damage and needs to be repaired outside, i want that this

  • No subject warning

    I just upgraded to Leopard and when I send an outgoing email without a subject, a have to click through a "warning no subject" message before I can send the email. Since I rarely add subject headers, this is annoying. There must be some way to disabl

  • Reading the contents of a file using readLine()

    Hi everyone, I am reading from a file using the readLine() method and assigning the value to a String. Now using readLine() i can read only a single line in the document. My file consists of several lines. how do i read from all the lines and assign