How to prevent Autoquery in infobus forms

Hi,
When an info bus form comes up, it queries the data from the
table and shows it up. I want to prevent this. How do I do this?
In jbcl QueryDataSet there was a parameter to specify this
behaviour. But nothing is seen in infobus documentation. Can
someone help me please.
I tried using rowsetInof.publishSession(false). Still the data
gets quried, only thing is that it is not shown on the
components. I want to prevent the initial querying totally.
TIA,
--Gopal
null

Hi
Thanx. But it doesn't help. When I use
sessionInfo.publishSession(false),
if I have 10 rows in the table, it shows 10 blank rows on the
Grid control to which the rowSet is attached. Moreover, it does
not allow me to add any values to them. (It allows any value to
be inserted, but just doesn't save and no validation events
take place.)
So I need more help on this.
Thanks,
--Gopal
Dave Henley (guest) wrote:
: I'm using
: sessionInfo.publishSession(false);
: in the init method of my infobus form and it works fine.
: Gopal (guest) wrote:
: : Hi,
: : When an info bus form comes up, it queries the data from the
: : table and shows it up. I want to prevent this. How do I do
: this?
: : In jbcl QueryDataSet there was a parameter to specify this
: : behaviour. But nothing is seen in infobus documentation. Can
: : someone help me please.
: : I tried using rowsetInof.publishSession(false). Still the
data
: : gets quried, only thing is that it is not shown on the
: : components. I want to prevent the initial querying totally.
: : TIA,
: : --Gopal
null

