Iam unable to activae the CI_CATSDB  structrure

Hi,
    Actually i added one custom field into the table CATSDB using CI_CATSDB structure and activated. But now i dont want to that custom field into that table CATSDB and deleted that field from the CATSDB. but CI_CATSDB is not activated without the fields and same time iam unable to delete that data element and it is linked with some standard tables.
Please help me out asap
Regards
Nagendra

Hi Nagendra prasad,
Goto SE14 transaction and try to Activate and Adjust the Database table
Best regards,
raam

Similar Messages

  • Why iam unable to get the valu from combobox

    when i run this code
    everytime iam getting blank alert
    y iam unable to get the selected item from combo box
    thank u
    <%@ page import="java.util.Date"%>
    <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
        pageEncoding="ISO-8859-1"%><%@page import="java.sql.*,java.util.*,java.text.*,java.util.ArrayList, java.util.List,org.joda.time.DateTimeConstants,org.joda.time.LocalDate,
    org.joda.time.Weeks"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <HTML>
      <HEAD>
      <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
        <TITLE>Reading Data From Text Fields</TITLE>
      </HEAD><BODY onload=Datevalue()>
         <form name="form1" action ="" method="post" onSubmit="update();">
        <img src="nendrasys_logo.gif" align="right"></img>
      <b><font color="669900"><h4 align="left">UserName:</font> 
    <jsp:useBean id="user" scope="session" class="nendrasys.User" />
    <jsp:getProperty name="user" property= "name"/>
    &nbsp&nbsp&nbsp&nbsp
    <b><font color="90be00"><h4 align="left">Designation:</font>
      <jsp:getProperty name="user" property= "designation"/>
      <br><font color="669900"><h4 align="right">Project:</font>
        <select name="Projects">
         <option>Project:1</option>
         <option>Project:2</option>
         <option>Project:3</option>
         <option>Project:4</option>
         <option>Project:5</option>
    </select>
    <%! String s; %>
    <% DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd");
            Date date = new Date();
            //out.println(dateFormat.format(date));
                s=  dateFormat.format(date);
    %>
    <select name="Dates" sizes=1 id="dates" onchange="Datevalue(this.value)">
    <script type="text/javascript">
    <!--//
    var begDate = new Date("10/01/2008");
    var endDate = new Date();
    var previousDate =new Date();
    var presentDate =new Date("<%=s %>");
    endDate.setDate(presentDate.getDate()+14);
    begDate.setDate(begDate.getDate()+(6-begDate.getDay()));
    while (begDate <= endDate) {
    var datestring=[begDate.getDate(),(begDate.getMonth()+1),begDate.getFullYear()].join('/');
    //  var datestring=[begDate.getDate().padZero(2),(begDate.getMonth()+1).padZero(2),begDate.getFullYear()].join('/');
    if(previousDate < presentDate && presentDate <= begDate )
        document.writeln('<option selected>'+(datestring)+'</option>')}
    else   
    document.writeln('<option>'+(datestring)+'</option>')};
         previousDate.setDate(begDate.getDate());
        previousDate.setMonth(begDate.getMonth());
         previousDate.setYear(begDate.getYear());
        begDate.setDate(begDate.getDate()+7);
    document.writeln('</select>');
    //-->
    </script>
    <br><br>
    <TABLE BORDER="2" BORDERCOLOR="#336699" CELLPADDING="2" CELLSPACING="2" WIDTH="100%">
    <TR>
    <TD>&nbsp&nbsp&nbsp</TD>
    <TD bgcolor="669900"><label  id="sun"></label></TD>
    <TD bgcolor="90be00"><label for="mon" id="Mon">Mon</label></TD>
    <TD bgcolor="669900"><label for="tue" id="tue">Tue</label></TD>
    <TD bgcolor="90be00"><label for="wed" id="wed">Wed</label></TD>
    <TD bgcolor="669900"><label for="thu" id="thu">Thu</label></TD>
    <TD bgcolor="90be00"><label for="fri" id="fri">Fri</label></TD>
    <TD bgcolor="669900"><label for="sat" id="sat">Sat</label></TD>
    <TD bgcolor="90be00"><label for="tot" id="tot">Total</label></TD>
    </TR>
    <tr>
    <th>Project Work</th>
    <td bgcolor="669900"><input type="text" name="c11" size="2" value="7" onBlur="javascript:document.frm.c12.value = document.frm.c11.value"></td>
    <td bgcolor="90be00"><input type="text" name="c12" size="2" value="3"></td>
    <td bgcolor="669900"><input type="text" name="c13" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c14" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c15" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c16" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c17" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c18" size="4"></td>
    </tr>
    <tr>
    <th>Internal N/C</th>
    <td bgcolor="669900"><input type="text" name="c21" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c22" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c23" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c24" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c25" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c26" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c27" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c28" size="4"></td>
    </tr>
    <tr>
    <th>Public Holidays</th>
    <td bgcolor="669900"><input type="text" name="c31" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c32" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c33" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c34" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c35" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c36" size="2" ></td>
    <td bgcolor="669900"><input type="text" name="c37" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c38" size="4"></td>
    </tr>
    <tr>
    <th>Holidays Taken</th>
    <td bgcolor="669900"><input type="text" name="c41" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c42" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c43" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c44" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c45" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c46" size="2"></td>
    <td bgcolor="669900"><input type="text" name="c47" size="2"></td>
    <td bgcolor="90be00"><input type="text" name="c48" size="4"></td>
    </tr>
    </TABLE>
    <br>
    <center><input type="submit"  value="Submit" /> </center>
    <%
    String username   = request.getParameter("userid");
    String pwd  = request.getParameter("pwd");
    String connectionURL = "jdbc:mysql://localhost:3306/timestamp";
    Connection connection = null;
    Statement statement = null;
    ResultSet rs = null;
    String sql=null;
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    connection = DriverManager.getConnection(connectionURL, "root","nendrasys");
    statement = connection.createStatement();
    //rs=statement.executeQuery(sql); %>
    </form>
    <SCRIPT language='Javascript'>
    function update()
        alert("ciaoooooo");
        <%
            try
                String value=request.getParameter("c11");
                String value1=request.getParameter("c12");
             //   if(value!=null)
              //  System.out.println(value);             
               // System.out.println(value1);
            catch(NullPointerException n)
        %>
    </script>
    <SCRIPT language='Javascript'>
    function Datevalue(date)
           //  document.getElementById("dates").innerHTML=document.getElementById("sun").value;
      alert(date);
             //  alert( document.getElementById("dates"))
                <% System.out.println("bye");%>
    </SCRIPT>
    </BODY>
    </HTML>

    You mixed Java and Javascript in the expectation that they runs simultaneously.
    You are Wrong.
    You need to distinguish between the server side languages and client side languages. Java/JSP runs at the server side and produces a HTML page with other client side stuff in it like CSS and Javascript. When the HTML page is finished, it will be sent to the client and then Java/JSP stops. Once the HTML page is arrived at the client, there is no one line Java code in it, only its output/result. Do a View Source in your favourite web browser to see it. Only from that moment on, Javascript runs and/or can be invoked.
    Whenever you want to use Java variables in Javascript, you need to print them out as a Javascript variable. Whenever you want to use Javascript variables in Java, you need to invoke a request to the server and pass them as parameters. The request can be either synchronous (a link or a form submit) or asynchronous (ajaxical).

  • Iam unable to access the dyn/admin homepage

    Iam using ATG 10.1.2 ,weblogic 10.3 and jdk 1.6.0_35
    while iam running,iam not able to sethe dyn/admin home page,below are the errors:
    ````````````````````````````````````````````````````````````````````````
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet Error compiling page: /index.jhtml : Unable to execute the command 'javac -target 1.5 -classpath "C:\Verizon\Java\jdk1.6.0_35\jre\lib\resources.jar;C:\
    re\modules\glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar;C:\Verizon\Oracle\Middleware\modules\jaxb-impl.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxws.resolver_1.0.0.0_2-1-5.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxws.fastinfoset_1.0.0.0_2-1-5.jar;C:\Veriz
    Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2\lib\ant-contrib.jar;C:\Verizon\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyclient.jar;C:\Verizon\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyLocale_cs.jar;C:\Verizon\Oracle\Middleware\wlserver_
    \Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_store\dcdkmb\.\atglib\_DAS_slib_sresources.jar;C:\Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet The detailed exception is: java.io.IOException: Cannot run program "javac": CreateProcess error=206, The filename or extension is too long atg.ser
    les\activation.jar;C:\Verizon\Oracle\Middleware\modules\jsr173_1.0_api.jar;C:\Verizon\Oracle\Middleware\modules\jaxb1-impl.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar;C:\Verizon\Oracle\Middleware\modules\jaxb-impl.jar;C:\Verizon\Oracle\
    Verizon\Oracle\Middleware\modules\org.apache.ant_1.7.1\lib\ant.jar;C:\Verizon\Oracle\Middleware\modules\org.apache.ant_1.7.1\lib\xml-apis.jar;C:\Verizon\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2\lib\ant-contrib.jar;C:\Verizon\Oracle\Middleware\wlserver_10
    iddleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_store\dcdkmb\.\atglib\_DAF.Endeca.Base_slib_sclasses.jar;C:\Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_store\d
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet The detailed exception is: java.io.IOException: Cannot run program "javac": CreateProcess error=206, The filename or extension is too long
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.jsp11.JSPPageProcessor.javaToClass(JSPPageProcessor.java:416)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.PageProcessor.compilePageClass(PageProcessor.java:2437)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.PageProcessor.getPageInfo(PageProcessor.java:1787)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.jsp12.Jsp12PageProcessor.getPageInfo(Jsp12PageProcessor.java:324)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.minimal.MinimalServletContainer.compileServlet(MinimalServletContainer.java:153)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.PageCompileServlet.service(PageCompileServlet.java:303)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.DynamoServlet.service(DynamoServlet.java:148)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:160)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.droplet.DropletEventServlet.service(DropletEventServlet.java:657)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:267)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.DispatcherPipelineServletImpl.service(DispatcherPipelineServletImpl.java:253)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.MimeTyperPipelineServlet.service(MimeTyperPipelineServlet.java:228)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.FileFinderPipelineServlet.service(FileFinderPipelineServlet.java:729)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.DispatcherPipelineServletImpl.service(DispatcherPipelineServletImpl.java:275)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.ServletPathPipelineServlet.service(ServletPathPipelineServlet.java:208)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.security.ExpiredPasswordAdminServlet.service(ExpiredPasswordAdminServlet.java:312)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.BasicAuthenticationPipelineServlet.service(BasicAuthenticationPipelineServlet.java:513)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.DynamoPipelineServlet.service(DynamoPipelineServlet.java:491)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.dtm.TransactionPipelineServlet.service(TransactionPipelineServlet.java:249)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.HeadPipelineServlet.passRequest(HeadPipelineServlet.java:1271)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.HeadPipelineServlet.service(HeadPipelineServlet.java:952)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:272)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.nucleus.servlet.NucleusProxyServlet.service(NucleusProxyServlet.java:237)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet Caused by :atg.servlet.pagecompile.AutoCompileException: Unable to execute the command 'javac -target 1.5 -classpath "C:\Verizon\Java\jdk1.6.0_35\jre\l
    izon\Oracle\Middleware\modules\glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar;C:\Verizon\Oracle\Middleware\modules\jaxb-impl.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxws.resolver_1.0.0.0_2-1-5.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxws.fastinfoset_1.0.0.
    apis.jar;C:\Verizon\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2\lib\ant-contrib.jar;C:\Verizon\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyclient.jar;C:\Verizon\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyLocale_cs.jar;C:\Verizon\Oracle\
    slib_sclasses.jar;C:\Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_store\dcdkmb\.\atglib\_DAS_slib_sresources.jar;C:\Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\t
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet The detailed exception is: java.io.IOException: Cannot run program "javac": CreateProcess error=206, The filename or extension is too long
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.SystemJavaSourceCompiler.javaToClass(SystemJavaSourceCompiler.java:248)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.jsp11.JSPPageProcessor.javaToClass(JSPPageProcessor.java:400)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.PageProcessor.compilePageClass(PageProcessor.java:2437)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.PageProcessor.getPageInfo(PageProcessor.java:1787)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.jsp12.Jsp12PageProcessor.getPageInfo(Jsp12PageProcessor.java:324)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.minimal.MinimalServletContainer.compileServlet(MinimalServletContainer.java:153)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pagecompile.PageCompileServlet.service(PageCompileServlet.java:303)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.DynamoServlet.service(DynamoServlet.java:148)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:160)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.droplet.DropletEventServlet.service(DropletEventServlet.java:657)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:267)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.DispatcherPipelineServletImpl.service(DispatcherPipelineServletImpl.java:253)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.MimeTyperPipelineServlet.service(MimeTyperPipelineServlet.java:228)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.FileFinderPipelineServlet.service(FileFinderPipelineServlet.java:729)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.DispatcherPipelineServletImpl.service(DispatcherPipelineServletImpl.java:275)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.ServletPathPipelineServlet.service(ServletPathPipelineServlet.java:208)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.security.ExpiredPasswordAdminServlet.service(ExpiredPasswordAdminServlet.java:312)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.BasicAuthenticationPipelineServlet.service(BasicAuthenticationPipelineServlet.java:513)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.DynamoPipelineServlet.service(DynamoPipelineServlet.java:491)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.dtm.TransactionPipelineServlet.service(TransactionPipelineServlet.java:249)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.passRequest(PipelineableServletImpl.java:157)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.HeadPipelineServlet.passRequest(HeadPipelineServlet.java:1271)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.HeadPipelineServlet.service(HeadPipelineServlet.java:952)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.servlet.pipeline.PipelineableServletImpl.service(PipelineableServletImpl.java:272)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at atg.nucleus.servlet.NucleusProxyServlet.service(NucleusProxyServlet.java:237)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:184)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3732)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3696)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2273)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2179)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1490)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.work.ExecuteThread.execute(ExecuteThread.java:256)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet at weblogic.work.ExecuteThread.run(ExecuteThread.java:221)
    **** Error Thu Mar 14 20:06:48 IST 2013 1363271808440 /atg/dynamo/servlet/pagecompile/PageCompileServlet
    <Mar 14, 2013 8:06:53 PM IST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 0:0:0:0:0:0:0:1:50,299 during the configured idle timeout of 5 secs>
    <Mar 14, 2013 8:06:53 PM IST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 0:0:0:0:0:0:0:1:50,298 during the configured idle timeout of 5 secs>
    **** info Thu Mar 14 20:10:12 IST 2013 1363272012801 /atg/dynamo/servlet/adminpipeline/AuthenticationServlet HTML admin authentication failure from 172.21.31.25(/dyn/admin)
    **** Warning Thu Mar 14 20:10:17 IST 2013 1363272017174 /atg/dynamo/security/AdminUserAuthority Attempt to log into account admin with incorrect password
    <Mar 14, 2013 8:10:18 PM IST> <Warning> <Socket> <BEA-000449> <Closing socket as no data read from it on 172.21.31.25:2,261 during the configured idle timeout of 5 secs>
    **** info Thu Mar 14 20:10:20 IST 2013 1363272020175 /atg/dynamo/servlet/adminpipeline/AuthenticationServlet HTML admin authentication failure from 172.21.31.25(/dyn/admin)
    **** Warning Thu Mar 14 20:10:26 IST 2013 1363272026409 /atg/dynamo/security/AdminUserAuthority Attempt to log into account admin with incorrect password
    **** info Thu Mar 14 20:10:29 IST 2013 1363272029410 /atg/dynamo/servlet/adminpipeline/AuthenticationServlet HTML admin authentication failure from 172.21.31.25(/dyn/admin)
    **** info Thu Mar 14 20:10:34 IST 2013 1363272034438 /atg/dynamo/servlet/pagecompile/ExtendedJhtmlPageProcessor Processing /index.jhtml to C:\Verizon\ATG\ATG10.1.2\home\pagebuild\_dasadmin_3\_index.java
    **** info Thu Mar 14 20:10:34 IST 2013 1363272034459 /atg/dynamo/servlet/pagecompile/ExtendedJhtmlPageProcessor Compiling C:\Verizon\ATG\ATG10.1.2\home\pagebuild\_dasadmin_3\_index.java
    **** Error Thu Mar 14 20:10:34 IST 2013 1363272034624 /atg/dynamo/servlet/pagecompile/PageCompileServlet Error compiling page: /index.jhtml : Unable to execute the command 'javac -target 1.5 -classpath "C:\Verizon\Java\jdk1.6.0_35\jre\lib\resources.jar;C:\
    re\modules\glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar;C:\Verizon\Oracle\Middleware\modules\jaxb-impl.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxws.resolver_1.0.0.0_2-1-5.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxws.fastinfoset_1.0.0.0_2-1-5.jar;C:\Veriz
    Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2\lib\ant-contrib.jar;C:\Verizon\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyclient.jar;C:\Verizon\Oracle\Middleware\wlserver_10.3\common\derby\lib\derbyLocale_cs.jar;C:\Verizon\Oracle\Middleware\wlserver_
    \Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_store\dcdkmb\.\atglib\_DAS_slib_sresources.jar;C:\Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_
    **** Error Thu Mar 14 20:10:34 IST 2013 1363272034624 /atg/dynamo/servlet/pagecompile/PageCompileServlet
    **** Error Thu Mar 14 20:10:34 IST 2013 1363272034624 /atg/dynamo/servlet/pagecompile/PageCompileServlet The detailed exception is: java.io.IOException: Cannot run program "javac": CreateProcess error=206, The filename or extension is too long atg.ser
    les\activation.jar;C:\Verizon\Oracle\Middleware\modules\jsr173_1.0_api.jar;C:\Verizon\Oracle\Middleware\modules\jaxb1-impl.jar;C:\Verizon\Oracle\Middleware\modules\glassfish.jaxb.xjc_1.2.0.0_2-1-14.jar;C:\Verizon\Oracle\Middleware\modules\jaxb-impl.jar;C:\Verizon\Oracle\
    Verizon\Oracle\Middleware\modules\org.apache.ant_1.7.1\lib\ant.jar;C:\Verizon\Oracle\Middleware\modules\org.apache.ant_1.7.1\lib\xml-apis.jar;C:\Verizon\Oracle\Middleware\modules\net.sf.antcontrib_1.1.0.0_1-0b2\lib\ant-contrib.jar;C:\Verizon\Oracle\Middleware\wlserver_10
    iddleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_store\dcdkmb\.\atglib\_DAF.Endeca.Base_slib_sclasses.jar;C:\Verizon\Oracle\Middleware\user_projects\domains\prepaid_store_domain\servers\AdminServer\tmp\_WL_user\vzw_mls_store\d
    1363272034624 /atg/dynamo/servlet/pagecompile/PageCompileServlet at
    Please do the needful by resolving this problem.
    ThankYou!!!!!!

    Hi ,
    I am also facing the login issue to dynamo admin server .
    I could able to logged  into ACC(ATG Control Center) .But I am not able to access the dynamo admin server both for production and publishing server even entering the same credentials that i used for ACC.
    Both the servers are up and running with out any issues .
    Application server is weblogic server .
    OS is Windows.
    I am getting this error :
    Make sure that you have the 'bin' directory for your JDK in your PATH variable before starting Dynamo and that you have enough swap space.
    The detailed exception is: java.io.IOException: Cannot run program "javac": CreateProcess error=206, The filename or extension is too long.
    I have set it correctly before installing ATG like this  D:\Java\jdk1.6.0_45\bin;  . Even though i am getting the same issue.
    From your previous post .I got this . But had a doubt on this like where to add  .I could not find this location.
    #atg\dynamo\servlet\pagecompile\ExtendedJhtmlPageProcessor.properties
    $class=atg.servlet.pagecompile.jsp11.JSPPageProcessor
    javaCompilerClassName=atg.servlet.pagecompile.SunJavaSourceCompiler
    I am not able to understand where it went wrong . Please tell me as i got strucked in this.
    Thanks,
    keerthi

  • Unable to get the media from the Endeca Experience manager version 11.0.0

    Hi.,
    Iam unable to get the media from the Endeca Experience Manager for my endeca app 'CRS'.
    I have created the endeca app named 'CRS' using the reference app discover-data-catalog-integration and successfully initialized and indexed.Iam able to see the Indexed data in my endeca_jspref and the configurations in my Experience Manager.
    I want to import the media from my experience manager(this is my actual requirement) and for this iam executing the get_media.bat cmd from my application's control folder,the cmd was executing successfully without any errors, but the media folder was not populating with any images that i can see in the Experience manager .Please do the needful to resolve this issue.
    ThankYou!!!
    C:\>cd Endeca\apps\CRS\control
    C:\Endeca\apps\CRS\control>get_media.bat
    [07.04.14 11:48:08] INFO: Checking definition from AppConfig.xml against existing EAC provisioning.
    [07.04.14 11:48:09] INFO: Updating provisioning for component 'DailyReportGenerator'.
    [07.04.14 11:48:09] INFO: Updating definition for component 'DailyReportGenerator'.
    [07.04.14 11:48:10] INFO: Definition updated.
    [07.04.14 11:48:10] INFO: Exporting resource 'http://localhost:8006/ifcr/sites/CRS/media' to 'C:\Endeca\apps\CRS\control\..\config\media'
    [07.04.14 11:48:11] INFO: Finished exporting resource.

    What media are you trying to import?  There won't be any media returned with get_media unless you but media in to begin with using the set_media cmd.  However, it's preferable to use the media MDEX rather than storing media in the ECR.

  • Unable to find the master data loaded request in manage tab

    Hi All,
    Iam unable to see the loaded request in the master data manage tab after some time of loading.
    Immediately after loading i could see the request.If i revisit the manage tab,iam unable to see the request.
    However data is available for the info object .
    Can anyone please suggest on this.
    Regards,
    Kavya

    hi Devupalli,
    Note your request number, find it using RSRQ tcode. Now click on the target icon and see if it takes you to the manage of your infoobject.
    There is a very common error which we sometimes make: are u sure you're checking the right thing? please check that if your infoobject has text, attribute and hierarchy, you're checking in the manage of the relevant one.
    For ex, if you're loading text, you have to go to manage of the text.
    Hope this helps!
    Sheen

  • Unable to create the HL7Library Project in CM

    hi,
    i am trying to convert a pdf doc into xml and then deploy it on XI server.
    for which i created the parser project and got it executed succesfully.Now i am trying to create a HL7 library project,so that i can deploy both parser and HL7  library project on to XI server.
    the problem is iam unable to find the drop down list of libraries while trying to create HL7 library project.
    Kindly help me in this regard...
    Regards
    Madhu

    Hi
    Try this. Log into the Workspace using weblogic user. Go to the Administration option (up and right if I'm not wrong) and check if the roles that you create for the process has the users correctly assigned.
    Regards,
    isabelbernely

  • Unable to find the column pay value and monthly salary in element entries

    hi,
    iam unable to find the payvalue and monthly salary in element entries form.
    people enter and maintain> assignment > entries >entry values..
    please tell me the table and column where the payvalue and monthlly salary is going to get populate.
    Thanks,
    vijetha.c

    It seems that you're using an application to connect to an Oracle database. It's general Oracle Database Forum, so you should put your question under correct topic
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Unable to kill the concurrent program

    Hi
    I have two cocnurrent programs say TEST_PROG1, TEST_PROG2.
    if i am submitting TEST_PROG1 then oracle session id and oracle process id are popluating in fnd_concurrent_requests table
    where as if iam doing the same with TEST_PROG2 then oracle session id and oracle process id are populating as null.
    Is there any configuration problem with the second problem?
    And if i amtrying to kill the request of TEST_PROG2, Using the below query
    SELECT s.SID,
    s.serial#,s.audsid,r.oracle_session_id
    FROM fnd_concurrent_requests r,
    gv$session s
    WHERE 1 =1
    AND r.request_id = 2998345;
    AND r.oracle_session_id = s.audsid(+);
    AND r.request_date > TRUNC(SYSDATE-1)
    AND r.status_code NOT IN ('C','E','D','X');
    which is returning null .But iam using serial#, audsid to kill the session
    using
    l_sql := 'alter system kill session '''|| l_sid || ','||l_serial_number||'''';
    but iam unable to kill the session as thwy are getting null from the above sql.
    Please help me to resolve this.
    Thanks
    Satya

    HI
    Followed the link shared and in one of your replied i found the below
    I am not sure why there are no values stored in FND_CONCURRENT_REQUESTS table (for some columns) when you submit such reports, and I believe if this is resolved you will be able to see the trace files generated. So, is it possible to register any of these custom reports in one of the standard responsibilities and see if the values in the table are populated and/or the trace file get generated then?
    I have added my concurrent program to US HRMS Reports & Processes request group. But still the same problem
    Thanks
    Satya

  • Unable to install the bbm 7 ...please help me

    Hi experts,
    Iam using the bb torch 9860 with Vodafone network ..iam unable to download the bbm 7 messenger it pop up as there is a error in downloading the messenger ..the os is 7 ....please help me in installing the bbm 7 messener .
    Solved!
    Go to Solution.

    That's because BBM7 is not yet officially supported (usable) in India.
    You can download here
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Unable to delete the DTP request.

    Hi friends, iam unable to delete the DTP request, its showing in yellow mode, iam unable to change it to green or red, i checked in SM50 and SM51 ...is there any other way to delte the request ....any FM .
    My version is 7.0 and SP16 BI_Content 9.
    Thanks in advance,

    Hi,
    Try this.
    RSBKDATAPAKID DTP: Status Table for Data Packages.
    Check this table if you can change the status to red.
    If yes - than delete all the requests from manage screen.
    Also check table RSBKREQUEST DTP to delete Request if possible.
    Hope this helps.
    Thanks,
    JituK

  • When i trybto install the sound library iam ased yo login the password but it doesnt work. why?

    iam unable to install the sound library on my garageband because its not accepting the password. am i getting it wrong here? isnt it the apple id password that its askign for?if not then what other password? please help! urgent!

    You need the admin password you created when you first set up the machine.  Just about every installer running under OS X will require you to authorize the installation by entering an administrator password - even software update requires this.  You really should not forget your admin password, as it is required for many things in OS X since, unlike Windows, you often need to manually type in the admin password to proceed with an install or update (whereas Windows will take admin authority, if you are logged in as an admin, by simply clicking continue or yes).
    If you cannot remember your admin password, you can reset it from the recovery CD that came with your mac - http://support.apple.com/kb/HT1274

  • I have a mac osx 10.411G4 powre pc and recently I down loaded excel for mac 2004 the problem that iam having is that the two other programs i downloaded one program it says unable to read the dictionary of the application of the extension because it is no

    I have a mac osx 10.411 power pc and recently i downloaded excel for mac 2004 so that i could download some program that only would work if i have excel for mac but what happen was it went to script and said that unable to read the dictionary of the application of the extension because it is not scriptable and the second pop up said the document autorun,inf could not open script editor can not open files in script editor app can any one help me how do i get these program working  thank you norro460

    good afternoon  Limnos i think  i didnt give the right info I didnt download well in a way i did i bought a copy of microsoft excel for mac 2004 i loaded on to my mac then i went and down loaded some software that said i needed to have excel you see my mac is osx 10.4,11 power pc G4 and that is were i had the problem now  the excell loaded allright but the the other programs did not the pop ups say it is not scriptable or can not read dictionary if you can help m,e iam not great with computers but i  along

  • TS1702 iam unable to read i books contents . display of i books is disappearing in 5 seconds after the i book. recent i book 3 is also updated. but the problem is still there. in my ibook contents occupied space is 53 mb.

    hi.
    I am unable to read i book contents.
    once i touch the i book icon , my contents in the i books will be visible for 5 seconds n then automatically i book closes by itself.
    iam unable to acess to ibook at all. i have updated ios6.0.1.
    also updated i book 3.0.1. but still the same problem.
    same type of problem iam facing when i open magzster some times.
    help me n guide me to resolve this problem.
    or you can call me to the following number.
    regards.
    k.n.balaji.
    india.
    +919989092629

    hi.
    I am unable to read i book contents.
    once i touch the i book icon , my contents in the i books will be visible for 5 seconds n then automatically i book closes by itself.
    iam unable to acess to ibook at all. i have updated ios6.0.1.
    also updated i book 3.0.1. but still the same problem.
    same type of problem iam facing when i open magzster some times.
    help me n guide me to resolve this problem.
    or you can call me to the following number.
    regards.
    k.n.balaji.
    india.
    +919989092629

  • TS3992 I am not able to backup my iphone to Icloud because my wi-fi is greyed out on my phone. The wi-fi button will not slide to the ON position, therefore, Iam unable to backup my phones contents. What can I do?

    I am not able to backup my Iphone to Icloud because my wi-fi is greyed outon my phone.  The wi-fi button will not slide to the ON position, therefore, Iam unable to backup my phones contents. What can I do? I need to save my pics, info....etc, because I have to get another phone.

    Back up to your computer instead.  To do this, connect your phone to your computer, open iTunes, click on the name of your phone in iTunes, go to the Summary tab of your iTunes sync settings and click Back Up Now.  Also go to File>Devices>Transfer Purchases to transfer your apps and other purchased media to your iTunes library.  Finally, save any photo stream photos to your camera roll (open your my photo stream album, tap Edit, tap the photos, tap Share, tap Save to Camera Roll), then import your camera roll photos and videos to your computer as explained here: http://support.apple.com/kb/HT4083.  (You don't need to delete them from your phone afterwards unless you need the space.)
    If you're getting another phone, be sure to delete your iCloud account and turn off iMessage, FaceTime and Game Center before doing so.  (See http://support.apple.com/kb/HT5661).
    This is a support article on your wifi issue: http://support.apple.com/kb/ts1559.

  • Iam unable to switch using the stop button in IPOD

    whenever a song/video is played iam unable to switch off the IPDOD but if press the menu button for some 6 seconds and then press the hold button iam able to switch off.If the song/video is not played then if i press the hold button iam able to switch off without any problem.

    When a song is NOT playing, press and hold the Play/Pause button. THis is how you shut off the iPod. Then, you can engage the Hold switch to ensure you don't accidentally turn it back on.
    CHeers
    !-Bryan

Maybe you are looking for