Problem to open form for tab

Hi,
i am using tab in form.
when i open the form no fields are showing which are under tab.
but if i open that form through screen painter -> preview  -> close screen painter.
thereafter its working fine.
what is the problems ????
i am using 2005 version.
regards,
Avijit

Hi,
Thanks for your reply
  If pVal.FormUID = "PR_empsal" And pVal.EventType = SAPbouiCOM.BoEventTypes.et_ITEM_PRESSED And pVal.BeforeAction = False Then
            Try
                Select Case pVal.ItemUID
                    Case "7"
                        oForm.PaneLevel = "1"
                        oForm.Settings.MatrixUID = "8"
                    Case "1000001"
                        oForm.PaneLevel = "2"
                        oForm.Settings.MatrixUID = "9"
                    Case "15"
                        oForm.PaneLevel = "3"
                        oForm.Settings.MatrixUID = "16"
                    Case "21"
                        oForm.PaneLevel = "4"
                    Case "36"
                        oForm.PaneLevel = "5"
                        oForm.Settings.MatrixUID = "99"
                End Select
            Catch ex As Exception
                SBO_Application.MessageBox(ex.Message)
            End Try
        End If
I am using above code.
But i got error-
Form- operation is not supported on system form (60000-30)
Pls want suggestion on this error ....
Thanks in advance ...
Regards,
Avijit

