cancel
Showing results for 
Search instead for 
Did you mean: 

Hiding SQL statement in Query Result Window

Former Member
0 Kudos

is it possible hiding SQL statement in Query Result Window using sdk.

regards,

avijit

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

I guess ur talking abt form 110....

Try to put a blant text box over the existing text box item 3. I guess with this u can solve this..

Try this in the form load..

Hope it helps,

Vasu Natari.

Former Member
0 Kudos

Vasu is right, it is possible. Use Vasus solutiuon or move the existing textbox outside the form or dont allow click on showing the query. There is a lot of possibilities.

Former Member
0 Kudos

ok vasu & peter ,

i will work on that & get back you.

Regards,

Avijit

Former Member
0 Kudos

You may try this in your ItemEvent-Handler:


Select Case pVal.FormTypeEx
                Case "110" '
                    If pVal.EventType = SAPbouiCOM.BoEventTypes.et_FORM_LOAD And pVal.BeforeAction Then
                        Dim oFormQ As SAPbouiCOM.Form = SboCon.SboUI.Forms.GetForm(pVal.FormTypeEx, pVal.FormTypeCount)
                        
                        If oFormQ.Items.Item("12").Visible = True Then
                            'Arrow in state "open" is visible...
                            oFormQ.Items.Item("12").Click(SAPbouiCOM.BoCellClickType.ct_Regular) '...close editBox
                            'Disable arrow in state "close"
                            oFormQ.Items.Item("11").Enabled = False
                        End If
                    End If
End Select

Answers (2)

Answers (2)

Former Member
0 Kudos

ok

Former Member
0 Kudos

Hi..

search forum

Regards..

Billa 2007

Edited by: Billa 2007 on Sep 5, 2008 5:48 PM