Similar Messages

  • How to prevent deletion in a form ?

    I need to prevent deletion in a form if the starting date <= SYSDATE and show an alert .
    How do I implement this please ?
    My date field is of type timestamp , it's "id2"
    I have added the following method in my backing bean :
        public String preventDel() {
    long toDateAsTimestamp = id2.getTime();
    long currentTimestamp = System.currentTimeMillis();
    long getRidOfTime = 1000 * 60 * 60 * 24;
    long toDateAsTimestampWithoutTime = toDateAsTimestamp / getRidOfTime;
    long currentTimestampWithoutTime = currentTimestamp / getRidOfTime;
    if (id2 < currentTimestampWithoutTime )
    System.out.println("Display report.");
    //how to show the alert ?
    return null;
    Any help please ?

    Hi girl.
    If i were you this is how I would do it;
    1.- Create a transient attribute in your VO called ToBeDeleted of type boolean and assign its value as the following expression "StartingDate <= adf.currentDate".
    2.- Expose the attribute in your bindings. Then, in your delete button you can:
         - Disable it if ToBeDeleted is not true.
         - In the description of the button you could put a message that it cant be deleted.
    OR
         Use your java class to show the message. But the alert should be thrown as a facesMessage of type Error: look at this How to show af:message programatically
    Also, I would like to say that none of this might be the best way to implement your use case. For the sound of it you have a business rule that should be implemented in your model project if you don't want to break the MVC pattern. (This is that you shouldnt be able to delete the row using your AppModule tester if the startingDate <= Sysdate, for example).
    Hope this helps.

  • How to prevent dupilcate form submission in JSF 1.x

    Hi All
    How to prevent dupilcate form submission in JSF 1.x application. As of now ,when the user clicked the submit button two times , application inserts 2 records in database.
    Please suggest how to prevent dupliacte form submission without using Javascript. Kindlly share examples if any.
    Regards,
    DEV

    Your problem is not really double submission but the fact that your application allows double insertion. The fix is functionally easy but technically very cumbersome: before inserting, check if the data already exists. If you build in such a guard you also protect against other methods of causing a resubmission, such as the browser back button.
    PS: what's the deal with the no javascript limitation? You do realize that when you use JSF you're tanking your application full of javascript, right?

  • How do I save a completed form?

    My job requires that I complete forms, applications, data sheets, etc. and return the completed form to the vendor.  Since an upgrade to Adobe Acrobat X Pro, I can't figure out how to SAVE THE COMPLETED FORM.  Once I fill everything in, I need to know how to save the information so it can't be changed.  How do I do this?  Thank you for any answers!

    To save the form and prevent changes to the form fields you can either flatten the fields, apply standard password security, or digitally sign the document (certification or approval signature). Some of these may not be possible depending on how the forms are currently set up. It's hard to say which would be best without knowing more about the forms and how they will be used throughout the intended workflow.

  • How to fill out POST HTML forms from my Java Application?

    Hi -
    I am writing a little Java GUI program that will allow a user to fill out data from the GUI and then submit that data. When they submit the data (two text fields) I want to take the two text fields and submit them via the POST form method of a HTML document over the web.
    Here is what I got so far:
    host = new URL("http", "<my_address>", web port, "/query.html");
                InputStream in = host.openStream();
                BufferedInputStream bufIn = new BufferedInputStream(in);
                for (;;)
                    int data = bufIn.read();
                    // Check for end of file
                    if (data == -1)
                        break;
                    else
                        System.out.print ( (char) data);
                }What that code does is makes a URL, opens a stream, and reads the HTML source of the file at the specified URL. There is a form that submits data via the POST method, and I would like to know how to write data to specific forms and specific input types of that form.
    Then, I'd like to be able to read the response I get after submitting the form.
    Is this possible?
    Thanks,

    Here is how one of my e-books go about Posting
    I tryied in one of my projects and it works ok
    (Tricks of the Java Programming Gurus)
    There's another reason you may want to manipulate a URLConnection object directly: You may want to post data to a URL, rather than just fetching a document. Web browsers do this with data from online forms, and your applets might use the same mechanism to return data to the server after giving the user a chance to supply information.
    As of this writing, posting is only supported to HTTP URLs. This interface will likely be enhanced in the future-the HTTP protocol supports two ways of sending data to a URL ("post" and "put"), while FTP, for example, supports only one. Currently, the Java library sidesteps the issue, supporting just one method ("post"). Eventually, some mechanism will be needed to enable applets to exert more control over how URLConnection objects are used for output.
    To prepare a URL for output, you first create the URL object just as you would if you were retrieving a document. Then, after gaining access to the URLConnection object, you indicate that you intend to use the connection for output using the setDoOutput method:
    URL gather = new URL("http://www.foo.com/cgi-bin/gather.cgi");
    URLConnection c = gather.openConnection();
    c.setDoOutput(true); Once you finish the preparation, you can get the output stream for the connection, write your data to it, and you're done:
    DataOutputStream out = new DataOutputStream(c.getOutputStream());
    out.writeBytes("name=Bloggs%2C+Joe+David&favoritecolor=blue");
    out.close();
    //MY COMMENT
    //This part can be improved using the URLEncoder
    //******************************************************You might be wondering why the data in the example looks so ugly. That's a good question, and the answer has to do with the limitation mentioned previously: Using URL objects for output is only supported for the HTTP protocol. To be more accurate, version 1.0 of the Java library really only supports output-mode URL objects for posting forms data using HTTP.
    For mostly historical reasons, HTTP forms data is returned to the server in an encoded format, where spaces are changed to plus signs (+), line delimiters to ampersands (&), and various other "special" characters are changed to three-letter escape sequences. The original data for the previous example, before encoding, was the following:
    name=Bloggs, Joe David
    favoritecolor=blue If you know enough about HTTP that you are curious about the details of what actually gets sent to the HTTP server, here's a transcript of what might be sent to www.foo.com if the example code listed previously were compiled into an application and executed:
    POST /cgi-bin/gather.cgi HTTP/1.0
    User-Agent: Java1.0
    Referer: http://www.foo.com/cgi-bin/gather.cgi
    Accept: text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    Content-type: application/x-www-form-urlencoded
    Content-length: 43name=Bloggs%2C+Joe+David&favoritecolor=blue
    Java takes care of building and sending all those protocol headers for you, including the Content-length header, which it calculates automatically. The reason you currently can send only forms data is that the Java library assumes that's all you will want to send. When you use an HTTP URL object for output, the Java library always labels the data you send as encoded form data.
    Once you send the forms data, how do you read the resulting output from the server? The URLConnection class is designed so that you can use an instance for both output and input. It defaults to input-only, and if you turn on output mode without explicitly setting input mode as well, input mode is turned off. If you do both explicitly, however, you can both read and write using a URLConnection:
    c.setDoOutput(true);
    c.setDoInput(true); The only unfortunate thing is that, although URLConnection was designed to make such things possible, version 1.0 of the Java library doesn't support them properly. As of this writing, a bug in the library prevents you from using a single HTTP URLConnection for both input and output.
    //MY COMMENTS
    When you doing URL encoding
    you should not encode it as one string becouse then it will encode the '=' signes and '&' signes also
    you should encode all the field names and values seperatly and then join them using '&'s and '='s
    Ex:-
    public static void addField(StringBuffer sb,String name, String value){
       if (sb.length()>0){
          sb.append("&");
       sb.append(URLEncoder.encode(name,"UTF-8"));
       sb.append("=");
       sb.append(URLEncoder.encode(value,"UTF-8"));
    }

  • ADF FACES: how to prevent navigation in the UPDATE_MODEL_VALUES phase

    I have some complex cross-field correlations to verify on data submitted. I can't do this in the PROCESS_VALIDATIONS phase, since all the model values are in consistent at this point depending on which component is being processed.
    So, I'm trying to perform the business logic tests in the UPDATE_MODEL_VALUES phase. This is all working well except for one thing. How do I prevent the view from changing in the case that cross-field issues are detected?
    The scenario is that the user has filled out the form and activates some control that would normally navigate the user away from the current view. I detect an inconsistency and need to place a message in the context and prevent the navigation. This is easy if I do this during the PROCESS_VALIDATIONS phase by just throwing a ValidatorException.
    I just can't figure out how to accomplish this in the UPDATE_MODEL_VALUES phase.
    Any suggestions?

    I spoke too soon. Maybe my case is more subtle. I have a page with a af:showOneTab. In one of the showDetailItems, I have this validation occuring. Thus, when the user clicks on one of the tabs, and the current page has a validation error on it, I want them to stay on the current page.
    Calling renderResponse doesn't seem to prevent the change (although a true ValidatorException thrown during the validation phase does).
    So, I'm still stuck with how to prevent the change in tabs when I detect the error in the UPDATE_MODEL_VALUES phase.
    Thanks.

  • Error while invoking infobus form applet

    Hi,
    Iam trying to deploy a InfoBus form applet created using JDeveloper 3.0 to IIS server in windows NT. I deployed the applet as follows.
    1) I created EmpTest.jar file which consists of InfoBus form applet code files which I created using JDeveloper 3.0 as instructed in the online help.
    2) I created two virtual directories in IIS one for holding the base html file and other for holding the Java archive files.
    if_code -- Virtual directory for Java Archive files
    if_html -- Virtual directory for the Base Html File
    3) I copied the Base Html file to "if_html" virtual directory
    4) I copied the following classes to the "if_code" virtual directory
    EmpTest.jar
    jdev-rt.zip
    classes111.zip (Oracle 8i v8.1.5)
    connectionmanager.zip
    jbodatum.zip
    jbomt.zip
    jboremote.zip
    jndi.jar
    xmlparserv2.jar
    javax_ejb.zip
    dacf.zip
    infobus.jar
    swingall.jar
    LW_pfjbean.jar
    classes.zip
    Now when I invoke the Base html file in Netscape navigator I get the following messages in the Java Console.
    Java(TM) Plug-in
    Using JRE version 1.2.1
    User home directory = C:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    JAR cache enabled.
    Opening http://sairam/if_code/EmpTest.jar no proxy
    No holding
    CacheHandler trying caching. http://sairam/if_code/EmpTest.jar
    CacheHandler file name: c:\Program Files\Netscape\Users\srinioj\cache\MUBVHFDO.JAR
    Got cached copy
    Opening http://sairam/if_code/jdev-rt.zip no proxy
    Opening http://sairam/if_code/classes111.zip no proxy
    Opening http://sairam/if_code/connectionmanager.zip no proxy
    Opening http://sairam/if_code/jbodatum.zip no proxy
    Opening http://sairam/if_code/jbomt.zip no proxy
    Opening http://sairam/if_code/jboremote.zip no proxy
    Opening http://sairam/if_code/jndi.jar no proxy
    No holding
    CacheHandler trying caching. http://sairam/if_code/jndi.jar
    CacheHandler file name: c:\Program Files\Netscape\Users\srinioj\cache\MU9IQQ75.JAR
    Got cached copy
    Opening http://sairam/if_code/xmlparserv2.jar no proxy
    No holding
    CacheHandler trying caching. http://sairam/if_code/xmlparserv2.jar
    CacheHandler file name: c:\Program Files\Netscape\Users\srinioj\cache\M01S0B5S.JAR
    Got cached copy
    Opening http://sairam/if_code/javax_ejb.zip no proxy
    Opening http://sairam/if_code/dacf.zip no proxy
    Opening http://sairam/if_code/infobus.jar no proxy
    No holding
    CacheHandler trying caching. http://sairam/if_code/infobus.jar
    CacheHandler file name: c:\Program Files\Netscape\Users\srinioj\cache\M187DFUA.JAR
    Got cached copy
    Opening http://sairam/if_code/swingall.jar no proxy
    No holding
    CacheHandler trying caching. http://sairam/if_code/swingall.jar
    CacheHandler file name: c:\Program Files\Netscape\Users\srinioj\cache\M0HHIU2J.JAR
    Got cached copy
    Opening http://sairam/if_code/LW_pfjbean.jar no proxy
    No holding
    CacheHandler trying caching. http://sairam/if_code/LW_pfjbean.jar
    CacheHandler file name: c:\Program Files\Netscape\Users\srinioj\cache\M0CG0F19.JAR
    Got cached copy
    Opening http://sairam/if_code/classes.zip no proxy
    Opening http://sairam/if_code/oracle/dacf/dataset/ResTable_en_US.class no proxy
    No holding
    CacheHandler trying caching. http://sairam/if_code/oracle/dacf/dataset/ResTable_en_US.class
    CacheHandler file name: null
    No cache available, using remote copy
    Opening http://sairam/if_code/oracle/dacf/dataset/ResTable_en_US.class no proxy
    java.lang.ClassFormatError: oracle/dacf/dataset/ResTable_en_US (Bad magic number)
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(Compiled Code)
    at java.security.SecureClassLoader.defineClass(Compiled Code)
    at sun.applet.AppletClassLoader.findClass(Compiled Code)
    at java.lang.ClassLoader.loadClass(Compiled Code)
    at sun.applet.AppletClassLoader.loadClass(Compiled Code)
    at java.lang.ClassLoader.loadClass(Compiled Code)
    at java.util.ResourceBundle.findBundle(Compiled Code)
    at java.util.ResourceBundle.getBundle(Compiled Code)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:334)
    at oracle.dacf.dataset.Res.<clinit>(Res.java:16)
    at oracle.dacf.dataset.SessionInfo.<clinit>(SessionInfo.java:65)
    at EmpPackage.EmpApplet.<init>(EmpApplet.java:213)
    at java.lang.Class.newInstance0(Native Method)
    at java.lang.Class.newInstance(Compiled Code)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:532)
    at sun.plugin.AppletViewer.createApplet(AppletViewer.java:759)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:468)
    at sun.applet.AppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:479)
    The same program when run inside the Jdeveloper runs fine.
    Can anyone show a light on this? Appreciate any kind of help in this.
    OS - Windows NT service pack 5
    Browser - Netscape Navigator v 4.51
    JRE - V1.2
    Database - Oracle 8i v 8.1.5
    My Email Id is [email protected]
    Warm Regards,
    Srini.

    Another thing I want to mention is if I run my process2 independently it works fine. So my guess is that the way I'm calling Process2 from Process1 maynot be correct. I'm not even sure if this thing will actually work or not.
    Process1 has a webservice that has http binding to call an outside servlet. I need to have another layer in between (Process2) that will call the Outside servlet. So it's Process1 calling Process2 and Process2 calling the outside servlet.
    My hands are tied that I can't change the webservice in Process1 or modify Process1 directly (I don't own this and it's shipped as standard functionality) which calls the servlet and has http binding. How can I call Process2 from the same binding and what endpoint should I use for my process ?
    Any help is highly appreciated.
    Thanks,
    Megha

  • How do I remove the Submit Form button?

    I am using Acrobat Pro 9 with LiveCycle. I have created an interactive form and did not include a button to e-mail the form. When the distributed form is opened, there is a purple bar across the top with instructions to click "Submit Form" and  "Highlight Fields" and "Submit Form" buttons. I do not want this form e-mailed back to me. It just needs to be saved by the user and uploaded at a later time. Saving it after the user fills in the fields is not the issue. That is working fine. But the user may be confused by a button saying they should submit the form. Plus it is my e-mail address in the field and I don't want all these forms showing up in my e-mail box. This happens whether I choose to distribute it with "Automatically download..." or "Manually collect..."
    Does anyone know what can be done to prevent the form from displaying the "Submit Form" button?
    Also, one user did get get a warning when saving about that not being the optimal way to send the data. I believe it said to press submit form. I'm sorry, I was not relayed the exact warning, but it was something to that effect. It did, however, save correctly.

    Pzaidel: YOU are a freakin genius. Great suggestion-worked perfectly! Here's how I did it with a form created in Indesign:
    Do entire backgrnd layout in Indesign-convert to regular PDF.
    Open New doc in LC-standard way-create all fields.
    After completion when you open it in Adobe Acrobat, you will see the "Submit Form" at the top next to "Highlight existing fields".
    Go back to your LiveCycle doc and:
    Highlight and ctrl+c copy all fields onto clipboard. [I don't think there is an option to copy fields anywhere within LC]
    Do as Pzaidel suggests above: create new LC form [you cannot avoid selecting interactive form....but didn't seem to matter].
    Import your PDF layout from InDesign [or word].
    THEN Paste all fields back into form.
    TA DA! No submit button.
    AND after importing and placing all fields, I even included a print button that works on the bottom of the form so anyone could see-it must be printed and cannot be submitted-at least by a button.
    Thanks so much for the fix!!

  • How to prevent repitition in array implementation?

    Hi!
    i made a program that will display the output of an a multidimensional array into an output line. but i have a problem on how to prevent the output to print the same item..
    thank u!
    the output of this program will have at least 1 item that is repeated.
    for example {1, 2, 3, 4, 1} how to make the program only print out one "1" {1, 2, 3, 4}?
    The program output is ({1, 2, 3, 4, 1},}
    what i want is ({1, 2, 3, 4}, ).
    //compile this first
    public class Graph {
    this function will convert graph that it get fom GraphToSet.java to set
    public static void convert(int[][] a) {
    int rows = a.length;
    int cols = a[0].length;
    System.out.println("Graph in matrix form["+rows+"]["+cols+"] = "); //Displaying the graph in matrix form
    for (int i=0; i<rows; i++) {
    System.out.print("{");
    for (int j=0; j<cols; j++)
    System.out.print(" " + a[j] + ",");
    System.out.println("},");
    System.out.println("\nG=(V,E)");
    System.out.print("G=({");
    for (int k=0; k<rows; k++)
    System.out.print(" "+ a[k][0] + ", "); //retrieving all the vertices from GraphToSet.java
    System.out.print("}"); //and print it out
    System.out.print(", {");
    for (int i=0; i<rows; i++) {
    System.out.print("(");
    for (int j=0; j<cols; j++) //retrieving all the edges from GraphToSet.java
    System.out.print(" " + a[j] + ","); //and print it out
    System.out.print(")");
    System.out.println("})"); //final output for graph to set
    public class GraphToSet {
    run GraphToSet to get the output from Graph.java and GraphToJava.java
    public static void main(String[] argv) {
    int x[][] = {
    { 1, 2 }, //graph are repsented in matrix form
    { 2, 3 },
    { 3, 4 },
    { 4, 1 },
    { 1, 3 },
    Graph.convert(x); //convert the graph into matrix by calling the function
    //convert() from Graph.java

    Hi,
    i got solution for ur problem and see /* Start of Modified code */ Comment for new modified code
    //compile this first
    import java.util.Hashtable;
    public class Graph {
    this function will convert graph that it get fom GraphToSet.java to set
    public static void convert(int[][] a) {
    int rows = a.length;
    int cols = a[0].length;
    System.out.println("Graph in matrix form["+rows+"]["+cols+"] = "); //Displaying the graph in matrix form
    for (int i=0; i<rows; i++) {
    System.out.print("{");
    for (int j=0; j<cols; j++)
    System.out.print(" " + a[j] + ",");
    System.out.println("},");
    System.out.println("\nG=(V,E)");
    System.out.print("G=({");
    /* Start of Modified Code */
    Hashtable num=new Hashtable(); // New Code
    String value=""; // New Code
    for (int k=0; k<rows; k++)
         value=String.valueOf(k);
    num.put(value,value);
    for (int k=0; k<rows; k++)
    System.out.print(" "+ (String)num.get(String.valueOf(k))+ ", "); //retrieving all the vertices from GraphToSet.java
    /* End of Modified Code */
    System.out.print("}"); //and print it out
    System.out.print(", {");
    for (int i=0; i<rows; i++) {
    System.out.print("(");
    for (int j=0; j<cols; j++) //retrieving all the edges from GraphToSet.java
    System.out.print(" " + a[j] + ","); //and print it out
    System.out.print(")");
    System.out.println("})"); //final output for graph to set
    public class GraphToSet {
    run GraphToSet to get the output from Graph.java and GraphToJava.java
    public static void main(String[] argv) {
    int x[][] = {
    { 1, 2 }, //graph are repsented in matrix form
    { 2, 3 },
    { 3, 4 },
    { 4, 1 },
    { 1, 3 },
    Graph.convert(x); //convert the graph into matrix by calling the function
    //convert() from Graph.java
    Regards
    Rajendra Prasad Bandi
    email : [email protected] , [email protected]

  • How to prevent B1 from populating the grid with components?

    Hello group,
    We have customized a form that pops up when user enters a parent item (of a template-type BOM) in the quotation grid.  The form displays the component items and lets the user mark which items to "paste" onto the quotation.  However, B1 automatically populates the grid with the component items once focus moves away from the item code column. 
    <b>How to prevent B1 from populating the grid with components <i>while</i> retaining the parent item in the item code column?</b>  I've tried trapping the Validate event, etc. with no success.

    Instead of setting the parent item up as a template type BOM, you could set up the list of parent/child items on a user table and use this user table to display the items in your pop-up screen.  As the parent item would no longer be a template BOM, Business One would no longer automatically popuplate the grid, and you could write your own code to add only the items selected in your pop-up screen into the grid.
    John.

  • CFmail errors- how to prevent error message from user?

    Greetings
    I have an app in which the admin user sends notices to Vendors who have signed up to recieve emails when a new bid is posted.
    Even though I have "required="yes" validate="email"" at intial Vendor sign up (I think email validation is better served using Javascript, I've heard anyway) inevitably, contact emails go bad- and there are about 5000 vendors in the system.
    When a user (admin) sends the notices, if there is a mal-formed or dead email address in the DB, it dislays my default error screen even though the send transaction was successful.
    Any advice on how to prevent this?
    Thanks in advance for your help
    sakonnetweb

    <cfset thisBidID = session.bid_ID>
    <cfquery name="list_sendto" datasource="#Request.BaseDSN#">
    SELECT
    lc.contact_fname, lc.contact_lname, lc.contact_email,
    b.ReferenceNumber, b.Title, b.Description,
    jb.bid_ID, jv.vendor_ID
    FROM
    ((junction_bid_ccc jb
    LEFT
    JOIN
    junction_vendor_ccc jv
    ON
    jb.cccode_ID = jv.cccategory_ID)
    LEFT
    JOIN
    lookup_contact lc
    ON
    lc.vendor_new_ID = jv.vendor_ID)
    LEFT
    JOIN
    Bid b
    ON
    b.new_bid_ID = jb.bid_ID
    WHERE
    jb.bid_ID = #thisBidID#
    AND
    lc.contact_email <> ''
    AND
    lc.contact_email IS NOT NULL
    GROUP
    BY
    lc.vendor_new_ID, lc.contact_email, lc.contact_lname,
    lc.contact_fname, b.new_bid_ID, b.ReferenceNumber,
    b.Title,
    b.Description, jb.bid_ID, jv.vendor_ID
    </cfquery>
    <cfset thisReferenceNumber = list_sendto.ReferenceNumber>
    <cfset thisTitle = list_sendto.Title>
    <cfmail query="list_sendto" to="#contact_email#" from="[email protected]"
    subject="Bid Notification" server="emailsrv1.cityofnewport.priv"
    groupcasesensitive="no">
    <p>You are receiving this message because .... etc.

  • OIM11gR2 - How to migrate an Application Instance Form

    Hello,
    I'm trying to migrate an Application Instance Form from my Dev env to my QA env.
    My target system is SAP
    I performed the following steps in Dev:
    1. Installed and configured the SAP Connector (no problem here)
    2. Created a sandbox
    3. Created an Application Instance
    4. Created the Application Instance Form
    5. Ran a target reconciliation to confirm everything is working properly
    6. Exported the sandbox
    7. Published the sandbox
    8. Via Deployment Manager I exported all objects related to SAP (Resource object, Process Forms, Lookups etc.)
    In QA I did:
    9. Installed and configured the SAP Connector (no problem here)
    10. Via Deployment Manager I imported the objects related to SAP
    11. Imported the sandbox
    Problem:
    To my surprise, the Application Instance does not have a Form in the QA env.
    I had to create it manually by performing the following:
    12. Create a sandbox
    13. Open the Application Instance definition
    14. Click on create (to create a form)
    15. Entered the same name I used in my Dev environment
    16. Received an error message saying that the form already exists
    17. Entered a different name for the Form
    18. Saved
    19. Exported the sandbox (to import in Prd)
    20. Published the sandbox
    21. Ran a target reconciliation to confirm everything is working properly
    I tried to reproduce the problem with another (test) destination environment because I don't want to have the same problem when migrating to Prd.
    I repeated the steps 9,10,11 except that I imported the sandbox exported from QA (step 19) instead.
    The same problem: Application Instance definition has no Form attached to it in my test destination environment.
    If I try to create the form with the same name, it gives an error message saying it is already there.
    Is my procedure wrong?
    Is there an official procedure explaining how to migrate only Application Instance Form from one env to another?
    My env:
    OS: Windows 2008 R2 SP1
    OIM: 11gR2 BP7
    SAP connector: 9.1.2.2.0
    Thanks,
    Adr

    This is a bug: Bug:16027176
    Check the [Article ID 1515225.1] which proposes a workaround that might be useful in your case (it was not in mine).
    In short the workaround is:
    The following order should be observed to export :
    - IT Resource & Application instance in one xml
    - Request DataSet in another xml
    - SysAdmin Sandbox (the one defined while creating the Application Instance and the Form)
    - Identity URL Sandbox (defined while customizing the fields on the Form, in the Catalogue page)
    Adr

  • HT1438 dont i have to submit a slip before giving back in my ipod for fixing? what do i do? how do i fill in the form?

    how do i fill in the form to give back my ipod and get a new one? whats the website i go to and what do i type in? can i change the color of my ipod from black to white?

    Follow the instructions here:
    Apple - Support - iPod - Service FAQ
    I do not think you can change the color but you can ask.

  • How do you construct a web form using coldfusion??

    How do you construct a web form using coldfusion?? any
    examples?
    thanks in adv.

    A sample Form:
    <cfform action="CCARProc.cfm"
    enctype="multipart/form-data" method="post" name="CCAR"
    onsubmit="return verify()">
    <table width="730" border="0" cellpadding="2"
    cellspacing="1" align="center" class="unnamed1">
    <!--DWLayoutTable-->
    <tr valign="top">
    <td colspan="3" bgcolor="#F2F2F2">Name Of
    Requester(<font color="red">*</font>)</td>
    <td width="402" bgcolor="#F2F2F2"><cfinput
    type="text" name="Requestor_Name" size="15" value="#REQNAME#"
    maxlength="25" >
     MTABT Email(<font
    color="red">*</font>) 
    <cfinput name="Req_Email" type="text" size="8"
    maxlength="20" value="#ReqEmail#"
    >@mtabt.org</td></tr>
    <tr>
    <td colspan="3">Requester Telephone #(<font
    color="red">*</font>) </td>
    <td><cfinput type="text" VALUE="#REQPHONE#"
    name="RPhone" size="12" maxlength="12" message="Requester Phone
    cannot be blank / Invalid Entry!" required="yes"
    validate="telephone"> [e.g. xxx xxx xxxx or
    xxx-xxx-xxxx]</td>
    </tr>
    <tr>
    <td colspan="3" bgcolor="#F2F2F2">Facility(<font
    color="red">*</font>)</td>
    <td bgcolor="#F2F2F2">
    <cfselect name="Facil">
    <option value="2B">2B </option>
    <option value="BBT">BBT </option>
    <option value="BW">BW </option>
    <option value="CB">CB </option>
    <option value="HH">HH </option>
    <option value="MP">MP </option>
    <option value="QMT">QMT </option>
    <option value="RI">RI </option>
    <option value="TM">TM </option>
    <option value="TB">TB </option>
    <option value="TN">TN </option>
    <option value="VN">VN </option>
    </cfselect>
    </td>
    </tr>
    <tr>
    <td colspan="3">Department(<font
    color="red">*</font>)</td>
    <td><cfselect name="Dept">
    <option value="Contracts">Contracts </option>
    <option value="Engineering">Engineering
    </option>
    <option value="Executive Office">Executive
    Office</option>
    <option value="Finance">Finance </option>
    <option value="General Counsel">General Counsel
    </option>
    <option value="HS">HS </option>
    <option value="HR">HR </option>
    <option value="ISD">ISD</option>
    <option value="Legal">Legal </option>
    <option value="Labor Relations">Labor Relations
    </option>
    <option value="Operations">Operations </option>
    <option value="Payroll">Payroll </option>
    <option value="Planning & Budget">Planning &
    Budget </option>
    <option value="Procurement & Mtrl">Procurement
    & Mtrl </option>
    <option value="Purchasing">Purchasing </option>
    <option value="Revenue Management">Revenue Management
    </option>
    <option value="Staff Services">Staff Services
    </option>
    <option value="SD">SD</option>
    <option value="Technology">Technology</option>
    </cfselect></td>
    </tr>
    <tr>
    <td colspan="3" bgcolor="#F2F2F2">Division(<font
    color="red">*</font>)</td>
    <td bgcolor="#F2F2F2"><cfinput name="Div"
    type="text" size="20" maxlength="25" VALUE=""></td>
    </tr>
    <tr valign="top">
    <td height="27" colspan="3" >Justification(<font
    color="red">*</font>)</td>
    <td bgcolor=""><textarea name="Justi" cols="50"
    rows="3" wrap="VIRTUAL" ></textarea> </td>
    </tr>
    <tr>
    <td colspan="3" bgcolor="#F2F2F2">VP Approval
    By (<font color="red">*</font>)</td>
    <td bgcolor="#F2F2F2"><cfinput name="VPAppFName"
    type="text" size="20" maxlength="25" VALUE="#VPFName#">
         MTABT
    Email(<font color="red">*</font>) 
    <cfinput name="VPE" type="text" size="8" maxlength="20"
    value="#VPEmail#" >@mtabt.org</td>
    </tr>
    <tr>
    <td colspan="3" valign="top"
    bgcolor="#F2F2F2"></td>
    <td colspan="2" rowspan="2" valign="top"
    bgcolor="#F2F2F2"><div align="left">
    <input name="Submit" type="submit" value="SubmitTheForm"
    class="button"
    style="font-size='10pt';color='#663399';font-face='Arial,
    Helvetica, sans-serif';" >
    <input name="Reset" type="reset" value="ReSetTheForm"
    class="button"
    style="font-size='10pt';color='#663399';font-face='Arial,
    Helvetica, sans-serif';">
    </div></td>
    <td width="90" valign="top"
    bgcolor="#F2F2F2"></td>
    </tr>
    </table>
    <div align="right"><span class="style4">Revised(
    01.28.05 )</span>
    <input name="submitDate" type="hidden"
    value="<cfoutput>#DateFormat(Now(),'mm/dd/yy')#</cfoutput>">
    </div>
    </cfform>

  • How to create a report in Form line Style and can display Image field?

    Hi,
    In Report builder 10g, I would like to create a Report with Form Line Style and this report included a Image field.
    I can choose this Style only when Select Report type is Paper Layout. Because, If I choose Create both Web & Paper Layout or Create Web Layout only then in the next Style tab 03 option Form, Form letter and Mailing Label be Disabled.
    But in Paper Layout, my report can not display Image field.
    I tried with Web layout and all the other Styles (Except 03 mentioned be Disabled) then all Styles are displayed Imager field OK.
    How to create a report in Form line Style and can display Image field?
    I was change File Format property of my Image field from text to Image already in Property Inspector. But report only showed MM for my Image field.
    Thanks & regards,
    BACH
    Message was edited by:
    bachnp

    Here you go..Just follow these steps blindly and you are done.
    1) Create a year prompt with presentation variable as pv_year
    2) Create a report say Mid report with year column selected 3 times
    - Put a filter of pv_year presentation variable on first year column with a default value say @{pv_year}{2008}
    - Rename the second time column say YEAR+1 and change the fx to CAST(TIME_DIM."YEAR" AS INT)+1
    - Rename the second time column say YEAR-1 and change the fx to CAST(TIME_DIM."YEAR" AS INT)-1
    Now when you will run Mid Report, this will give you a records with value as 2008 2009 2007
    3) Create your main report with criteria as Year and Measure col
    - Change the fx for year column as CAST(TIME_DIM."YEAR" AS INT)
    - Now put a filter on year column with Filter based on results of another request and select these:
    Relationship = greater than or equal to any
    Saved Request = Browse Mid Report
    Use values in Column = YEAR-1
    - Again,put a filter on year column with Filter based on results of another request and select these:
    Relationship = less than or equal to any
    Saved Request = Browse Mid Report (incase it doesn't allow you to select then select any other request first and then select Mid Report)
    Use values in Column = YEAR+1
    This will select Year > = 2007 AND Year < = 2009. Hence the results will be for year 2007,2008,2009
    This will 100% work...
    http://i56.tinypic.com/wqosgw.jpg
    Cheers

Maybe you are looking for

  • Compressing for Apple TV

    I have a question for you video compression gurus out there: I am living in Norway, and we always make video in 25 fps (PAL) or 25 fps/50 fps (HD). I have created several animations with the excellent software ArtMaticPro (from U&I Software), and I h

  • Create Node in Solar01 using ABAP Program

    Hi Experts In our project, the integration between ARIS and Solution Manager is not working. So the project team has decided to develop a workaround solution for this problem. The solution is we download all the BPP & BPS from ARIS into an excel file

  • PORDCR102 - Logical system not updated in EKKO

    Hi, I am using idoc PORDCR102 to create Purchase Orders. The PO is created successfully but the LOGSY field in EKKO table is not updated with the value from field LOGSYSTEM in the header segment of the IDOC. Kindly do the needful. Thanks in advance.

  • JBuilder debug problem

    Hi, I'm using JBuilder 4 ( I know its pretty old but we can't afford to keep upgrading...) and I've just reached a problem with the debugger. My project has dozens of included libraries and as such the command line created by JBuilder has got longer

  • Function modules not found....

    Hello, I found the following errors in my SDCCN logs, I have googled and also searched in SAP market place and even in SDN but no help. Also the EWA shows the same in Missing Function Module column.Please help in this regards. Thanks and Regards, Yog