The customers and orders form modules

Please,i am new to oracle forms.I have been reading a book on forms ,but the book uses two form modules created by Oracle for demo purposes, the Customer and Orders form modules.I need to access and open these form modules from my form builder.I have not been able to figure out how to do that.Please how can i open the customers and orders module from form builder.
I will appreciate any help.

Assuming you have the .FMB files stored on your hard drive, you can simply double-click on them or use File -> Open in Forms Builder.

Similar Messages

  • How do I contact the Credit and Order Review Team other than by phone?

    I ordered a new Galaxy Note 4 today, entered my credit card information, submitted the order and everything appeared to go through fine.  About 20 minutes after I submitted the order and received the email receipt, I received a message stating "We have received your order; however, this transaction cannot be processed because our order review department needs additional information from you.  Please contact the Credit and Order Review Team at 866-338-7390 to complete your order."   
    My situation is a bit unusual in that my old phone finally died so I don't have an existing cell phone to use to call the Credit and Order Review Team by phone.  Is there a way to email them securely through the Verizon email system or some other electronic method of providing them with the information they need to process my order?   Can't this be accomplished WITHOUT being required to use an existing phone?   I suppose my only alternative would be to find a pay phone somewhere.in the city that hasn't been disconnected, vandalized or left broken and call the Review Team to answer their questions.   But honestly, there has to be an easier way to accomplish this simple exchange of information.

    Well, yes.  I did think of that one.  But for some reason there is only 1 "authorized" Verizon store in the Palm Springs, CA area and even though they have 6 to 8 staff walking around with tablets looking busy, it can still take over an hour to get someone to actually help you.  And even then, they seem to be very 'compartmentalized' so one only sells accessories off the wall, while 3 others only help existing customers, etc.  So even once you get someone's attention they are probably not the 1 or 2 staff out of 8 that you really need to speak to.  It would be quicker to scour the city for a working pay phone.  :-)

  • How a menu item can read the parameter from a Form module and ....

    I would like to specify the menu item to go_block from a Form module, or even open window, reading parameters.
    But there is an Error says "CANNOT CALL LINK-IN FORM from Form builder"
    How to make it works??
    Plesae HELP~~~~~

    Dear Friend,
    There is one Procedure by which you can get the value of the paramtere passed to the form.. this procedure is NAME_IN...
    Hope this will solve your problem..
    Ok
    Email me when your problem is solved...
    My email is "[email protected]"
    Regards
    Shan

  • How to open quotation and order form?

    How to open quotation and sales order form from code behind in VB?

    Hi,
    On the button click event u need to execute the following code to open the required system forms,
    sbo_application.ActivateMenuItem("2049") 'For sales Quotation
    sbo_application.ActivateMenuItem("2050") 'For Sales Order form.
    Hope it helps,
    Vasu Natari.

  • How to dynamically call and order program modules

    Hey guys,
    I have ‘x’ pieces of code (x could be 10’s or 100’s of modules).
    I need to be able to dynamically call and run ‘y’ of them, but I need to be able to do it in parallel, and some of them might be in order.
    For instance ‘A’, ‘B’ and ‘C’ need to run in parallel,
    but 'D' needs data from 'A' and will run after 'A',
    and 'E' needs to run after ‘D’,
    and ‘F’ needs data from 'C' and will to run after ‘C’
    So I have two questions.
    How should I organize and order these dynamic calls?
    and What method should I use to pass data along from one VI to another?

    jcyth wrote:
    [...]But when you thought of Teststand, did you have a specific feature of Teststand that you thought it would be a viable solution?
    Since we will probably have the end user choose the modules required in this module operation, having a premade sequence editor might be nice
    My point mentioning TestStand is that my feeling tells me that you are going to re-implement some very basic functions which are already included in TestStand.
    To be honest: TestStand adds additional costs. You have to purchase licenses, you should get some training which takes time until getting payed off.
    But on the other hand: You also need time to implement and test your self-made approach. Also: Does this project grow in the future? Do you need additional features in the (near) future?
    Going into this will result in a break even in costs where you can say: if i take more time in my self-made approach, it is cheaper to go for TestStand right from the beginning.
    TestStand is designed to be VERY flexible. But you have to get familiar to this flexibiity in order to get where you want. Therefore, i recommend you to collect some information before making the decision. Maybe you want to invite some sales guy from NI in order to present TestStand to you....
    Norbert
    CEO: What exactly is stopping us from doing this?
    Expert: Geometry
    Marketing Manager: Just ignore it.

  • Profiling the loading and unloading of modules

    Modules appear to be the ideal solution for building complex rich internet applications but first hand experience has also shown me that they can leak memory like nothing else. I've read anything and everything I could find about modules and module loading/unloading including of Alex Harui's blog post "What We Know About Unloading Modules" that reveals a number of potential leak causes that should be considered.
    I've now created a simple soak test that repeatedly loads and unloads a specified module to help identify memory leaks using the profiler. However, even with the most basic of modules, I find that memory usage will steadily grow. What I'd like to know is what memory stuff is unavoidable flex overhead associated with the loading of modules and what memory stuff am I guilty for, for not cleaning up object references? I'd like to be able to establish some baseline values to which I will be able to compare future modules against.
    I've been following the approach suggested in the Adobe Flash Builder 4 Reference page "Identifying problem areas"
    "One approach to identifying a memory leak is to first find a discrete set of steps that you can do over and over again with your application, where memory usage continues to grow. It is important to do that set of steps at least once in your application before taking the initial memory snapshot so that any cached objects or other instances are included in that snapshot."
    Obviously my set of discrete steps is the loading and unloading of a module. I load and unload the module once before taking a memory snapshot. Then I run my test that loads and unloads the module a large number of times and then take another snapshot.
    After running my test on a very basic module for 200 cycles I make the following observations in the profiler:
    Live Objects:
    Class
    Package (Filtered)
    Cumulative Instances
    Instances
    Cumulative Memory
    Memory
    _basicModule_mx_core_FlexModuleFactory
    201 (1.77%)
    201 (85.17%)
    111756 (24.35%)
    111756 (95.35%)
    What ever that _basicModule_mx_core_FlexModuleFactory class is, it's 201 instances end up accounting for over 95% of the memory in "Live Objects".
    Loitering Objects:
    Class
    Package
    Instances
    Memory
    Class
    600 (9.08%)
    2743074 (85.23%)
    _basicModule_mx_core_FlexModuleFactory
    200 (3.03%)
    111200 (3.45%)
    However this data suggests that the _basicModule_mx_core_FlexModuleFactory class is the least of my worries, only accounting for 3.45% of the total memory in "Loitering Objects". Compare that to the Class class with it's 600 instances consuming over 85% of the memory. Exploring the Class class deeper appears to show them all to be the [newclass] internal player actions.
    Allocation Trace:
    Method
    Package (Filtered)
    Cumulative Instances
    Self Instances
    Cumulative Memory
    Self Memory
    [newclass]
    1200 (1.39%)
    1200 (14.82%)
    2762274 (13.64%)
    2762274 (62.76%)
    This appears to confirm the observations from the "Loitering Objects" table, but do I have any influence over the internal player actions?
    So this brings me back to my original question:
    What memory stuff is unavoidable flex overhead associated with the loading of modules and what memory stuff am I guilty for, for not cleaning up object references? If these are the results for such a basic module, what can I really expect for a much more complex module? How can I make better sense of the profile data?
    This is my basic module soak tester (sorry about the code dump but there's not that much code really):
    basicModule.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Module xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/halo"
               layout="absolute" width="400" height="300"
               backgroundColor="#0096FF" backgroundAlpha="0.2">
         <s:Label x="165" y="135" text="basicModule" fontSize="20" fontWeight="bold"/>
    </mx:Module>
    moduleSoakTester.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/halo"
                   width="400" height="300" backgroundColor="#D4D4D4"
                   initialize="application_initializeHandler(event)">
         <fx:Script>
              <![CDATA[
                   import mx.events.FlexEvent;
                   import mx.events.ModuleEvent;
                   [Bindable]
                   public var loadCount:int = -1;
                   [Bindable]
                   public var unloadCount:int = -1;
                   public var maxCycles:int = 200;
                   public var loadTimer:Timer = new Timer(500, 1);
                   public var unloadTimer:Timer = new Timer(500, 1);
                   protected function application_initializeHandler(event:FlexEvent):void
                        loadTimer.addEventListener(TimerEvent.TIMER_COMPLETE, loadTimer_timerCompleteHandler);
                        unloadTimer.addEventListener(TimerEvent.TIMER_COMPLETE, unloadTimer_timerCompleteHandler);
                   protected function loadModule():void
                        if(loadCount < maxCycles)
                             moduleLoader.url = [correctPath] + "/basicModule.swf";
                             moduleLoader.loadModule();
                             loadCount++;
                   protected function unloadModule():void
                        moduleLoader.unloadModule();
                        unloadCount++;
                   protected function load_clickHandler(event:MouseEvent):void
                        load.enabled = false;
                        loadModule();
                        unload.enabled = true;
                   protected function unload_clickHandler(event:MouseEvent):void
                        unload.enabled = false;
                        unloadModule();
                        run.enabled = true;
                   protected function run_clickHandler(event:MouseEvent):void
                        run.enabled = false;
                        moduleLoader.addEventListener(ModuleEvent.READY, moduleLoader_readyHandler);
                        moduleLoader.addEventListener(ModuleEvent.UNLOAD, moduleLoader_unloadHandler);
                        loadTimer.start();
                   protected function moduleLoader_readyHandler(event:ModuleEvent):void
                        unloadTimer.start();
                   protected function moduleLoader_unloadHandler(event:ModuleEvent):void
                        loadTimer.start();
                   protected function loadTimer_timerCompleteHandler(event:TimerEvent):void
                        loadModule();
                   protected function unloadTimer_timerCompleteHandler(event:TimerEvent):void
                        unloadModule();
              ]]>
         </fx:Script>
         <mx:ModuleLoader id="moduleLoader"/>
         <s:VGroup x="20" y="20">
              <s:HGroup>
                   <s:Button id="load" label="Load" click="load_clickHandler(event)" enabled="true"/>
                   <s:Button id="unload" label="Unload" click="unload_clickHandler(event)" enabled="false"/>
                   <s:Button id="run" label="Run" click="run_clickHandler(event)" enabled="false"/>
              </s:HGroup>
              <s:Label text="loaded: {loadCount.toString()}" fontSize="15"/>
              <s:Label text="unloaded: {unloadCount.toString()}" fontSize="15" x="484" y="472"/>
         </s:VGroup>
    </s:Application>
    Cheers,
    -Damon

    Easiest way I've found to get your SDK version from within Builder is to add this: <mx:Label text="{mx_internal::VERSION}" />
    http://blog.flexexamples.com/2008/10/29/determining-your-flex-sdk-version-number/
    Peter

  • Payment terms for the customers and vendors

    Dear FI Experts
    Generally vendoru2019s payment terms purpose we will use document date and customers payment term purpose we will use posting date.
    My query is what the logic behind this was, kindly explain this logic.
    Regards,
    venkataswamy

    Hi,
    For vendor, we store the invoice date of the vendor in the document date field and vendor generally specifies the payment term in their invoices based on their invoice date.
    So we generally use the decoument date (vendor invoice date) for payment term calculation.
    Whereas in case of customer, we issue the invoice and generally the invoice date is the posting date of our system, so we use the posting date for calculating the payment term. The customer have to pay according to out payment term to get the discounts etc.
    I hope it is clear.
    Regards,
    Gaurav

  • Inv_currency_code issue in projects customers and contacts form?

    Hi All,
    I am creating the projects using create project API (PA_PROJECT_PUB.CREATE_PROJECT) from 11i to R12.The data coming from 11i has the project currency code(INV_CURRENCY_CODE).I am passing this data to the API using record type (customer_tbl_type),but i cannot see the value in front end but the currency code is populating from the template instead of taking from the staging table.The base table is PA_PROJECT_CUSTOMERS and the field is INV_CURRENCY_CODE.
    Navigation : (Projects-->Customers and contacts->code-->).
    Eg:
    The staging table has the currency field as 'USD' .The project which is created taking the value as "CAD' which is defaulting from the template from which the project created,but in my scenario this field should take the value from the staging table,i am passing the value from the staging table but its defaulting the value from the template?
    Can anyone please let me know is there any setup issue or issue with the API or do i need to use update_Project api?
    Please let me know if you need any clear explanation?
    Thanks,

    Check if XLACORE.plx and XLATACCT.plx library files are present in the environment you are working on.
    Also check if the FND_INDICATOR_COLORS value is set to 'Y' , if not please do it.
    Thanks,
    Vijay.

  • Phase Locking the Up and Down Converter Modules

    I am interested in phase locking the 5660 and 5670 modules, but from what I understand...this might not exactly be possible.
    Using the 10MHz references...it seems that I can frequency lock the two together (i.e. - I can eliminate any phase error due to the two LO's drifting away from each other).  However...am I correct in assuming that there is no way to actually access the individual oscillators such that I can remove the phase difference between them?
    For example...if I want to measure the phase added by a DUT....I would have to measure the phase without the DUT...then meausre the phase with the DUT...then look at the relative difference in the two phase measurements (as calculated from the IQ samples).  However, if I were to repeat this measurement by first measuring the phase without the DUT....then turn the generator off...then back on again....then measure the phase with the DUT...I'd expect to get a different answer, since by turning the device on and off, I have no idea or control over the phase relationship between the two devices.
    Is this correct?
    Finally...does simply connecting say, the 10MHz Out of the upconverter, to the Freq Ref IN of the downconverter automatically frequency lock the two together...or do I have to go into LabView and programatically tell the things which reference to use?
    Thanks!
    Brandon

    Hi Brandon,
    You are correct in what you are saying. The PXI-5600 and PXI-5610 Down/Upconverters each have their own synthesizers internally generating the LO signals for the mixers inside, and these LO signals cannot be exported from the modules. For these modules to be phase locked, they would need to share the same LO signals.
    By sharing the 10 MHz reference you can achieve frequency lock where the phase difference between the two modules will stabilize, but the phase difference will not be zero - it will be some unpredictable phase offset which will not be increasing or decreasing (i.e. frequency lock). Whenever the 5600 or 5610 is retuned, the phase difference will also be different.
    With regards to the 10 MHz signal, both use the same component for the reference so it doesn't matter which module you lock to the other as they are equivalent in quality. You do need to make a call in software to lock the destination module to the source module. If you are driving the PXI backplane with the source module, you'll also have to make a SW call to do this. This is very easy though, just look for VIs called Configure Reference Clock or something similar.
    Regards,
    Andy Hinde
    National Instruments

  • Arranging the placement and order of photos for print or web

    This is something I was expecting with the first Lightroom and it still seems to be clunky in 2.3...
    Basically, there doesn't seem to be a way we can simply click and drag photos we want to be together and have them in orders of our choosing. The closest I've been able to find is when in picture package mode in the Print section. What is frustrating is that when I select most other templates, I can't just move the photos I want grouped together to where I'd like them to be. On the flip side, when in the picture package mode and I populate the frames by dragging photos to them, unlike contact sheet/grid mode, one can't move the photo around within that frame...
    My understanding of Lightroom was that it made it easy for photographers to deal with their photos. For me, I like to be able to just move and group fluidly for print and web to see how pictures complement and flow regardless of tag, filename, or random selected order.
    I can't imagine I'm the only one with this frustration, is there a remedy?

    Thanks for that everyone you were right! I was being super-DUper sMart and Brilliant there and had only been trying to re-arrange within the layout window of the Print and Web areas. I think I was just assuming I was having the same trouble from Lightroom 1 and just stopped trying since it seemed the files either never moved or didn't stick (can't remember now). In any case, Thank you!

  • Convert my dynamic Drawing (created in a Flash Dialog using AS 3) into the .DXF and .DWG form

    Hi ,
    I want to convert my dynamic Drawing (that I created in a Flash Dialog using AS 3) into the .DXF and .DWG format.Is there any way by which I can give the export functionality on the flash page so that the dynamic drawing that created in flash code will export into .DXF and .DWG format.
    Please Help
    Thanks,
    Simon

    There's no automatic way to convert to AutoCAD formats... you will need to write your own. You will need to figure out the formats of .dxf and .dwg and then probably use ByteArray to output. It will not be a trivial task.
    Hi,
    Can you please give me some example for this?
    I have used AlivePDF to convert my Diagram to PDF but it create a Raster image in PDF and all vector data is lost.
    I want to convert this PDF to .dxf and .dwg format using any tool. but not found any way around.
    Thanks!!

  • Help with the HOST and START, forms 6i

    Hi i like open to image with de Host and Start in Forms 6i.
    For example Host('start '||:path||'', NO_SCREEN ); -> is correct if the path is c:\ ... but if the path is more longer with space in white for example C:\Documents and settings ... i put the quotes "C:\Documents and settings ..." but Doesn't open the image, another window (MSDOS) open... :S

    Hello,
    Try this:
    Host('cmd /c START "" "' || :path || '" ');Francois

  • Business catalyst API integration for products, customers, and orders?

    can a BC site be used with a API program for feeding products, customers, blog posts, etc?
    Thanks,
    Michael

    BC has SOAP API for Products and the CRM, no API out yet fully for blogs.

  • I'm ready to push the button and order a 2011 imac 21.5.  I'm getting the bigger hard drive and processor but I'm not sure about the ram.  should I order it with 8 instead of 4?  This is my first mac so bear with me.

    I need advice on whether to go from 4 to 8 on the ram for the imac I'm about to order.  I'm getting the higher model of the 21.5.  2011 imac.

    OWC is another source for high-quality cost-effective RAM -
    http://eshop.macsales.com/shop/apple/memory/

  • Why can't I skip the billing and payment form when registering

    Thanks..

    If you don't want to give credit card details on your account then you need to follow the instructions on this page when creating an account : http://support.apple.com/kb/HT2534 - if you don't use those instructions then you will need to enter card details before the account can be used in the store.
    e.g. creating an account via a computer's iTunes : https://discussions.apple.com/message/24321860#24321860

Maybe you are looking for

  • More than one user in iTunes at a time?

    Can more than one person log into an itunes account on one macbook air?  we have a firm macbook and multiple users will be accessing it

  • How to compare date with char

    hi i am having date from and date to feilds in my overtime element.i want to do the validation on these dates the the dates do not overlap or duplicated.the input value date from and date to are stored in database as varchar2 in the format yyyy/mm/dd

  • Effort estimate (ABAP) during Unicode Conversion project

    Hi , I am working on a CU&UC (Combined Upgrade and Unicode Conversion) project from 46C to ECC6. We are having 8 different codepages (MDMP SYSTEM) and around 10000 custom objects. Does anyone have any experince in doing such kind of project ? I am lo

  • Still image size?

    Hello, Can someone please tell me the best file size and type of picture to use in a standard DV 4:3 project? Should I resize my pictures to 720x480 and if so what resolution, 72dpi or higher? Also when I capture in FCP it tells me that my audio capt

  • DEP (Date Execution Prevention) Closed iTunes due to security reason

    I just bought a new laptop (SONY SR) operated with Window Vista. My laptop never run iTunes since I installed it. I tried uninstall and reinstall again n again, but it just doesn't work. A screen appeared and say that iTunes stopped working, DEP (Dat