Form Compiles in Forms Builder but not Unix?

I have a form that compiles fine in Forms Builder (Version 6.0.8.11.3). When trying to compile the form on a Solaris Middleware Server it fails and gives several errors similar to the following:
Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
PL/SQL ERROR 201 at line 4, column 37
identifier 'SATURN.SFTREGS' must be declared
PL/SQL ERROR 0 at line 4, column 4
SQL Statement ignored
I realize that these same errors in Forms Builder if I have not connected to the database (Version 9.2.0.4.0) before compiling so I'm guessing that there is some environment variable set incorrectly on the middleware server. I'm quite new to Unix and am not sure what variables I should be looking at...any thoughts?

We have tried both commands as indicated. We get the same errors that were in the original post as outlined below;
Compiling PRE-INSERT trigger on form...
No compilation errors.
Compiling WHEN-NEW-FORM-INSTANCE trigger on form...
No compilation errors.
Compiling POST-QUERY trigger on SPRIDEN data block...
No compilation errors.
Compiling POST-BLOCK trigger on SPRIDEN data block...
No compilation errors.
Compiling KEY-NEXT-ITEM trigger on SPRIDEN_ID item in SPRIDEN data block...
No compilation errors.
Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block...
Compilation error on WHEN-NEW-BLOCK-INSTANCE trigger on SFTREGS data block:
PL/SQL ERROR 201 at line 4, column 37
identifier 'SATURN.SFTREGS' must be declared
PL/SQL ERROR 0 at line 4, column 4
SQL Statement ignored
PL/SQL ERROR 320 at line 4, column 11
the declaration of the type of this expression is incomplete or malformed
PL/SQL ERROR 0 at line 13, column 7
SQL Statement ignored
Compiling WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block...
Compilation error on WHEN-VALIDATE-ITEM trigger on SFTREGS_TXT_TOTAL_BILLING_HOUR item in SFTREGS data block:
PL/SQL ERROR 201 at line 2, column 6
identifier 'SATURN.SFTREGS' must be declared
PL/SQL ERROR 0 at line 1, column 1
SQL Statement ignored
Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SYSMUSA data block...
No compilation errors.
Compiling PRE-INSERT trigger on SYSMUSA data block...
No compilation errors.
Compiling POST-UPDATE trigger on SYSMUSA data block...
Compilation error on POST-UPDATE trigger on SYSMUSA data block:
PL/SQL ERROR 201 at line 3, column 6
identifier 'SMLOCAL.SYSMUSA' must be declared
PL/SQL ERROR 0 at line 1, column 1
SQL Statement ignored
Compiling ON-ERROR trigger on SYSMUSA data block...
No compilation errors.
Compiling WHEN-NEW-BLOCK-INSTANCE trigger on SGRSATT data block...
No compilation errors.
Compiling POST-QUERY trigger on SGRSATT data block...
No compilation errors.
Compilation errors have occurred.
Any further thoughts?

