Generate new p_id ?

Hi,
Is it possible to generate a new p_id value from plsql (Ideally created as part of a page import process)?
We have a large APEX report - that we want to modify the exported page source to globally update some values. In addition to the update, we want to add some fields on the report via sql - The number of fields is substantial hence the request.
We have the appropriate code developed to create the new region items, but are not sure how to generate the id value:
wwv_flow_api.create_page_plug (
p_id=> 5084329650024752 + wwv_flow_api.g_id_offset,
p_flow_id=> wwv_flow.g_flow_id,
p_page_id=> 3001,
What is the package that I can call from within the sql to replicate a generation of the 5084329650024752 value?
TIA
Jon

Jon - This is not an endorsement of what you're doing but I'll tell you that you can use any number that doesn't cause a unique constraint violation when you import the application. We use the function wwv_flow_id.next_val which happens to be publicly executable and also has a public synonym with the same name.
Scott

Similar Messages

  • Sum of LineCount Including Groups and Detail Data On Each Page Used To Generate New Page If TotalPageLineCount 28

    Post Author: tadj188#
    CA Forum: Formula
    Needed: Sum of LineCount Including Groups and Detail Data On Each Page Used To Generate New Page If TotalPageLineCount > 28
    Background:
    1) Report SQL is created with unions to have detail lines continue on a page, until it reaches page footer or report footer, rather than using  subreports.    A subreport report is now essentially a group1a, group1b, etc. (containing column headers and other data within the the report    with their respective detail lines).  I had multiple subreports and each subreport became one union.
    Created and tested, already:
    1) I have calculated @TotalLineForEachOfTheSameGroup, now I need to sum of the individual same group totals to get the total line count on a page.
    Issue:
    1) I need this to create break on a certain line before, it dribbles in to a pre-printed area.
    Other Ideas Appreciated:
    1) Groups/detail lines break inconveniently(dribble) into the pre-printed area, looking for alternatives for above situation.
    Thank you.
    Tadj

    export all image of each page try like this
    var myDoc = app.activeDocument;
    var myFolder = myDoc.filePath;
    var myImage = myDoc.allGraphics;
    for (var i=0; myImage.length>i; i++){
        app.select(myImage[i]);
        var MyImageNmae  = myImage[i].itemLink.name;
        app.jpegExportPreferences.jpegQuality = JPEGOptionsQuality.high;
        app.jpegExportPreferences.exportResolution = 300;
           app.selection[0].exportFile(ExportFormat.JPG, File(myFolder+"/"+MyImageNmae+".JPEG"), false);
        alert(myImage[i].itemLink.name)

  • Premiere project opened - closed sequences and generating new peak files

    Hey guys,
    I'm working on a big project, which resides on our Drobo. I have been sorting clips and working in sequences for the last couple days now. All media was loaded fine, and peak files were generated.
    When I went to open the project this morning, all of the sequences I had been working on (accept for one) had been closed, instead of opening up like how I left them. Further, Premiere is now generating new audio peak files for the project, which is taking forever. Finally, it took 25 minutes to load all of the clips (about 800 or so). They finally finished loading, but I can't start working until the peak files are finished. All in all, i've been at work for 1 hour and still can't work.
    Basically, why didn't Premiere open the project as I left it last night? Closed sequences, slow load time, generating new peak files?
    I'm working with footage from RED, Sony FS700, GH4, and GoPro.
    My system:
    Creative Cloud
    Premiere Pro  8.0.1
    Windows 7 (64 bit)
    Intel 3770k
    Quadro k4000
    16 gb ram
    256 gb SSD (System)
    256 gb SSD (Render files)
    5.39 TB Drobo via USB 3.0
    Thanks,
    Dan

    >Drobo via USB 3.0
    Did you by any chance unplug/replug your USB drive?
    Have you gone into Windows and "locked" the drive letter?

  • How to generate new perner number using Abap Code in pa0002. what is the fu

    how to generate new perner number using Abap Code in pa0002. what is the function Module used.

    hi
    define internal number ranges for ur implementation then when u run PA 40  do not input any employee number , system will generate the employee number automatically.
    Regards
    sameer

  • Validator Cleaned existing formbean or generated new one

    Hi buddies,
    I'd like to use struts validator in my project. It seems working but cleaning existing formbean or generating new formbean.
    The case is: after listing all customers, user can choose edit or delete one of them. Supposed (and it works correctly before I applied validator in) the Action will find the client and populate the appropriate field value into form bean, and the form bean is to be forward to edit jsp page. But now, in the fields on the edit jsp page are blank, just like create new record.
    it took me 2 days, and cannot fix the problem. Please gave me some ideas. Your any input is appreciated.
    [u]struts-config.xml[/u]
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.2//EN" "http://struts.apache.org/dtds/struts-config_1_2.dtd">
    <struts-config>
         <data-sources />
         <form-beans>
              <form-bean name="customerListForm"
                   type="com.articy.struts.form.CustomerListForm" />
              <form-bean name="customerEditForm"
                   type="com.articy.struts.form.CustomerEditForm" />
              <form-bean name="loginForm"
                   type="com.articy.struts.form.LoginForm" />
         </form-beans>
         <global-exceptions />
         <global-forwards>
              <forward name="welcome" path="/default.do" redirect="true" />
              <forward name="Logon" path="/security/login.jsp"
                   redirect="true" />
         </global-forwards>
         <action-mappings>
              <action forward="/jsp/index.jsp" path="/default" unknown="true" />
              <action attribute="customerListForm"
                   input="/jsp/customerList.jsp" name="customerListForm"
                   path="/customerList" scope="request"
                   type="com.articy.struts.action.CustomerListAction">
                   <forward name="listCustomer" path="/jsp/customerList.jsp" />
              </action>
              <action attribute="customerEditForm"
                   input="/jsp/customerEdit.jsp" name="customerEditForm" parameter="do"
                   path="/customerEdit" scope="request"
                   type="com.articy.struts.action.CustomerEditAction">
                   <forward name="addCustomer" path="/jsp/customerAdd.jsp" />
                   <forward name="listCustomers" path="/customerList.do"
                        redirect="true" />
                   <forward name="editCustomer" path="/jsp/customerEdit.jsp" />
              </action>
              <action attribute="loginForm" input="/security/login.jsp"
                   name="loginForm" path="/login" scope="request"
                   type="com.articy.struts.action.LoginAction">
                   <forward name="loginSuccess"
                        path="/security/loginSucess.jsp" />
                   <forward name="loginFailure"
                        path="/security/loginFailure.jsp" redirect="true" />
              </action>
              <action path="/logout"
                   type="com.articy.struts.action.LogoutAction">
                   <forward name="Success" path="/security/logoutSuccess.jsp"
                        redirect="true" />
              </action>
              <action attribute="loginForm" name="loginForm"
                   path="/prepareLogin" scope="request"
                   type="com.articy.struts.action.PrepareLoginAction">
                   <forward name="logon" path="/security/login.jsp" />
              </action>
         </action-mappings>
         <controller
              processorClass="org.apache.struts.tiles.TilesRequestProcessor" />
         <message-resources
              parameter="com.articy.struts.ApplicationResources" />
         <plug-in className="org.apache.struts.tiles.TilesPlugin">
              <set-property property="definitions-config"
                   value="/WEB-INF/tiles-defs.xml" />
              <set-property property="definitions-parser-validate"
                   value="true" />
              <set-property property="moduleAware" value="true" />
         </plug-in>
         <plug-in className="org.apache.struts.validator.ValidatorPlugIn">
              <set-property property="pathnames"
                   value="/WEB-INF/validator-rules.xml,/WEB-INF/validation.xml" />
              <set-property property="stopOnFirstError" value="true" />
         </plug-in>
    </struts-config>
    validation.xml
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE form-validation PUBLIC
              "-//Apache Software Foundation//DTD Commons Validator Rules Configuration
    1.1.3//EN"
              "http://jakarta.apache.org/commons/dtds/validator_1_1_3.dtd">
    <form-validation>
      <global>
        <constant>
          <constant-name>phone</constant-name>
          <constant-value>^\(?(\d{3})\)?[-| ]?(\d{3})[-| ]?(\d{4})$</constant-value>
        </constant>
        <constant>
          <constant-name>zip</constant-name>
          <constant-value>^\d{5}\d*$</constant-value>
        </constant>
      </global>
      <!-- ========================= Default Formset ========================= -->
      <formset>
        <constant>
          <constant-name>zip</constant-name>
          <constant-value>^\d{5}(-\d{4})?$</constant-value>
        </constant>
        <form name="customerForm">
          <field property="lastname" depends="required,mask,minlength">
            <arg0 key="customereditform.lastname.displayname" position="0"/>
            <arg1 name="minlength" key="${var:minlength}" resource="false"
    position="1"/>
            <var>
              <var-name>mask</var-name>
              <var-value>^\w+$</var-value>
            </var>
            <var>
              <var-name>minlength</var-name>
              <var-value>5</var-value>
            </var>
          </field>
          <field property="name" depends="required,mask,maxlength">
            <msg name="mask" key="customereditform.name.maskmsg" />
            <arg0 key="customereditform.name.displayname" position="0" />
            <arg1 name="maxlength" key="${var:maxlength}" resource="false"
    position="1"/>
             <var>
              <var-name>mask</var-name>
              <var-value>^[a-zA-Z]*$</var-value>
            </var>
            <var>
              <var-name>maxlength</var-name>
              <var-value>30</var-value>
            </var>
          </field>
        </form>
      </formset>
    </form-validation>
    customerEditAction.java
    package com.articy.struts.action;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.actions.DispatchAction;
    import www.articy.wdb.bl.LibraryManager;
    import com.articy.struts.form.CustomerEditForm;
    public class CustomerEditAction extends DispatchAction {
         public ActionForward editCustomer(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response) {
              System.out.println("editCustomer");
              CustomerEditForm customerEditForm = (CustomerEditForm) form;
               * Arthur Niu get id of the customer from request
              Integer id = Integer.valueOf(request.getParameter("id"));
              // get business logic
              LibraryManager vvmManager = new LibraryManager();
              customerEditForm.setCustomer(vvmManager.getCustomerByPrimaryKey(id));
              return mapping.findForward("editCustomer");
         public ActionForward deleteCustomer(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response) {
              System.out.println("deleteCustomer");
              CustomerEditForm customerEditForm = (CustomerEditForm) form;
               * Arthur Niu get id of the customer from request
              Integer id = Integer.valueOf(request.getParameter("id"));
              // get business logic
              LibraryManager vvmManager = new LibraryManager();
              vvmManager.removeCustomerByPrimaryKey(id);
              return mapping.findForward("listCustomers");
         public ActionForward addCustomer(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response) {
              System.out.println("addCustomer");
              CustomerEditForm customerEditForm = (CustomerEditForm) form;
              return mapping.findForward("addCustomer");
         public ActionForward saveCustomer(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response) {
              CustomerEditForm customerEditForm = (CustomerEditForm) form;
              if (isCancelled(request)) {
                   removeFormBean(mapping, request);
                   return (mapping.findForward("listCustomers"));
              // get business logic
              LibraryManager vvmManager = new LibraryManager();
              vvmManager.saveCustomer(customerEditForm.getCustomer());
              return mapping.findForward("listCustomers");
         protected void removeFormBean(ActionMapping mapping,
                   HttpServletRequest request) {
              // Remove the obsolete form bean
              if (mapping.getAttribute() != null) {
                   if ("request".equals(mapping.getScope())) {
                        request.removeAttribute(mapping.getAttribute());
                   } else {
                        HttpSession session = request.getSession();
                        session.removeAttribute(mapping.getAttribute());
    customerEditForm.java
    package com.articy.struts.form;
    import java.io.Serializable;
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionMapping;
    import org.apache.struts.validator.ValidatorForm;
    import www.articy.wdb.Customer;
    public class CustomerEditForm extends ValidatorForm implements Serializable {
         private static final long serialVersionUID = 1L;
         private Customer customer;
         public Customer getCustomer() {
              return customer;
         public void setCustomer(Customer customer) {
              this.customer = customer;
         public boolean equals(Object rhs) {
              return customer.equals(rhs);
         public Integer getId() {
              return customer.getId();
         public void setId(Integer id) {
              customer.setId(id);
         public String getName() {
              return customer.getName();
         public void setName(String name) {
              customer.setName(name);
         public String getLastname() {
              return customer.getLastname();
         public void setLastname(String lastname) {
              customer.setLastname(lastname);
         public Integer getAge() {
              return customer.getAge();
         public void setAge(Integer age) {
              customer.setAge(age);
         public Boolean getActive() {
              return customer.getActive();
         public void setActive(Boolean active) {
              customer.setActive(active);
         public java.sql.Date getBod() {
              return customer.getBod();
         public void setBod(java.sql.Date bod) {
              customer.setBod(bod);
         public java.sql.Timestamp getLogontime() {
              return customer.getLogontime();
              public void setLogontime(java.sql.Timestamp logontime) {
              customer.setLogontime(logontime);
         public String toString() {
              return customer.toString();
         public void reset(ActionMapping mapping, HttpServletRequest request) {
              customer = new Customer();
    customerList.jsp
    <%@ page language="java" pageEncoding="UTF-8"%>
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic"%>
    <html>
    <head>
    <title>JSP for customerListForm form</title> </head> <body> <table border="1"> <tbody>
    <%-- set the header --%>
    <logic:present name="customerListForm" property="customers">
    <tr>
    <td>Id</td>
    <td>Name</td>
    <td>Lastname</td>
    <td>Age</td>
    <td>Active</td>
    <td>Bod</td>
    </tr>
    <%-- start with an iterate over the collection customer --%> <logic:iterate name="customerListForm" property="customers" id="customer"> <tr>
    <%-- customer information --%>
    <td><bean:write name="customer" property="id" /></td>
    <td><bean:write name="customer" property="name" /></td>
    <td><bean:write name="customer" property="lastname" /></td>
    <td><bean:write name="customer" property="age" /></td>
    <td><bean:write name="customer" property="active" /></td>
    <td><bean:write name="customer" property="bod" /></td>
    <%-- edit and delete link for each customer --%> <td><html:link action="customerEdit.do?do=editCustomer"
    paramName="customer"
    paramProperty="id"
    paramId="id">Edit</html:link>
    </td>
    <td><html:link action="customerEdit.do?do=deleteCustomer"
    paramName="customer"
    paramProperty="id"
    paramId="id">Delete</html:link>
    </td>
    </tr>
    </logic:iterate>
    <%-- end interate --%>
    </logic:present>
    <%-- if customers cannot be found display a text --%> <logic:notPresent name="customerListForm" property="customers"> <tr> <td colspan="5">No customer found.</td> </tr> </logic:notPresent>
    </tbody>
    </table>
    <br>
    <%-- add and back to menu button --%>
    <html:button property="add"
    onclick="location.href='customerEdit.do?do=addCustomer'">Add a new customer </html:button>   <html:button property="back"
    onclick="location.href='default.do'">Back to menu </html:button> </body> </html>
    customerEdit.jsp
    <%@ page language="java" pageEncoding="UTF-8"%>
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-bean" prefix="bean"%>
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%>
    <%@ taglib uri="http://jakarta.apache.org/struts/tags-logic" prefix="logic" %>
    <html>
    <head>
    <title>JSP for customerEditForm form</title> </head> <body>
    <logic:messagesPresent>
       <bean:message key="errors.header"/>
       <ul>
       <html:messages id="error">
          <li><bean:write name="error"/></li>
       </html:messages>
       </ul><hr />
    </logic:messagesPresent>
    <html:form action="customerEdit"  method="post">
    <html:hidden property="id"/> <html:hidden property="do" value="saveCustomer"/>
    Id: <html:text property="id"/><br/>
    Name: <html:text property="name"/><br/>
    Lastname: <html:text property="lastname"/><br/>
    Age: <html:text property="age"/><br/>
    Active: <html:text property="active"/><br/>
    Bod: <html:text property="bod"/><br/>
          <html:submit property="submit" onclick="bCancel=false;">
             <bean:message key="button.save"/>
          </html:submit>
    <html:cancel/>
    </html:form>
    </body>
    </html>

    anybody can help?

  • I need a help to generate new file

    Hi Guys
    I need your help. I have two text box in my form, the first one takes the file name to read, and then when user type in another file name in the second textbox, result should be saved as a typed file name in the same path.
    What I really want to do is, when the file is exist already (for instance, I'll name it as result.txt), my program scan through the result.txt file and append the new data at the end of the file. But result.txt file doesn't exist, it has to generate new file and save the data into the new one. I think I need to implement these in the OpenFile1() function, but I dont' know how.
    Does anybody have idea to solve this?
    private void saveFile() {
    textArea.append("SAVE FILE\n---------\n");
    if (openFile1())
         try {
              outputToFile();
    catch (IOException ioException) {
              JOptionPane.showMessageDialog(this,"Error Writing to File",
                   "Error",JOptionPane.ERROR_MESSAGE);
    private boolean openFile1 ()
         // Display file dialog box
    title=textfield1.getext();
    path=fileName_in.getPath();
         File file_out = new File(path, title);
    if (fileName_out == null || fileName_out.getName().equals("")) {
         JOptionPane.showMessageDialog(this,"Invalid File name",
                   "Invalid File nmae",JOptionPane.ERROR_MESSAGE);
         return(false);
         else {
    try
    boolean created = file_out.createNewFile();
    if(true)
    fileOutput = new PrintWriter(new FileWriter(fileName_out));
    return(true);
    else
    catch (IOException exc) {
    System.err.println("# Error: " );
    private void outputToFile() throws IOException
    // Initial output
         textArea.append("File name = " + fileName_out + "\n");
         //process();
         // Test if data exists
         if (data != null)
         Date now = new Date();
    DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT);
    String s = df.format(now);
    //long nowlong=now.getTime();
    fileOutput.println(s);
    fileOutput.print(fileName_in.getName() +" of slope value:" + slope);
    textArea.append("File output complete\n\n");
         else
    textArea.append("No data\n\n");
         // End by closing file
         fileOutput.close();
    Thank you so much!

    There's a lot of unnecessary code there, and anyway it isn't formatted in a readable way so I am not going to look too closely at it. But if you want to append to the file if it already exists and create the file if it doesn't, then all you need is this: fileOutput = new PrintWriter(new FileWriter(fileName_out, true));Note the "true" parameter there which (if you look in the API documentation) says that new data will be appended at the end of the file.

  • How to Generate New Version of Enhancements done to Std WebDynpro ABAP obj

    Hi Experts,
    We have enhanced a SAP Std WebDynpro ABAP component (HAP_DOCUMENT_BODY) using Enhancement framework provided by SAP. Multiple enhancements were done on the same component for different requirements. Now, under the Enhancement Implementations folder of this component, you can see 5 enhancements of the component each referring to the 5 different changes done (most of the changes were done to the same view ).
    These changes has now been transported to the Quality System. Now, the client wants one of the changes to be removed. I am not sure of the impact of removing, for eg: the 3rd enhancement,  on the other changes done as multiple enhancements were done in a mixed manner.
    What i want to do is to generate a new version of WebDynpro component on Dev which has all the enhancements done so far using Utilities -> Versions -> Generate new version. Then try to delete the 3rd enhancement folder, so that if something goes wrong, I can always revert to this newly created version on DEV which has all changes available.
    Questions:
    1)  Before that, I would like to know if I can generate versions of the enhancements done of WebDynpro ABAP using enhancement framework by using Utilities -> Versions -> Generate new version ?
    2) If yes, I want to generate one version which has all the enhancements done so far using enhancement framework. For doing so, where should i do the click or selection (Is it Std Main Component or is it Enhancements in the enhancements folder-if so, there are 5 of them, and which one??) before i go to  Utilities -> Versions -> Generate new version. I am not clear where i should select or keep the cursor selected on before generating a new version? 
    Please guide with step by step details.
    Thanks,

    I have moved this post to the HTML5 layouts forum, which is more appropriate.
    I am guessing you are using Rh11 as you have a trial copy. I have some instructions for Rh10 and the only difference should be the script used. See the contact page on my site and request those details. Include a link to this thread.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • ISE's Internal Root CA. How to generate new one in distributed deployment?

    Hello,
    I have two ISE nodes in distributed deployment. I would like to generate new Internal Root CA certificate. I was able to do that from primary node, but only FOR primary node. How can I achieve this for the other node?
    Best Regards,
    Marek

    Hi Marek-
    All of the certificate management is performed from the Admin Node which becomes the Root CA for the ISE PKI. You generate Subordinate CA certificates to your Policy Nodes from the Primary Admin node. Check this link for more info:
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-3/admin_guide/b_ise_admin_guide_13/b_ise_admin_guide_sample_chapter_01000.html#task_FF93B4C51BAC4CA196A48B607DAA595D
    Also, since the primary node is the Root CA, you should export the certificate and the private key and import it to your secondary Admin node. This will enable the secondary node to be promoted to a Root CA in case of a failure of the primary admin node:
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-3/admin_guide/b_ise_admin_guide_13/b_ise_admin_guide_sample_chapter_01000.html#concept_435C4E3FF56949B1B4D5A0C73671AB22
    I hope this helps!
    Thank you for rating helpful posts!

  • Generating new Request number

    hi frends i was working with smartforms on develpment.i had made sme changes in the code and then save it.system asked for the request no.by mistake i had not gone for "own Request" and click OK for the default Request value displayed there. The changes i have done are not reflecting into the print preview(for which i had made changes).Is this because i had not created new request?how to slve it.can i generate new request and then see the changes in the print preview.
    I want to see the changes in the same client and on the same server.
    I am doing changes in the print format of the WORK ORDER.

    thnx MAX....frend now i have created my new request saved the smart form and activted.but still it is not working....i have also tried to comment out the all code and then see the result..still it is not effecting the print preview.
    I have a smartform designed earlier.There is a text elemet "PAN no of vendor" i clicked on it then system took me to a code. the ouptut parameter shown there is "FOR_PROJ". i have made the value of this FOR_PROJ=12345678. and commented out the rest of code.still it is not showing this value in actual print preview.
    while creating PO with ME21N if we write anything under "your ref" field under "communication" tab then the data in your ref is displayed in the preview.
    what shoud i do. i am very new to ABAP and smartforms.but i have to solve this

  • Generate new channel numbers

    Hello,
    I move channels on ListTab in the DataPortal and then Generates New Channel Numbers (with rightclick menu).
    How do I get the new channel order on the StructureTab in the DataPortal?
    I'm by the way using DIAdem 10...

    The channel numbers in the structure view have nothing to do with
    the chanel numbers in the list view.
    The purpose of the list view is to communicate a flat list with
    information where the channels are stored.
    The purpose of the structure view is to show the hierarchy
    root -> groups -> channels
    The position within a group is independent from the storage
    position of the channel.
    On the other hand, channels can be moved in the structure view,
    even from one group to another group, without affecting the
    order in the list view.

  • Generate New Database job never ends

    Hi all,
    We are trying to generate a new template in our DEV environment, the job remains active but never ends. On every attempt , the process stops in a different table or process.
    The log file (level 5) simply stops in a certain point and nothing else happens. The dbeng9 processes consumes almost 90% CPU but the process siebsh does not appear between the top processes.
    We already tried reset all the servers, gateway, reassign the remote component group, recreating diccache.dat, but nothing worked.
    We use siebel loyalty 8.1.1.1 and oracle 11g 11.2 , on top of aix 5.3
    Meanwhile, the workaround was to generate new template in another siebel enterprise and copied the templates to the DEV environment and extracted the databases.
    Will be very thankful if anyone can help.
    Thanks in advance

    But the problem is that the process really stucked. The siebel.dbf , which should be created during the job , stop increasing the size around 30M while in the other environment, when the process finished , the file reached 80M.
    The log file also suddenly stopped to increase. It really seems that the process is waiting for something.
    We are not having resource problems like disk space , cpu or memory lacking.
    Guys, do you know what kind of consistency should be checked for GennewDB? If the repository table definitions have differences when compared with actual physical schema, suppose that we forget to apply some new table definitions, would it be the root cause? Do you know a way to compare the repository definitions against the physical schema? I think "apply all" is not an option..
    Thanks in advance

  • Generate new schdule lines in MMSA after the max limit I.e.9999 is reached

    Releases are not feeding into MMSA  since it has reached the max. schedule line. Now if i want to create new released in the same MMSA what i have to do.
                                 In other words i want to know how to generate new schedule lines in MMSA once they reached the max.i.e.9999.

    Hi,
    You cannot create new schedule lines after reaching the maximum limit. Please check which document type you are using PL or LPA. LPA is ment for release . Hope it works. Thanks.

  • Generate New Database Job Not Working

    I am trying to synchronize my web client with the server database and when I run the Generate New Database job (Administration - Server Management > Jobs), the job fails with the error SBL-GDB-00004: Error in Main Function.
    The logs say:
    2021 2010-08-05 11:09:28 2010-08-05 11:10:30 -0400 00000092 001 ffff 0001 09 GenNewDb 55574531 32352 1082539552 /siebel_8.2/siebsrvr/enterprises/SBA_82/sbllnx/log/GenNewDb_0053_55574531.log 8.2 [22117] ENU
    DBCLog     DBCLogError     1     000013994c570f29:0     2010-08-05 11:09:28     [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:09:28     SQL Message, IM002: [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    DBCLog     DBCLogError     1     000013994c570f29:0     2010-08-05 11:09:38     [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:09:38     SQL Message, IM002: [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    DBCLog     DBCLogError     1     000013994c570f29:0     2010-08-05 11:09:48     [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:09:48     SQL Message, IM002: [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    DBCLog     DBCLogError     1     000013994c570f29:0     2010-08-05 11:09:58     [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:09:58     SQL Message, IM002: [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    DBCLog     DBCLogError     1     000013994c570f29:0     2010-08-05 11:10:08     [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:10:08     SQL Message, IM002: [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    DBCLog     DBCLogError     1     000013994c570f29:0     2010-08-05 11:10:18     [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:10:18     SQL Message, IM002: [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:10:28     Error creating SQL Anywhere database template file (UTLOdbcConnect DBA/siebelmobiledb).
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:10:28     Error in MainFunction (CreateDbTemplateFile)
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:10:29     (gennewdb.cpp (610) err=524292 sys=2) SBL-GDB-00004: Error in Main function.
    GenericLog     GenericError     1     000013994c570f29:0     2010-08-05 11:10:29     (smisched.cpp (911) err=524292 sys=0) SBL-GDB-00004: Error in Main function.
    Anyone encountered this before?
    Thanks,
    Bernhard

    Hi,
    Make sure to set the ODBCINI environment variable. The variable must point to the path from the root directory to the system information file where your data source resides. The system information file can have any name, but the product is installed with a default file called odbc.ini in the product installation directory.
    For example, if you use an installation directory of /opt/odbc and the default system information file, from the Korn or Borne shell, you would enter:
    ODBCINI=/opt/odbc/odbc.ini; export ODBCINI
    From the C shell, you would enter:
    setenv ODBCINI /opt/odbc/odbc.ini
    Regards,
    Joseph

  • Generate New Database failure

    Hi
    I am having an issue with Generate New Database. This is the first time after the installation.
    We have a Siebel 8.0 installation on HP Itanium with an Oracle 10.2.0.3.0 database.
    I get the followig errors:
    [Sybase][ODBC Driver][Adaptive Server Anywhere]Unable to start database server
    SQL Message, 08001: [Siebel Database][ODBC Driver][Adaptive Server Anywhere]Unable to start database server
    Error creating SQL Anywhere database template file (UTLOdbcConnect DBA/siebelmobiledb).
    Error in MainFunction (CreateDbTemplateFile)
    (gennewdb.cpp (610) err=524292 sys=2) SBL-GDB-00004: Error in Main function.
    Do we have to configure something? Can anyone help?

    We experienced the same issue. Our DB is Oracle 10.2.0.1 and our App Servers and DB servers are HP-Itaniums... (Prior to Oracle 10.2.0.2 as the minimum.)
    We were not able to resolve the issue as we switched to Linux before we completed. our initial deployment.
    As the Template DB is a SQL anywhere DB, did you try logging into the the DB using odbcsql.. This should confirm if your DB template file is corrupted or not...
    I'm interested in your findings as we did not resolve this before changing platforms...

  • Generate new version of doc on each status or change in DIR

    how system can auto generate new veriosn of DIR on every change in DIR. for example i change the status of DIR ,system should generate new veriosn.

    Hi,
    I thinkt that this could be achieved by using BADI DOCUMENT_MAIN01 with the method BEFORE_SAVE. Here you should be able to check if the new data matches the already stored data and if there are differences you can trigger the creation of a new version.
    Best regards,
    Christoph

Maybe you are looking for

  • Sales Analysis Report Problem

    Hi all. I would be glad if I could get a response for this question from someone at SAP. Though all responses are very welcome. There seems to be an error on the Sales Analysis report. The report runs fine with selection criteria for Customers and Sa

  • [SOLVED] k3b does not detect optical drive

    Hello, I am running Arch Linux x86_64 with recent updates. I have k3b 2.0.3 and when I launch it I get message that it does not detect my optical drive, and I need hal daemon. I checked, udev is running, node in dev /dev/sr0 has root.optical, my user

  • Thumbnails gallery

    Hi, I want to create a thumbnail gallery with images loaded in at run-time. Can an flash actionscript be passed variables at run-time. I want the actionscript to recieve filename(s) as a variable so it knows what to display.

  • Pretty much non responsive after close to 4.5 years... Any suggestions?

    I've owned by PowerBook G4 since Aug 2004, and it has served me pretty well. I had a battery change since my battery was one of the recalled ones. It was working fine up until about last month, when I started to notice that it was taking unusually lo

  • How to initial flight list data of the OVS?

    Hi Experts, I create a OVS custom controller in the webdynpro for java application. It run successful. It can return data to the input field of the application view when I select a row data of the flight list in the OVS. My problem is: I hope the fli