Link button not working in matrix

Hai To All,
          I created one form with only one matrix. On that i have 5 columns. In first column i have linkbutton link to user defined screen. What its not working.
My code is here
If pVal.ItemUID = "matrix" And pVal.ColUID = "Docno" Then
                        Dim oMatrix As SAPbouiCOM.Matrix
                        Dim doc As String
                        oMatrix = Frm.Items.Item(pVal.ItemUID).Specific
                        doc = Trim(oMatrix.Columns.Item("Docno").Cells.Item(pVal.Row).Specific.Value)
                        Dim oForm As SAPbouiCOM.Form
                        Dim blnBool As Boolean = False
                        For frm As Integer = 0 To app.Forms.Count - 1
                            Try
                                If app.Forms.Item(frm).UniqueID = "PI" Then
                                    oForm = app.Forms.Item("PI")
                                    oForm.Close()
                                    Exit For
                                End If
                            Catch ex As Exception
                                app.StatusBar.SetText(ex.Message)
                            End Try
                        Next
                        If blnBool = False Then
                            app.ActivateMenuItem("PI")
                            oForm = app.Forms.Item("PI")
                            oForm.Select()
                            oForm.Freeze(True)
                            oForm.Mode = SAPbouiCOM.BoFormMode.fm_FIND_MODE
                            oForm.Items.Item("txt_ino").Specific.Value = Trim(doc)
                            oForm.Items.Item("1").Click()
                            oForm.Freeze(False)
                        End If
                    End If
Regards,
Anitha

Petr,
     Actually this form is same as we discuss sterday that is the form should open automatically without any click. Now my problem is while form opening iam loading some data using query this also working fine. Here iam using linkbutton in matrix. If i click link button i want to open other form which is also created by me. My code is rite but y i dont knw the link button is not working.
here is the code written in itemevent
Case SAPbouiCOM.BoEventTypes.et_MATRIX_LINK_PRESSED And pVal.BeforeAction = False
                    If pVal.ItemUID = "matrix" And pVal.ColUID = "Docno" Then
                        Dim oMatrix As SAPbouiCOM.Matrix
                        Dim doc As String
                        oMatrix = Frm.Items.Item(pVal.ItemUID).Specific
                        doc = Trim(oMatrix.Columns.Item("Docno").Cells.Item(pVal.Row).Specific.Value)
                        Dim oForm As SAPbouiCOM.Form
                        Dim blnBool As Boolean = False
                        For frm As Integer = 0 To app.Forms.Count - 1
                            Try
                                If app.Forms.Item(frm).UniqueID = "PI" Then
                                    oForm = app.Forms.Item("PI")
                                    oForm.Close()
                                    Exit For
                                End If
                            Catch ex As Exception
                                app.StatusBar.SetText(ex.Message)
                            End Try
                        Next
                        If blnBool = False Then
                            app.ActivateMenuItem("PI")
                            oForm = app.Forms.Item("PI")
                            oForm.Select()
                            oForm.Freeze(True)
                            oForm.Mode = SAPbouiCOM.BoFormMode.fm_FIND_MODE
                            oForm.Items.Item("txt_ino").Specific.Value = Trim(doc)
                            oForm.Items.Item("1").Click()
                            oForm.Freeze(False)
                        End If
                    End If
Regards,
Anitha

