Developer Error: invalid  window block name passed to set_window_position

Hi
I had Registered a Form in Oracle apps
After that i'm trying to open the form,then this message will be displayed
Developer Error: invalid  window block name passed to set_window_position
in the PreForm Trigger I had written the code as apps.set_window_position('MY block name(MAIN_BLOCK)','MY window(MAIN_WINDOW)')
i had wriiten like that
but
After click on that Ok Button of the error message my form is Open
and My form is Also not having any Minimize,Maximize and Close Buttons
Please Tel me How should i resolve that Error and also how can i Get that buttons for the Form

I agree with Francios, you should ask your question in the General EBS Discussion forum.
in the PreForm Trigger I had written the code as apps.set_window_position('MY block name(MAIN_BLOCK)','MY window(MAIN_WINDOW)')You are using a Oracle E-Business Suite (EBS) framework procedure to set the window position, not the Forms standard Set_Window_Property built-in.
and My form is Also not having any Minimize,Maximize and Close ButtonsThese could be controlled by the APPS.Set_Window_Position procedure, but I'm not sure. It could simply be that you set (or neglected to set) the default properties of your Form's window the enable these buttons. More than likely, the APPS procedure is setting them. It's been too long since I worked with the EBS to say for certain. You really should ask your question in the General EBS Discussion forum.
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • Outgoing payment error: invalid payment to name

    Hello,
    We are trying to do a outgoing payment error. Everything seems to be allright (dates, amounts...), but when adding
    the payment the following error is appearing in red in the status bar:
    "Invalid payment to name"
    Do you know why?
    Version is 2007PL03
    Thank you in advance for your help.

    Hi
    Have you changed the BP data like BP name or address since the purchase document was generated?
    Try to edit that data in the original document (like Invoice) to seeif you can use the current address at the drop down box at the Logistcs tab.
    Paulo Calado
    SAP Business One Forums Team

  • CustomLoginModule always error "Invalid null input: name"

    Hi All,
    I'm trying to create a custom LoginModule. I've changed the autorization.xml, created a new login-stack and set the  LoginModuleClassLoaders property.
    But whatever I do I always get the message
    "Unknown message (ID = Invalid null input: name)" when trying to login using the login screen.
    Does anyone know this message and the solution?
    Regards,
    Jeschael

    Hi Jeschael,
    Did you get a solution for this? I'm also running into same problem.
    Please let me know.
    Regards,
    Manish

  • Developer Error

    hi
    think i have 2forms catalog & tasting
    I'm trying to call from one form to another form.
    I'm able to open catalog and try to call tasting by using button it is displaying the error like
    Developer Error : Invalid window catalog passed to set_window_position
    how i have to over come this problem.
    regards
    Siva

    This sounds like a custom application error from a custom procedure called SET_WINDOW_POSITION, it doesn't seem to be a forms generic error.
    You should refer to the application's help.
    Regards,
    Tony

  • OIM and MS Exchange - Invalid mail store name error

    hello,
    I'm trying to provision a user with a mailbox in Exchange. I have setup SSL between the AD/Exch box and OIM. After a manual provisioning is initiated through OIM, the "Create Mailbox" adapter status is shown as "Rejected".
    In the details, the Reason show is "Invalid mail store name passed". However, the mail store name used in the IT Resource Configuration is as per the connector documentation and as seen in the Exchange System Manager console i.e. "Mailbox Store (BASE)" where "BASE" is the name of the computer where AD/Exch is installed.
    Am I missing something? Is there a full DN of the mail store required? Is this something to do with the access permissions in AD or Exchange?
    Please advise. Thank you!

    Hi,
    I was able to resolve this by changing the value of "Server Name" value in the IT Resource. The issue is not with the Mail Store Name or "Store Name" rather it's with the "Server Name".
    The value of "Server Name" should be the host name without the domain name for example, BASE only instead of BASE.mydomain.com.
    The value of "Store Name" should be as shown in the Windows Exchange Admin Console. E.g. "Mailbox Store (BASE)".
    Also, ensure that the value "AD User" is added under the "Depends On" for the "Exchange" Resource Object.
    Once you provide the values as mentioned above, create a user in OIM and assign AD User and Exchange resources.
    The mailbox will not be created/shown in the Exchange Admin Console unless you access the Exchange URL and login with the target user's credentials.
    The Exchange URL can be accessed as "http://hostname or IP/exchange". Provide the user's username and password and the Outlook Web Access screen will be displayed.
    Now go to Exchange Admin System console and check the mail store if the maiilbox is created.
    Hope this helps. Thanks!!

  • "Invalid output file name" problem

    Hi
    I have installed FMLE in a Windows Vista Home Premium SP2 x64 machine. When I run the GUI version with any preset (using Medium bandwidth 300kbps VP6) and selecting "Save to file" "C:\temp\sample.flv" I get this error:
    Invalid output file name
    Filename cannot be invalid and absolute path of the file cannot exceed 255 characters.
    The folder C:\temp DOES exist. I am running from my administrator (only) account. FMLE works just fine in my Mac but for some reason I need to set up a Windows machine.
    What can be wrong?
    Thanks

    Both. I did the same thing I did in my Mac (in the Mac it works, in Windows it does not work):
    1) open the GUI
    2) set up the options I want (e.g. save to file X in folder Y)
    3) save options as an XML profile
    4) use the saved profile in the /p parameter of the command line
    That did not work. So I just went into the GUI and:
    1) set up the options I want (e.g. save to file X in folder Y)
    2) Click START
    That did not work either. I get the "invalid output file name" in both situations. And my file is name "sample.flv". I even tried without specifying a drive (e.g. "sample.flv" instead of "c:\folder\sample.flv"). The folder has no invalid characters and does exist.

  • JAAS authentication with WebLogic 6 - "Invalid Configuration Class Name"

    For starters, I took the sample file examples.security.jaas.SampleConfig, changed the name and
    package, compiled, and copied it to the right place in the classes directory of the webapp project.
    The class is specified as a parameter in startWebLogic.cmd:
    -Dweblogic.security.jaas.Configuration="com.ww.opd.auth.JAASConfiguration"
    When a servlet attempts to get LoginContext, I get this error:
    "Invalid Configuration Class Name: com.ww.opd.auth.JAASConfiguration"
    The class file is definitely in the right place. What's the deal?
    Thanks,
    Rob

    Seems to be a ClassLoader problem. The sample is a client app, so no problem. But if you create
    a Configuration class to run on the server (to set up a LoginModule for authenticating clients)...
    I think what's happening is that the System class loader, using the CLASSPATH in the environment
    of the WebLogic server when it starts, attempts to load the Configuration class and can't (because it
    is in the CLASSPATH of the web app, not of the System class loader). If you add the Configuration
    class to the CLASSPATH of the WebLogic server, then it gets loaded but the LoginModule can't be
    found. If you add the LoginModule to the WebLogic server CLASSPATH, then any classes that it calls
    must also be in the WebLogic server CLASSPATH.
    Could someone from BEA please comment: is that the intention, that any classes used for JAAS
    authentication be part of the server's CLASSPATH, not part of the web application?
    Thanks,
    Rob
    "Rob Weltman" <[email protected]> wrote:
    >
    For starters, I took the sample file examples.security.jaas.SampleConfig, changed the name and
    package, compiled, and copied it to the right place in the classes directory of the webapp project.
    The class is specified as a parameter in startWebLogic.cmd:
    -Dweblogic.security.jaas.Configuration="com.ww.opd.auth.JAASConfiguration"
    When a servlet attempts to get LoginContext, I get this error:
    "Invalid Configuration Class Name: com.ww.opd.auth.JAASConfiguration"
    The class file is definitely in the right place. What's the deal?
    Thanks,
    Rob

  • Invalid connection cache name error while invoking a bpel process

    while invoking a service via DB adapter ,it gives invalid connection cache name orabpel 00000 error. the JCA connection is set properly and its reffered via jndi name in code. i tested the connection in EM and its working fine.
    Few transactions have passed and thereafter i'm getting this error.
    is there any parameter that needs to be set. Someone can help here!!

    Have got the same problem. Scenario at my end is little different though.
    I am trying to invoke a BPEL process from an ESB Service.
    I am trying to look into it..
    However, would be grateful, if someone can give some insight into this since many are running into this issue without being able to fix.
    Ashish.

  • Error "Invalid Column Name tp_level" when open restored web app

    Hi,
    I have a web application in development environment and it works fine when I try to restore the web application to the staging or production environment it is restored successfully but when I open the web application I got an error "Invalid column name
    tp_level"
    I don't know why this issue occurred. Do anyone knows what is the reason and how to solve it.
    Thank you.
    Ehab

    tp_level is an internal column of a content database. Can you check permissions on a restored content database for an account used for web app pool running?
    If it will not help, I offer you to create web application in staging/production and then make a copy of a content database from development enviroment and attach it to a newly created web app.

  • Passing Block Name As Parameter

    Dear Friends
    I have procedure to search for specific data, and the results will be shows on different data blocks, based on the button called the procedure, i passed the block name as parameter to the procedure, but when i want to set the values of the items in the data block, i got error, i used the following code
    copy(name_in(items_rec),block1||'.item_name')
    each time i got the following error: ORA-01722.
    can you please help me in this problem
    and thanks in advance for all friends
    Mohammad

    Hi,
    Try
    copy(name_in(items_rec),name_in(block1||'.item_name'))I assume, block1 is the variable which you are passing as a parameter to the procedure.
    Regards,
    Arun

  • 'Error: Invalid Staging Area' while installing Developer Studio 10g

    Dear All,
    I am trying to install Oracle Developer Studio 10g on Windows 2000 SP4 machine having 512 MB RAM.
    All the installer requirements are met.
    After that Oracle Universal Installer displays the error:
    Invalid Staging Area. There are no top level components for Windows NT, Windows 2000 available for installation in this staging area.
    Please explain me this error. I am not getting any references about the same on Internet.
    Do i able to install Oracle Developer Suite on my machine?
    -Sameer

    "Invalid Staging Area. There are no top level components for Windows NT available for install from this staging area."
    This is Oracle's way of saying nothing on this CD can be installed on Windows NT (or Windows 2000)
    Also see
    http://www.orafaq.com/forum/?t=msg&th=46751/0/
    Google on "There are no top level components"

  • LV 6.1, 3D Surface Graph sometimes collapses (doesn't work stably); plus blocks use of remotely controlled panel by LV run-time engine (error #26:"window.cpp", line 11518

    1) "3D Surface Graph" does not work stably; sometimes it changes its properties (e.g. plot style) without me doing anything prior to that; a couple of times it lost a complete sense so that I had to delete the graph and install it again
    2) I tried to remotely run a VI which contains a 3D Surface Graph in it. It turns out, the use of the "3D Surface Graph" somehow blocks the remote control over the panel. As a result of that, I got the following error message: Error #26: "window.cpp", line 11518 (with LabVIEW version 6.1).
    3) Is it possible to plug into the 3D Surface Graph a few plots at
    the same time since there is a built-in control "plot number" (somehow by bundling them up or putting into an array - I tried both but didn't work) or it can be done merely by use of 'case' structure preceding the Graph, where case structure decides which plot to pass into the 3D graph?
    Attachments:
    3D_Graph_ver_1.bmp ‏214 KB

    Hello mjoler,
    Thank you for contacting National Instruments.
    The following example will show you how to plot multiple 3D plots on a single 3D graph. Modeling your VI after the example may also alleviate the instability that you have been experiencing.
    http://sine.ni.com/apps/we/niepd_web_display.display_epd4?p_guid=B123AE0CBA19111EE034080020E74861&p_node=DZ52038
    As far as the error you are receiving, it's difficult to say what could be causing this. ActiveX controls embedded on a front panel sometimes do not display on a remote client because they draw and operate almost completely independent of LabVIEW. If possible, try remotely controlling your VI with a client computer that has a complete installation of LabVIEW. The error could also be a bu
    g. Try downloading the evaluation version of LabVIEW 7.0 from http://www.ni.com/labview. By doing this, we can determine if it is a bug in the older version that has been fixed in the latest version.
    Let me know how this goes.
    Matthew C
    Applications Engineer
    National Instruments

  • Invalid Stored block length - Error Oracle 12c DB installation in OEL6

    Hi Guys,
    I got the below error message during the installation on Oracle 12c DB in OEL6.
    "Invalid Stored Block Length". And the installation got terminated.
    All the pre-req got passed and now i got sucked at this step.
    Can someone help me on this please.....
    Thanks,
    Sunil

    Here is the Error Log
    INFO: Extracting files to '/u01/app/oracle/product/12.1.0/db_1'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_dirs.lst'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_filemap.jar'.
    INFO: Performing fastcopy operations based on the information in the file 'racfiles.jar'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_exp_1.xml'.
    INFO: Performing fastcopy operations based on the information in the file 'oracle.server_EE_1.xml'.
    INFO: Performing fastcopy operations based on the information in the file 'setperms1.sh'.
    INFO: Number of threads for fast copy :1
    INFO: invalid stored block lengths
    SEVERE: oracle.sysman.oii.oiif.oiifb.OiifbEndIterateException: invalid stored block lengths
      at oracle.sysman.oii.oiic.OiicInstallAPISession.doOperation(OiicInstallAPISession.java:490)
      at oracle.sysman.oii.oiic.OiicAPIInstaller.doOperation(OiicAPIInstaller.java:1009)
      at oracle.sysman.oii.oiic.OiicAPIInstaller.doOperation(OiicAPIInstaller.java:970)
      at oracle.install.driver.oui.OUISetupDriver.setup(OUISetupDriver.java:358)
      at oracle.install.driver.oui.SetupJob.call(SetupJob.java:315)
      at oracle.install.driver.oui.SetupJob.call(SetupJob.java:49)
      at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:303)
      at java.util.concurrent.FutureTask.run(FutureTask.java:138)
      at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
      at java.lang.Thread.run(Thread.java:662)
    INFO: Update the state machine to STATE_READY
    INFO: isSuccessfullInstallation: false
    INFO: isSuccessfullRemoteInstallation: true
    INFO: Adding ExitStatus FAILURE to the exit status set
    INFO: Shutting down OUISetupDriver.JobExecutorThread
    SEVERE: [FATAL] invalid stored block lengths
       CAUSE: No additional information available.
       ACTION: Refer to the logs or contact Oracle Support Services
       SUMMARY:
           - invalid stored block lengths.
    Refer associated stacktrace #oracle.install.commons.util.exception.DefaultErrorAdvisor:7314
    INFO: Advice is ABORT
    SEVERE: Unconditional Exit
    INFO: Adding ExitStatus FAILURE to the exit status set
    INFO: Dispose the current Session instance
    INFO: Dispose the install area control object
    INFO: Update the state machine to STATE_CLEAN
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is -1
    INFO: Shutdown Oracle Database 12c Release 1 Installer

  • TMG Error Code 502 Proxy Error. The directory name is invalid. (267)

    Hi,
    I am having problem with a website in specific.
    Is showing the following error message.
    Error Code: 502 Proxy Error. The Directory name is invalid. (267)
    Server: TMG.personaldomain.local
    Source: web filter
    I have found no information in the logs to help identify the problem.
    I suspect that may be temporarily unavailable from the website. I enter the site without using the TMG and the same is responding.
    The problem is solved when I restart the service "Microsoft Forefront TMG Firewall"
    I suspect that may be cached in TMG that the site remains unavailable.
    Any idea?
    Tks.
    MCITP|Enterprise Administrator

    Hi,
    Thank you for the post.
    I did some research and found 267 error code may occur where the TMG tracing showed an issue accessing the Malware Temporary Storage directory which was resolved by changing the direction from C:\windows\temp directory
    to a custom directory. You could make this change as a pro-active step. Meanwhile, if you are running AV software on the TMG server, please also ensure you have reviewed the following article:
    http://technet.microsoft.com/library/cc707727.aspx
    Regards,
    Nick Gu - MSFT

  • X79A-GD65 (8D) MSIHQ error 654 Specified path name or file name is invalid.

    Hello,
    First, excuse my poor english...
    I would like to flash the 7760 v1.8 bios of my motherboard to install windows 8.1 on a crucial M500 480Go (yet, installing W8.1 after connect M500 on SATA1 6Go next to my M4 SSD with W7, causes errors during installation and I guess it is because i think the SSD is not correctly recognized by the bios and Windows 8.1 requires bios and ME updates.)
    I download the last bios on MSI site (http://us.msi.com/product/mb/X79AGD65_8D.html#/?div=BIOS) and install MSIHQ Tool 1.25g software to make an USB stick for flashing as describe here : https://forum-en.msi.com/index.php?topic=116721.0
    But when i point on the archive (3.1. Method 1: Processing a BIOS Archive Directly (ZIP/RAR)), MSIHQ can not open the archive and tell me: ERROR 654 Specified path name or file name is invalid.
    Yet when I use the same method to flash my bios from 1.6 to 1.8, it had gone well ... What to do?  Should I use the method described on the download page: http://fr.msi.com/files/pdf/Bios_update_SOPAll.pdf ?
    Thank you and good day.

    No, no...  I know what a dual boot if it is what you say, I did it for years. I also made two differents drives with two separate systems boot : a Hdd with xp and boot.ini , and another with windows 7 and mbr. After installing the first OS first on a disc, you disconnect this HDD and connecting the second to receive the second OS. There is no dual boot because I did not boot on the same partition then let me choose between 2 OS placed on two differents drives or two partitions, but I boot well on two differents disks , each with their own boot files this just saves me the dual boot which I find too heavy. On a Gigabyte X48T -DQ6 with the F12 key , you choose what HDD boot . Same I think with the F11 key X79A - gd65 : "Press DEL key to enter Setup Menu , F11 to enter Boot Menu" and then you choose between booting on either disc. In the case cited above , it is then that we arrive on the mbr of windows 7 on a disc or boot.ini windows xp on the other. So you do not answer my question, it seems to me :-) I wonder if I'm clear, there ...;-)
    thanks very much...