Similar Messages

  • Problem with OPEN My_Cursor FOR SELECT ...

    Please, I need some help here. I'm developing an ASP NET application with Crystal Reports and Oracle 9i as DB.
    I'm desining a report. I use a Stored Procedure (in a package). I know that in order to CR be able to read the stored procedure, I have to use Cursor in this way: OPEN My_Cursor FOR SELECT * FROM My_Table;
    The problem is that I need to do other sub-queries to get the names of 3 people (from TBL_TWO) and show them in my Cursor (from TBL_ONE). How can I do it? I tried as my example, but I get error when try to connect from ASP NET: "ORA-24338 statement handle not executed"
    Apparantly, CR needs to read just only OPEN My_Cursor FOR ... Is there any way to resolve this problem?
    PROCEDURE SP_REP_OP_03 (My_CURSOR OUT MY_REF_CURSOR,
    i_Cod_OP IN INTEGER)
    IS
    v_id_1 char(8);
    v_Names_1 varchar(25);
    v_id_2 char(8);
    v_Names_2 varchar(25);
    v_id_3 char(8);
    v_Names_3 varchar(25);
    BEGIN
    SELECT TWO.Id, PER1.Names -- may or may not exist
    INTO v_id_1, v_Names_1
    FROM TBL_TWO TWO, PADRON.PADRON PER1
    WHERE TWO.Cod_OP = i_cod_op AND
    TWO.Cod_Rep = '01' AND
    TWO.Id = PER1.Id;
    IF v_id_1 IS NULL THEN
    v_id_1:= '';
    v_Names_1:= '';
    END IF;
    SELECT TWO.Id, PER1.Names -- may or may not exist
    INTO v_id_2, v_Names_2
    FROM TBL_TWO TWO, PADRON.PADRON PER1
    WHERE TWO.Cod_OP = i_cod_op AND
    TWO.Cod_Rep = '02' AND
    TWO.Id = PER1.Id;
    IF v_id_2 IS NULL THEN
    v_id_2:= '';
    v_Names_2:= '';
    END IF;
    SELECT TWO.Id, PER1.Names -- may or may not exist
    INTO v_id_3, v_Names_3
    FROM TBL_TWO TWO, PADRON.PADRON PER1
    WHERE TWO.Cod_OP = i_cod_op AND
    TWO.Cod_Rep = '03' AND
    TWO.Id = PER1.Id;
    IF v_id_3 IS NULL THEN
    v_id_3:= '';
    v_Names_3:= '';
    END IF;
    -- I tried to "attach" v_id and v_Names to My_Cursor, but CR can't get it
    OPEN My_CURSOR FOR
    SELECT ONE.Cod_Exp AS Cod_Exp,
    ONE.Cod_Exp_OP AS Cod_Exp_OP,
    ONE.Cod_OP AS Cod_OP,
    ONE.cod_ficha AS cod_ficha,
    v_id_1 As id_1 ,
    v_Names_1 As Names_1,
    v_id_2 As id_2 ,
    v_Names_2 As Names_2,
    v_id_3 As id_3 ,
    v_Names_3 As Names_3,
    FROM TBL_ONE ONE
    WHERE OP.Cod_op = i_Cod_op;
    END SP_REP_OP_03;

    Why can't you just have a single SQL query that outer-joins the tables and returns the values you need? It looks like it should start in TBL_ONE and outer-join three times to TBL_TWO and PADRON, perhaps something like:
    SELECT one.cod_exp
         , one.cod_exp_op
         , one.cod_op
         , one.cod_ficha
         , id1.id AS id_1
         , per1.names AS names_1
         , id2.id AS id_2
         , per2.names AS names_2
         , id3.id AS id_3
         , per3.names AS names_3
    FROM   tbl_one one
         , tbl_two id1
         , padron.padron per1
         , tbl_two id2
         , padron.padron per2
         , tbl_two id3
         , padron.padron per3
    WHERE  one.cod_op = i_cod_op
    AND    id1.cod_op (+)= one.cod_op
    AND    id1.cod_rep (+)= '01'
    AND    per1.id (+)= id1.id
    AND    id2.cod_op (+)= one.cod_op
    AND    id2.cod_rep (+)= '02'
    AND    per2.id (+)= id2.id
    AND    id3.cod_op (+)= one.cod_op
    AND    id3.cod_rep (+)= '03'
    AND    per3.id (+)= id3.id;

  • Problems understanding open text for access, please help

    Hi all,
    I'm experiencing some problems with this script, and I think knowing what the error is will help me a lot to understand better how applescript handles access to files.
    When i launch this script it tells me somethihng like "document some object has not been opened" (could be slightly different in english).
    So, i guess is a problem with openening and closing, but as you can see i open and close the doc, so I shouldn't encounter this problem. Do I?
    Thanks for any tip!
    set Report to "myfile.txt"
    -- in case previously not closed I'll close again
    try
      close access Report
    end try
    set the_file to (open for access Report with write permission)
    write return to the_file starting at eof
    write "test" to the_file
    write return to the_file
    write return to the_file
    close access the_file
    repeat with numero from 1 to 3
      write numero to the_file starting at eof
      write return to the_file
      write return to the_file
      close access the_file
    end repeat

    Each time your application is run the files associated with it will also be released, so all you need to do is make sure that each open is balanced with a close.  This can be done easiest by using a handler that has been tested, so you don't have to worry about leaving something out elsewhere in your script.  For example:
    on run -- example
              set report to ((path to desktop) as text) & "myFile.txt"
      write_toFile_("testing one" & return, report)
      write_toFile_("testing two, three" & return, report)
      write_toFile_("testing again" & return, report)
    end run
    on write_toFile_(someThing, someFile)
      try
        set theOpenFile to (open for access someFile with write permission)
        write someThing to theOpenFile starting at eof
        close access theOpenFile
      on error -- make sure file is closed on any error
        try
          close access theOpenFile
        end try
      end try
    end write_toFile_

  • Problem with open forms.... urgent

    guys,
    i am trying to open a form using the open_form with a new
    session and activate mode......one more thing i am trying to
    deploy these forms on the web.
    when try to open the form, the cursor keeps switching
    between the to forms..........i need press the left mouse button
    on the form......so that the cursor is stable.....
    guys any suggesion on how to use the open_form
    command.....for web deployment......
    i am using forms 4.5
    your help is appreciated...
    Steve
    null

    Hi steve,
    for the web deployment use RUN_PRODUCT instead of OPEN_FORM.
    good luck
    null

  • Problems with registration form for Make It Video webinars

    I want to register for your Make It Video webinars. But I can't, since 'State/Province' is a required field in the registration form - but there are no Danish options available.

    You may refer to this:
    Welcome to Adobe Forum,
    Creative cloud do not need a serial number. it will be using your Adobe ID on which you have purchased the creative cloud membership.
    So you need to login with your Adobe ID and password to activate the cloud membership.
    Log out & log back in of the CC Desktop App.
    In case it is not signing in successfully please try the following:
    I don't know which operating system you are working on so i am giving you some steps windows and MAC OS:
       Windows:
       In windows 7 navigate to following location:
         /windows/system32/drivers/etc
       1. look out for "Hosts" file
       2. Open it with notepad
       3. Check if you have any entry for Adobe
       4. Remove the entries and try again launching any product from CC
       On Windows XP navigate to following location:
       \windows\system32\drivers\etc
       1. look out for "Hosts" file
       2. Open it with notepad
       3. Check if you have any entry for Adobe
       4. Remove the entries and try again launching any product from CC
       Mac:
       1. Please click on "Go" and navigate to /private/etc
       2. Open "hosts" file and check out for any entries for Adobe.com
       3. Remove the entries and save the file
       4.  try again launching any product from CC
    You can refer :
    http://helpx.adobe.com/creative-cloud/kb/ccm-prompt-serial-number.html
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-i ssues.html.
    Please let us know if it worked.
    Regards,
    Rajshree

  • Problem in opening line for recording

    dear
    we are facing problem in recoder line openning line .
    here we are getting the bellow exception
    java.security.AccessControlException: access denied (javax.sound.sampled.AudioPermission record)
    please give me the reason and solution to this

    I�ve read your question and i wander if you have solved the problem and how you made it. Please tell me how if it is right.
    Manuel

  • PJC tab-key navigation problem within bean  (FORMS intercepting tab key??)

    Using Forms 10.1.2.3, IE7, JRE 1.6
    When attempting to navigate within the bean area, it appears as if FORMS is suppressing the keyEvent when the tab key is pressed. This means that I cannot use tab or shift-tab to navigate within the PJC's editable fields/buttons. I can click on them, enter data within them, but tab is somehow intercepted. When I place my PJC within a normal (non-forms) Java window, everything works fine.
    Documentation that I've read seems to indicate that tab should navigate perfectly fine within the bean area.
    Any ideas?

    Hi,
    This is how I did it. Sorry about the formatting, it was OK when I pasted the code fragment in.
    My class contains this in the variable definitions.
    private AWTEventListener keyListener = new DoKey ();
    private class DoKey implements AWTEventListener {
    public void eventDispatched (AWTEvent e) {
    //System.err.println("eventDispatched " + e.toString());
    //System.err.println("eventDispatched source " + e.getSource().toString());
    if ((e instanceof KeyEvent) && (e.getSource() instanceof Component)) {
    * The event was a key pressed event and it was sourced from a Component.
    KeyEvent evt = (KeyEvent) e;
    if (evt.getID() == evt.KEY_PRESSED) {
    if (evt.getKeyCode() == evt.VK_TAB) {
    if (evt.isShiftDown()) {
    ((Component)e.getSource()).transferFocusBackward();
    else {
    ((Component)e.getSource()).transferFocus();
    The listener is enabled when on initialisation
    Toolkit.getDefaultToolkit().addAWTEventListener (keyListener, AWTEvent.KEY_EVENT_MASK);
    Regards, Tony C

  • Problem in opening new tab

    Problem in opening Mozila firefox tab. when we open mozila firefox blank page open and when we open next tab, the new tab open with "search.babylon.com/?affID=112060&tt=321… i have tried lot to stop this automatically open search of babylon but not done. and the same problem occurs in IE 8 also but there is option in internet option tab when a new tab is open, open a blank tab. this ie8 problem solved, so please suggest what to do, thanks in advance waiting for your reply

    hello namihir, you can either install the [https://addons.mozilla.org/firefox/addon/searchreset/ search reset] addon which will fix this or you can manually change the new tab page by entering '''about:config''' into the firefox location bar (confirm the info message in case it shows up), searching for the preference named '''browser.newtab.url''' and right-clicking & resetting it to its default value ('''about:newtab''').

  • I am not able to open a new tab manually. I tried clicking on the new tab button and going to File and clicking on New Tab. This has been the case since 8 PM on 2/10/2011.

    I have been using Mozilla for about 4 years and never had any problems in opening a new tab manually. But since yesterday, I am not able to do so. I even uninstalled Firefox and then re installed it. No change.

    Thanks, I uninstalled the Ask toolbar and now 'new tab' works

  • Open field for customer line item

    Hi Guru
      I have some problem about open field for customer line item  post with posting key 09 and special GL , I open field at posting key 09 but the field still hidden  . How I can open field for used . Thank you

    Dear,
    Use transaction FBL5N and select Special G/L Transactions only and execute.....here bring posting key and filter the posting with 09.
    REgards,
    Chintan Joshi

  • Occasionally when filling in forms in Safari 5.1.2 certain keys on the keyboard don"t work.  When I use the coma it opens up another tab.

    Occasionally when filling in forms in Safari 5.1.2 certain keys on the keyboard don"t work.  When I use the coma it opens up another tab. I've used other browsers to fill in the forms and they work fine so my keyboard is OK.

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It won’t solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of this exercise is to determine whether the problem is localized to your user account, or is system-wide. Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select “Help” from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box.
    While logged in as Guest, you won’t have access to any of your personal files or settings. Any application you run will behave as if you were running it for the first time. Don’t be alarmed by this; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    As Guest, launch the application(s) and test. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.

  • When I click on the + sign, I do not get another tab even though an additional tab WILL open if, for example, I click on a link in an e-mail or on a site.

    Before the latest upgrade, I could open a new tab by clicking on the + to the right of any open tabs. No more. Nothing happens. If I click on a link in an e-mail or on a website, however, a new tab will open. For example, if I get an e-mail from Facebook that says someone has posted and I click the link, I will get a new tab opened and Facebook will be there. Then I have both tabs open and can navigate on either with no problem. If I then click on the + sign, nothing at all happens. I am perfectly able to open Safari with Firefox running, and I can get multiple tabs going there with no effect on Firefox. That is, I can go back and forth.
    I am grateful for any help! Thank you.

    Extensions
    Produtools Manuals 2.1 Community Toolbar 3.21.0.1 ({b2bf7b3f-bf0b-4c48-aec6-f92c51be63e1})
    Open the Add-ons Manager by
    Pressing the '''Alt''' or '''F10''' key to bring up the tool bar.
    Followed by; '''Tools > Add-ons.'''
    Hot key; '''<Control> ''(Mac: <Command>)'' <Shift> A)'''
    On the left side of the page, select Extensions.

  • Can't access to several sites because when I click a link, or I insert login and password and clickto enter, it just open a new tab, either blank or the same as the previous. i.e., can't save my changes on FB, can't look for a location on googlemaps, etc.

    I changed in about:config "network.protocol-handler.expose-all" setting it to "false" to allow me to use Sopcast player (which I added on "network.protocol-handler.app.sop"). But after that, every time I have to, i.e., look for a location on Googlemaps, when I entered it it just open a new tab with the same page I was in; every time I click on a link it doesn't redirect me, it open a new page; I can't save changes on Facebook because when I click on "save changes" it just open another FB home page in a new tab; same problem with opening my bank account, etc. Even here, I could not get in when I tried to login. Now I put back "true" on "network.protocol-handler.expose-all", but, of course, Sopcast doesn't work anymore. What can I do? I'm using Firefox 6.0.2 on Ubuntu 11.04. The Trubleshooting informations I attached here are those that gave me the problem, before I made the aforementioned changing going back to "true". Thank you

    I think I may have found the problem. It's embarrassing to find it minutes after posting the message yet I tried to solve it off and on for three days! My brother who is a 20 year Mac user has been trying to help me too. I guess it's true what they say... sometimes it's better to be lucky than good. LOL
    I turned off the parental controls. What I don't understand is that the no website restrictions box was checked. To me this means I should be able to go to any site I wanted. Can anyone explain why I couldn't got to a HTTPS page on a parental controlled account even though there were no restrictions placed on it?
    It's late and I need sleep. I'll leave this open for now until I have more time to test it.

  • How do I disable the "New Tab opened" button that appears for 3secs when I open a new tab?

    Dear Helpful Open Source people.
    I would like to disable the "New Tab opened" that appears for 3secs when I open a new tab?
    I usually open tabs from a search engine's results page expecting the links to be of varying quality. This means that it is efficient to open several links from that page and review and close them sequentially later. A reality of the output of search engines is that your 1st link is sedom the one you want.
    This button clutters an already small phone screen. I've hardly the space to click outside it and move on often clicking it by accident. Waiting prevents me scrolling to click the next link for 3 seconds or worse when I scroll prematurely I accidentally click it and jump to that Tab prematurely. I don't need to be told what I just did. I know... There is a perfectly functional tabs button in Firefox Android that let's me jump to my new tab in less than second with 2 presses when I wish to do so.
    I appreciate that it's "only" 3 seconds and a 1st world problem, but browsers and OS designers aspire to fast customisable function. Maybe there's a way to get rid of this button?
    The button is shown in section 3 of "Open a Link in a New Tab" in this article https://support.mozilla.org/en-US/kb/using-tabs-firefox-android
    PS. Mozilla - great work with the Sync function keep developing!!

    For some reason, Android calls that little notification bar a "toast" so that's the new tab toast. It was added in Firefox 12.
    I can't see any preference to suppress it, so I think that would require filing a new bug (request for enhancement). If you feel strongly, I think you are the best person to file it.
    * https://bugzilla.mozilla.org/
    * https://developer.mozilla.org/docs/Mozilla/QA/Bug_writing_guidelines (might not be very applicable to feature requests...)

  • How can I get the Index tabs to show for each page that is open in the window like on the older versions. I close a window and it says I have tabs open but the tabs are not visible. How do I set it like the older versions? This was easy to manage

    The index tabs were on some kind of toolbar just below the bookmark toolbar and you could see what was open in multiple tabs. I'm not referring to rolling over the Firefox icon for the Windows 7 thing, that's a pain. These index tabs were in plain sight. No matter what I try in Firefox 8, they won't appear.

    the tabs were move to above the navigation bar, where the menu bar was. They hardly look like tabs there, but you may have turned off the tabs bars. View (Alt>V) > Toolbars > Tabs Bar
    I think the solutions would really prefer though would be
    You can make '''Firefox 8.0''' look like Firefox 3.6.*, see numbered '''items 1-10''' in the following topic [http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface Fix Firefox 4.0 toolbar user interface, problems (Make Firefox 4.0 thru 8.0, look like 3.6)]. ''Whether or not you make changes, you should be aware of what has changed and what you have to do to use changed or missing features.''
    * http://dmcritchie.mvps.org/firefox/firefox-problems.htm#fx4interface
    <p>There is a lot more beyond those first 10 steps listed, if you want to make Firefox more functional.</p>
    <p><small>Please mark "Solved" one answer that will best help others with a similar problem -- hope this was it.</small></p>

Maybe you are looking for

  • Macbook Pro freezes when I connect to my TV using mini display to VGA

    Everytime I connect my MBP (2012) to my TV it freezes after a few seconds. I have used this set up for a good few months with no problems but it's just happened all of a sudden. Restarting in any order with TV on and off has not fixed the problem. Al

  • My sounds have quit on my apps

    my sound on my apps have stopped working. its not on mute

  • Duplicate In Set Up Tables

    Hi Experts, While filling set up tables for application 11 using transaction OLI7BW We are filling set up tables manually. Based on Sales Document Numbers  supplied. But Unfortunately we have done the filling of setup table for a some of the  Sales D

  • My messages broken in Mountain Lion, how to reinstall ?

    My messages broken in Mountain Lion, how to reinstall ? i browsed have MessageBeta.. cannot install in ML.. how i can reinstall ? Please help me.. thx

  • Not sharing!

    Despite having all the necessary iCloud sliders things turned to ON on by iPad I cannot get changes to a spreadsheet that I update on my iMac to show on my iPad.  I save the spreadsheet on my Mac to iCloud Drive but for some reason it doesn't show on