Similar Messages

  • Email link button not working

    Neither email image nor email link are working.

    Make sure that you have set a default e-mail program (application)
    *https://support.mozilla.org/kb/Changing+the+e-mail+program+used+by+Firefox

  • Email button or menu Email Link does not work. Firefox 29.0 on Linux Mint 13

    Neither the Email Link menu option under File nor the Email Button installed from the customise menu option when placed on the tool bar work.
    Thunderbird 24.5.0 is the email client both installed on Linux Mint 13 with latest updates.
    Nothing happens at all when on a web page and the email link is clicked or the envelope icon is clicked.
    Help appreciated.
    Regards
    Cavemann

    Hello
    The Preferred applications menu list showed Thunderbird as the email program but it did not link the email button to firefox.
    I had to eventually go to the Firefox preferences and in Applications, Thunderbird was not listed. So I selected Other and browsed to the filesystem / Usr/Bin and selected the Thunderbird icon which then put Thunderbird in the Firefox Applications options for email.
    The email link / button then worked.
    Now I have to sort out the link for emailing photos from Picasa as this does not work either
    Thanks for help
    Cavemann

  • A/R Invoice linked object not working all the time

    I have a LinkedButton that is set to SAPbouiCOM.BoLinkedObject.lf_Invoice. When the selected A/R Invoice has a Document Type of Service the link works. When the selected A/R Invoice has a Document Type of Items the link does not work and I get the following error:
    "No matching records found 'A/R Invoice' (ODBC -2028)"
    I there another property that I should be setting? I could not find anything.

    Hi,
    I've added a code sample that works fine for me.
    add this code to a simple vb project with the correct references....
    1. Enter a number of the Invoice you want
    2. click on the second EditText to set the linkedButton
    3. click the LinkedButton
    <i>Public WithEvents m_App    As SAPbouiCOM.Application
    Private Sub Class_Initialize()
    Dim oForm As SAPbouiCOM.Form
    Dim oDBDS As SAPbouiCOM.DBDataSource
    Dim oItem As SAPbouiCOM.Item
    Dim oLB As SAPbouiCOM.LinkedButton
    Dim oST As SAPbouiCOM.StaticText
    Dim oET As SAPbouiCOM.EditText
        Set m_App = getCurrentApplication()
       ' m_App.MessageBox "You have COM UI connection"
        'form
        Set oForm = m_App.Forms.Add("UUID")
        oForm.Height = 150
        oForm.Width = 400
        oForm.Top = 100
        oForm.Left = 400
        Set oDBDS = oForm.DataSources.DBDataSources.Add("OINV")
        'Edittext
        Set oItem = oForm.Items.Add("EditT", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 50
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        'static
        Set oItem = oForm.Items.Add("StaticT", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 50
        oItem.Height = 15
        oItem.LinkTo = "EditT"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Code"
        Set oItem = oForm.Items.Add("EditT2", it_EDIT)
        oItem.Left = 200
        oItem.Width = 40
        oItem.Top = 80
        oItem.Height = 15
        Set oET = oItem.Specific
        Call oET.DataBind.SetBound(True, "OINV", "DocNum")
        Set oItem = oForm.Items.Add("StaticT2", it_STATIC)
        oItem.Left = 50
        oItem.Width = 100
        oItem.Top = 80
        oItem.Height = 15
        oItem.LinkTo = "EditT2"
        Set oST = oItem.Specific
        oST.Caption = "Business Partner Decs"
        'linked button
        Set oItem = oForm.Items.Add("Linked", it_LINKED_BUTTON)
        oItem.Left = 180
        oItem.Top = 50
        oItem.LinkTo = "EditT"
        Set oLB = oItem.Specific
        oLB.LinkedObject = lf_Invoice
        oForm.Visible = True
    End Sub</i>
    Regards,
    Yaniv G.
    SDK Consultant,
    SAP Manage Israel.

  • After updating to V 15.0 I have the issue that suddenly many but not all of the functions do not work anymore. Menues and download links do not work.

    I have updated my firefox to version 15.0. After this I have the effect that at some unspecified time during use many of the functions stop working. Menu's do not open, download links do not work anymore and so on. Opening new tab's or windows still works. Links on pages partly work partly not. Copy and paste does not work anymore on webpages. It takes ending the firefox process and restarting to correct the issue until it happens again. I have those effects on totally different webpages. At this time it happens every time after I start Firefox but not right away. Firefox first works for some time and then it suddenly doesn't anymore without me having done anything special

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Raido buttons not working in fox

    Radio buttons not working in firefox. This is the link. http://www.richardarobinson.com/newSite/html/getaquote.html
    Can someone show me or tell me what i can do.
    Thanks

    A couple minor errors.  First, you have the ID "radio" used twice on your second group of radio buttons.  IDs can never be used more than once on a page.  Adding a number at the end can solve this.
    Also, you are using XHTML so your <input> tags should end with "/>" instead of ">". 

  • Scrollable frames. Buttons not working.

    Hello.
    I have a problem with buttons in the scrollable frames.
    I have a slideshow with a thumb's. Each thumb consist of MSO (non active icon and active icon) and clear frame - button to that MSO and to slide foto. The thumb's grouped and placed into the frame with horizontal scroll overlay effect.
    That frame placed into another frame-pull out tab, which have vertical scroll effect. And when I pressed the button, slide fotos changes correctly, but button MSO not working.
    See files from dropbox --  https://www.dropbox.com/sh/rsbf1jto3a39jug/IVcQxaYJOW
    Sorry for my english. I need help very much.
    Thanks.

    Hi,
    I understand that I can use two 'states'  of the buttons. And I tried it. But. Buttons renditions are raster images. And on the retina display we had bad quality. My target was to create vector buttons. With good quality on both displays.
    Any suggestions?
    04.10.2013, в 12:03, Christophe_Quinzoni <[email protected]> написал(а):
    Re: Scrollable frames. Buttons not working.
    created by Christophe_Quinzoni in Digital Publishing Suite - View the full discussion
    Hi (again),
    It seems that you built your stuff in a very complicated way.
    First, try to make simple!
    You mixed MSO and buttons functions. Useless and unfonctional.
    Yous should use only button panel, with two different 'states' ('Normal' and 'Clic').
    See below (no MSO function used at all for the button):
    http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468602/445-605/Button_ 1.jpg http://forums.adobe.com/servlet/JiveServlet/downloadImage/2-5735625-468603/448-605/Button_ 2.jpg
    Use the layer panel to easily select the objects you want to modify.
    Please find your file here: https://dl.dropboxusercontent.com/u/46115208/slideshowButton.indd
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5735625#5735625
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5735625#5735625
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5735625#5735625. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Backup and restore buttons not working

    Hi,
    Any button in my backup and restore centre with a shield next to it (for UAC) is not working. Identical to this thread:
    https://social.technet.microsoft.com/Forums/windows/en-US/6a138e65-2834-41ac-bd40-c2344e20b824/backup-and-restore-panel-buttons-not-working
    A fair way down that page, Lokesh replies but I don't have any of the software that he mentions in his post. Is anyone able to help?

    Hi,
    According to the Lokesh's reply, this problem is probably caused by 3rd plugin in Windows Explorer Shell. UAC dialog couldn't be prompt correctly.
    To resolve this problem, you can try to use ShellExViewer instead to make troubleshoot, please follow the content of the link below for more details:
    https://social.technet.microsoft.com/Forums/windows/en-US/5353106e-5b19-4a26-8446-72bedf40b169/rightclick-context-menu-in-desktop-appearing-slow-win-81?forum=w8itprogeneral
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Sub menu buttons not working on mobiles

    Why are my sub menu buttons not working on mobile phones but working fine on computers?
    Sub menu buttons come under these buttons, Our funerals services, Advice and information.
    http://www.vanessaroberts.co.uk/

    You are using a Spry menubar widget. Spry was created pre-touch-screen systems and hence not designed for touch screens.
    There are a number of solutions available to you
    1. Don't have an active link on the main menu item
    2. Place submenus in the page that is opened by the main menu item, e.g. as a vertical menu
    3. Use Spry Menu Bar ver 2.0
    3. Use a different menu system that is geared to accommodate touch screens
    Because of the demise of Spry, see here http://blogs.adobe.com/dreamweaver/2012/08/update-on-adobe-spry-framework-availability.htm l, option 3 looks like the best option.
    There are a number of free-of-charge jQuery menubars, you could also opt for one of the commercial menubars such as PVII, WebAssist or DMXZone

  • Logitech mouse buttons not working in photoshop cc 2014

    logitech mouse buttons not working in photoshop cc 2014 winds 8.1. Is this a common problem?
    I have updated the latest drivers and have a few buttons programmed with keyboard shortcuts that used to work in previous versions of Photoshop but don't work now.
    Scrolling with mouse in bridge stopped working in cc butI see it is now working.
    any ideas?

    Many Photoshop extensions are not compatible with Photoshop CC 2014 for Adobe removed support for Flash Panels in CC 2014. Many extensions panels are flash based.  Check with the developer to see if their blendmein extension works with CC 2014.
    Adobe does not maintain Photoshop so it backward compatible with prior versions of Photoshop.  This brakes things like action scripts plugins extensions etc. Keep old version of Photoshop installed....

  • IPhone 4 middle button not working

    Having problems with the iPhone 4 middle button not working anyone else with the same problem ?
    Thanks

    i have the same problem. since you're software is already iOS 5.1 go to settings>general> accessibility>the settings after triple click home, i forgot what is it called but that would help.

  • Iphone 4 Home button not working after upgrade to OS 4.3.5

    Iphone 4 Home button not working after upgrade to OS 4.3.5.Please help!!!!!!!!

    It seems that settings of mail accounts have something to do with it. I've delete my gmail account and am now using Microsoft Exchange. It seems better, yet not perfect. The issue is definitely due to OS 4.3.1
    Apple answer is - no answer. It is a shame that the quality of their products, in terms of design and concept, is not match by a care for customers. It is not normal that I, as a customer, have to spend hours reading Apple Discussions forum to try to understand what the problem is. A little more respect for a customer that spend big $$$ buying their products wouldn't hurt.

  • Iphone 4: Home Button Not Working. The home button only works when it is connected to iTunes, once i disconnet it does not work, i have tried a restore to factory settings but it still is not working. Any suggestions?

    iphone 4: Home Button Not Working. The home button only works when it is connected to iTunes, once i disconnet it does not work, i have tried a restore to factory settings but it still is not working. Any suggestions?

    Apple, as I said, does not repair your iPhone. All hardware service issues are handled by replacing the unit. So they can't handle the home-button issue without also addressing the issue of the cracked screen, for which they'll almost certainly charge you. But you can make an appointment at an Apple Store or call Apple tech support and plead your case.
    Regards.

  • Iphone 4 home button not working, called never fixed, then cracked screen before bringing it back again, will they blame the cracked screen if i bring it back?

    I bought an iPhone 4 less than a year ago, then one day the home button randomly stopped working, I bought the warranty so I decided to call in and see what was wrong with it. The girl said that restoring the phone would correct the problem which it did. But it is only a temporary fix, it happens more often now. So I was meaning to call in soon, but the other day my phone fell out of my pocket IN CASE from a foot height and cracked the screen. I nearly threw up. All the years I have had a phone I have never cracked or broken one, strongest screen my ***. Anyway, if I contact them again now will they fix the home button problem? or will they say that the cracked screen is obviously the cause of the home button not working? which it is not!! I don't care about the screen being cracked its not on the actual screen just on the side so its irrelevant to me. Plus I heard it is outrageosly pricey to replace.

    Apple, as I said, does not repair your iPhone. All hardware service issues are handled by replacing the unit. So they can't handle the home-button issue without also addressing the issue of the cracked screen, for which they'll almost certainly charge you. But you can make an appointment at an Apple Store or call Apple tech support and plead your case.
    Regards.

  • Iphone 4 Home button not working after upgrade to OS 4.3.1

    I've just upgrade my iphone 4 to OS 4.3.1 and I'm having issues with home button not working. Need to hit it several times before I can close an app or wake the iphone. Any one having this issue?

    It seems that settings of mail accounts have something to do with it. I've delete my gmail account and am now using Microsoft Exchange. It seems better, yet not perfect. The issue is definitely due to OS 4.3.1
    Apple answer is - no answer. It is a shame that the quality of their products, in terms of design and concept, is not match by a care for customers. It is not normal that I, as a customer, have to spend hours reading Apple Discussions forum to try to understand what the problem is. A little more respect for a customer that spend big $$$ buying their products wouldn't hurt.

Maybe you are looking for

  • How can I embed a Keynote presentation on a web page?

    I created a Keynote presentation using Keynote version 6.5 (OS X Yosemite). I found the "export as html" option, which creates an entire web page named index.html. I opened that web page in Dreamweaver, but I'm not talented enough to figure out how t

  • How can I use Apple Caching Service on a Network with Multiple Public IPs?

    Hello! I help manage a network of ~4000 clients for a small liberal arts college in Michigan. I'm looking into the possibility of implimenting Apple Caching Server for our network. We have one 400mbit pipe out to the internet, and all of our clients

  • Conversion settings from fcp to dvd studio pro?

    i have a seven minute short subject that i need to burn to dvd using dvd studio pro. before i export from fcp, wanted to double check my fcp export settings with anyone who's been there before. here's my choices: export with quicktime conversion, und

  • ALV Excel Download problem ( Special Character)

    Hi, I am unable to download completely in XLS format from ALV grid. When i tried in couple of ways there is a special character( " ) in one of the filed. Due to the same Excel download has some problem. I tested by removing those and it worked fine, 

  • How to export "original" w/o Lr adjustments?

    I've searched this "6 ways from Sunday" and can't find an answer. Often I will start the edit process in Lr (making various adjustments including cropping, changes in white balance, etc.) and decide for variety of reasons that I need to work on the O