Maybe you are looking for

  • Gamers club unlocked welcome coupon

    Dear BestBuy customer service, I got my gamers club unlocked membership on late May 2014 and haven't received welcome coupon yet. Can you help me to deal with this problem? Thank you, Besar

  • DevNet Studio 8 Not Allowed for CS3 Upgrade

    I wanted to give a heads-up to all those that paid for Macromedia Studio 8 through their DevNet subscription. Adobe is not accommodating these paying customers in any upgrade path to CS3 Web or Web Premium. I just spent 47 minutes on the phone with c

  • Text delimiter problem

    I am creating a .csv file from the following data: <Record>     <field1>Bearing</field1>     <field2>3.2" height, 2.1" weight</field2> </Record> Instead of two columns, this creates 3 columns due to the comma in the text of field2. If I include a map

  • Delivery to Vendor / Goods Receipt from Customer

    Hi all, Our company receives samples from customers and delivers samples to vendors. However, SAP does not seem to allow deliveries to vendors nor goods receipts from customers. Can anyone advise on how to handle this situation? Thanks, Jane

  • Can I install Windows 7 in 13-inch MacBook Pro (2.7 ghz Dual Core i-7) without problem

    Can I install Windows 7 without any trouble in Macbook Pro (2.7 Ghz Dual Core I-7) ?