Similar Messages

  • Flex mobile 4.6 app works inside flash builder but not in android emulator

    Originally posted on stackoverflow: http://stackoverflow.com/questions/8663892/flex-mobile-4-6-app-works-inside-flash-builder- but-not-in-android-emulator
    I have a basic flex mobile 4.6 app and it works fully fine in the flash builder built-in emulator using an android device profile like aria...
    It also launches fine in the android emulator but one particular view shows blank (and this view works fine in flash builder).
    Before I get in to many details of the view are there any categorical gotchas that can be causing this?
    I can't seem to get the trace statements from the app to show in 'adb logcat'. It seems I need to compile a debug version of the apk but I don't know how to do this. I use the 'Export Release Build' from the Project menu in flash builder and it doesn't seem to have an option for debug=true.
    The problematic/blank view basically uses the stagewebview and iotashan's oauth library to call linkedin rest apis... A different (and working) view can make restful web service calls in the emulator fine, so it doesn't seem to be an internet permission.
    The source code contained in the problematic/blank view is almost identical to the tutorial found at:http://www.riagora.com/2011/01/air-and-linkedin/
    The differences are: a) The root tag is a View b) I use StageWebView instead of HtmlContainer c) I use my own linkedin key and tokens.
    I would appreciate it if someone can provide me with some pointers on how to troubleshoot this situation. Perhaps someone can tell me how to debug the app while running in the emulator (I think I need the correct adt command arguments for this which matches the 'Export Release Build' menu but adds the debug param?)
    Thanks for your help in advance.
    Comment Added:
    I suspect that this has to do with connections to https:// api.linkedin.com and https:// www.linkedin.com. The only reason I can think of that the same code is not having issues inside of Flex Builder but indeed having issues in the Android emulator is something to do with certificates. Any ideas?

    Thanks er453r,
    I have created a project that clearly reproduces the bug.  Here are the steps:
    1) Create a UrlLoader and point it to https://www.google.com (HTTPS is important because http works but HTTPS does not)
    2) Load it
    3) Run in Flash Builder 4.6/Air 3.1 and then run in Android emulator.  The former works with an http status 200.  The latter gives you an ioerror 2032.  I am assuming what works in Flash Builder is supposed to work in the Android Emulator and what what works in the emulator is supposed to work in a physical device (plus or minus boundary conditions).
    I see a certificate exception in adb logcat but not sure if it's related...
    Here is the self contained View code which works with a TabbedViewNavigatorApplication:
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
                        xmlns:s="library://ns.adobe.com/flex/spark"
                        xmlns:mx="library://ns.adobe.com/flex/mx"
                        xmlns:ns1="*"
                        xmlns:local="*"
                        creationComplete="windowedapplication1_creationCompleteHandler(event) "
                        actionBarVisible="true" tabBarVisible="true">
              <fx:Script>
                        <![CDATA[
                                  import mx.events.FlexEvent;
                                  protected var requestTokenUrl:String = "https://www.google.com";
                                  protected function windowedapplication1_creationCompleteHandler(event:FlexEvent):void
                                            var loader:URLLoader = new URLLoader();
                                            loader.addEventListener(ErrorEvent.ERROR, onError);
                                            loader.addEventListener(AsyncErrorEvent.ASYNC_ERROR, onAsyncError);
                                            loader.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
                                            loader.addEventListener(HTTPStatusEvent.HTTP_RESPONSE_STATUS, httpResponseStatusHandler);
                                            loader.addEventListener(IOErrorEvent.IO_ERROR, ioErrorHandler);
                                            var urlRequest:URLRequest = new URLRequest(requestTokenUrl);
                                            loader.load(urlRequest);
                                  protected function requestTokenHandler(event:Event):void
                                  protected function httpResponse(event:HTTPStatusEvent):void
                                            label.text += event.status;
                                            // TODO Auto-generated method stub
                                  private function completeHandler(event:Event):void {
                                            label.text += event.toString();
                                            trace("completeHandler data: " + event.currentTarget.data);
                                  private function openHandler(event:Event):void {
                                            label.text +=  event.toString();
                                            trace("openHandler: " + event);
                                  private function onError(event:ErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("onError: " + event.type);
                                  private function onAsyncError(event:AsyncErrorEvent):void {
                                            label.text += event.toString();
                                            trace("onAsyncError: " + event);
                                  private function onNetStatus(event:NetStatusEvent):void {
                                            label.text += event.toString();
                                            trace("onNetStatus: " + event);
                                  private function progressHandler(event:ProgressEvent):void {
                                            label.text += event.toString();
                                            trace("progressHandler loaded:" + event.bytesLoaded + " total: " + event.bytesTotal);
                                  private function securityErrorHandler(event:SecurityErrorEvent):void {
                                            label.text +=  event.toString();
                                            trace("securityErrorHandler: " + event);
                                  private function httpStatusHandler(event:HTTPStatusEvent):void {
                                            label.text += event.toString();
                                            //label.text += event.responseHeaders.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function httpResponseStatusHandler(event:HTTPStatusEvent):void {
                                            label.text +=  event.toString();
                                            trace("httpStatusHandler: " + event);
                                  private function ioErrorHandler(event:IOErrorEvent):void {
                                            label.text +=  event.toString();
                                            label.text += event.text;
                                            trace("ioErrorHandler: " + event);
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Label id="label" y="185" width="100%" color="#0A0909" horizontalCenter="0" text=""/>
    </s:View>

  • Spry form validation working in IE but not in Firefox or...

    Ok putting together a contact us form and would like a few
    fields to be required. It works in IE7 but not in Firefox, Safari
    or Google Chrome. In IE7 I get the error msg for no valid email but
    in the other browsers it just does nothing. Here is the link to the
    page
    Aspen
    Homes
    Can anyone help with this? I have used Spry on a couple other
    site and never had an issue. I am updated to the most recent
    version also. I am running
    Vista Ultimate (64-bit)
    DW CS3 or DW CS4 (both do the same thing)
    I have attached my code here in a txt file
    Page
    Code
    thanks
    B

    Anyone?

  • Form is fillable in Reader but not in Acrobat

    I created a fillable, saveable, password protected form in LiveCycle Designer 9.0. It works as intended if opened with Adobe Reader 9 and Adobe Acrobat X. But when I email it to myself at work and open it in Adobe Acrobat 7.0 Pro, it's still password protected, but not fillable. Why is this?
    I have a previous incarnation of the form that does work correctly in both Reader 9 and Acrobat 7 Pro. Somewhere along the way I made some changes and now it doesn't work. Anyone know what I might be doing wrong?

    Hi,
        Interactive PDFs created in Adobe Livecycle will work with the target version, which will be configured at File > Form Properties > Default: Choose version to run form.
       In you case what i assume (bad to say) but, you have created a PDF that works with Target version 9 or later for both Acrobat and Reader. So, when this sort of PDF form is opened in the earlier version, it provides undesirable results, and will not work properly. (For every new target version Adobe provides new functionalities to create PDFs.)
    and as per the password, Adobe Acrobat has already provided with the security features in it, it works.
       So, Create an Interactive PDF on setting the target version 7.0.5 or later, and i think that should work.
    Apologize, in case i am misunderstanding your question.
    thanks,
    Rajesh

  • Interactive form works in Reader 7 but not in Pro 7 or Standard 7

    I have created and interactive pdf form to send to users. Everyone can open and fill in the form. But people who have Acrobat Pro 7 and Acrobat Standard 7, can fill in the form, but not all the data is saved.
    Any thoughts on what is causing this and how to fix?
    Thanks,
    mdawn

    The binding determines whether the data in the field should be written to the data dom or not. A value of Normal indicates that you want the dta written to the dom and it will follow the hierarchy set in the hierarchy view of Designer. If you set it to None that indicates that you do not want the data written to the dom. You can bind the field to other inbound streams but that is another topic.
    The Data Dom is what is used to store all of the data in the form. It is what is used to make the data structure of the data file that is saved or submitted.
    Does that help?
    Paul

  • Form prints from one account, but not from other on same computer

    With Brother 5040 printer and latest driver.
    I have a form in a Panorama V db file that will print properly from my "Test" account, but not my main account on the same machine.
    When I try to print this form from my main account I get a the intitial Print Dialog, then brief flash of the preparing to print. But it never makes it to the printer. It was working fine up until yesterday. I made no system level changes.
    This is a word processing form in PanV. Other forms in the same file print fine. A word processing form in a different file also has developed the problem. Obviously, there is some connection to Panorama, still looking for troubleshooting solutions.
    Martin

    Look for a problem in your user library. Try removing printing preference and other printing-related files from the library, as well as the Panorama plist. Then log out and back in, and see if it prints properly.

  • Compiles well with eclipse but not with javac

    Hello.
    I am using Windows XP and eclipse 3.0.2.
    I have j2sdk-1_4_2_07-windows also.
    I built class files from the code below with eclipse.
    On jre, It silently runs and exits as expected.
    But when compiled with javac, It does not.
    It dumps a stack trace.
    Which compiler is right?
    public class ANullPointerException {
         private Object o = new Object();
         private Sub sub = new Sub();
         private abstract static class Super {
              protected abstract Object access();
              private Super() {
                   access();
         private class Sub extends Super {
              protected Object access() {
                   return o;
         public static void main(String[] args) {
              new ANullPointerException();
    }the stack trace was as below
    java.lang.NullPointerException
         at ANullPointerException.access$200(ANullPointerException.java:1)
         at ANullPointerException$Sub.access(ANullPointerException.java:15)
         at ANullPointerException$Super.<init>(ANullPointerException.java:9)
         at ANullPointerException$Super.<init>(ANullPointerException.java:5)
         at ANullPointerException$Sub.<init>(ANullPointerException.java:13)
         at ANullPointerException$Sub.<init>(ANullPointerException.java:13)
         at ANullPointerException.<init>(ANullPointerException.java:3)
         at ANullPointerException.main(ANullPointerException.java:20)
    Exception in thread "main" I found 3 class files built by eclipse. They were
    ANullPointerException$Sub.class,
    ANullPointerException$Super.class and
    ANullPointerException.class.
    No missing or extra files found, I think.
    But I found 4 class files built by javac. They were
    ANullPointerException$1.class,
    ANullPointerException$Sub.class,
    ANullPointerException$Super.class and
    ANullPointerException.class.
    I do not know why ANullPointerException$1.class is needed.
    Thank you in advance.

    I found the answer myself.
    I have been setting the eclipse's .class file compatibility to 1.4.
    But it is not javac's default.
    So all I need to do is javac -target 1.4 ANullPointerException.java.
    Sorry for a noise

  • Report data shows up in Builder but not when run on web

    I have a report that pulls up the data just fine when run in Builder but when I run it on the web, it shows up, no errors, with no data...just blank.
    I am using a global temp table to do this.
    Any ideas on what might cause this to happen?
    Thank you for ANY suggestions!!
    --KWien                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    Are you sure you are using all the parameters (that work in Builder) in the URL?
    Gicu

  • Native Process running from Flash Builder but not from the installed exe

    I have created an AIR application to launch a native process. The   application works fine when tested in Flash Builder but doesn't runs   when I create and AIR  installer and run the installed exe. Any idea  what might be wrong?

    Have you created a native installer instead of just an AIR file.
    -ted

  • XML-form shown in the Browser but not in iView

    Hi,
    I am exploring xml-builder, was able to create a project, save the form and can even use the form from the New 'New Project' in the browser, saved my news item. But the news item is not shown on the iView, though I can edit it (I only see the functions 'edit', 'sent to', etc. Can you please tell what I am missing to do properly? I am using JRE 1.4.
    thanks a lot
    Marcos

    Hi Marcos,
    is it possible that you only have created the edit form, not the corresponding Show/RenderListItem/ListShow form for showing up the content?!
    Hope it helps
    Detlev

  • Form opening for some users but not others

    I created a form with an area for the recipient to simply type their name, save the document and email it back.  This works for some but I have a user getting an error message:
    "This document does not allow changes to be saved.  Any changes you have made will not be included in the document when it's mailed.  Do you want to continue?"
    Could this be an issue with the user's Reader?  They cannot save or email the document once they type in their name.

    Reader XI is the first version of Adobe Reader that can save a filled in PDF form without any additional processing steps.
    Versions of Reader prior to version XI could not save filled-in forms. Version 7 with updates was the first version of Reader that could save forms for which special Extended Reader Rights were applied to.
    Which version of Reader are the users with problems using?
    If before version XI and version 7 or newer, then you need to apply Extended Reader Rights to the form. For users with version 6 or older, they will have to upgrade to a newer version of Reader.

  • LiveCycle Form data appearing in Preview but not in Output

    Hello!
        We have forms that were converted from Adobe Central to Adobe LiveCycle. We're testing a form now to ensure it is working properly. When looking at the form in Preview PDF we can see the data from the XML source display on the form. However, when we run our process to generate the form, the data does not appear. Any thoughts as to why the data is not appearing when we run our process but appears in the preview?
    Thanks,
    Wendy

    Hi Shreesh,
    Please check  follow the below points.
    1. For which info providers you are not getting data at report level check the reporting availalabilty at manage screen.
    2. Also check  whether Identifation (assign) for primary key characteristics for all the infocubes has been done .
    Ex: as you are loading the data for FI cubes, 0account will become one of the primery key characteristic to be Identified as a common object.
    4. Create Queries seperately on the infocubes for which you are not getting data instead of creating report on multiprovider. So that you can get some clue.
    Thanks

  • Form is displayed while printed, but not displayed on screen (print preview)

    Dear all,
    We use an Adobe Form to visualise our invoices ... When we print an invoice directly to the printer, everything looks ok and all forms are displayed correctly ... But when we try to watch the same invoice on screen (print preview), we do not see the subform ...
    The property "presence" of the specified subform is "visible", so this is probably not the problem ?
    Does anyone have an idea what the problem could be ?
    Thanks in advance !
    Greetz,
    Kurt.

    Hi,
    please insure your local machine issue.
    use a "CC Cleaner" S/W to your local machine , and then check again .
    Regards
    Puneet

  • Forms work on my Mac but not on my PC? "Operation is not permitted"

    I created a form but it tells the user "operation is not permitted" when the submit button is pressed and also doesn't allow the user to access the any of the field to type their information in.
    It is very frustrating for me as I need the form to work so I can upload it to the clients website and get paid. It is particularly frustrating when it works on my Macbook Pro but wont work on my PC or the millions of PC out there.
    This is how I made the PDF. And I also made using the same process a test, blank page PDF with 1 text field and 1 submit button and nothing else.
    1. Mad the form in Illustrator
    2. Exported it as PDF
    3. Made the form fields
    4. Made the Submit button
    5. Enabled usage rights for Adobe Reader
    6. Saved file
    7. Uploaded the file
    8. Works on Mac and not on PC
    Can someone please help. I have spent numerous hours and searches on it, It's driving me crazy.
    Anyone from Adobe care to help? Probably not.

    Looks like there is something wrong with my PC.
    The PDF form worked fine on the clients computer. It seems like the only place it wouldn't work is on my PC. So I am assuming it's a problem with my computer.
    Don't know what it could be though, I have the latest version of reader and it's a new computer.
    From one problem to another...story of my life...:)
    At least it's working at clients end.
    Thanks for trying to help MarkATS

  • How can I open XML form in the Adobe reader, but not through the browser extention

    I am saving the document as Adobe Dynamic XML Form (useing Adobe LiveCycle Designer), When I open the document I get this error and I do have a Adobe reader installer.
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by
    visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark
    of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other
    countries

    Open the form in Adobe Reader.

Maybe you are looking for

  • Performing Intersect on Opportunity History and Opportunity Product Revenue

    I've reviewed as many postings on Intesect and Union as I possibly can, but I'm still stumped. In my case, I'd like to put data from the Opportunity History together with the Opportunity Product Revenue History. I can get it somewhat close to what I'

  • SAP Business One 8.8 Developer License

    Hi, I am relatively new to SAP but has years of experience has a developer. I would like to develop competencies on SAP Business One 8.8 (or the latest version) to enable me deploy, consult and develop add ons for the platform. I would like to aquire

  • Error While doing KO88

    Hi All While doing KO88 (internal order settlement from AUC to Asset ) getting the error saying, Even though all the GL are maintained Account 'Acc.dep. accnt.for ordinary depreciation' could not be found for area 01 Message no. AU133 Diagnosis When

  • Auto-Payment Setup

    When I try to set up auto-payment, I am denied, and get the message: We are currently experiencing difficulties with Automatic Direct Debit enrollment. Please try again later. We apologize for the inconvenience. I have been getting this message for t

  • How to use the Embedded PDF plugin

    Hi all, I have installed a plugin Embedded PDF. Does anyone know how to used this for printing an interactive report??