Radio button in bdc multiple transaction

hi,
    i m working on two dependent transactions in bdc(using call transaction method) on ie01 and ko01 transactions where in in the selction screen i used two radio buttons under one group for calling each transaction,but i m unable to call ko01 transaction when i click to ko01 radiobutton and press execute its going into ie01 transaction,can any one explain how we can write the code to call two transactions seperately and upload data seperatly for both under single radio button group in single pgm......

Hi Raj,
     Can you please send me the BDC code which you have written for tcode ko01.  I am getting the following problem in BDC code for uploading internal orders in KO01 tcode.
   I want to enable a field in BDC program for ko01 tcode.
In this tcode, based on order type the business area field is enabling and disabling. If it is enabled then we have to enter business area bcaz its a mandatory field. Business area will be disabled if system generates a value into that field based on order type.
How can do it in BDC program of this disabling and enabling technique.
I want to enable the business area irrespective of order type and i will pass the value to it,bcaz in my flat file business area value is given for all order types.
Its an urgent issue.
Thanks in Advance.
Regards,
Swapna

Similar Messages

  • Using radio button selection in multiple tables

    Hello All,
    I've got a bit of a design issue and it being a Friday my brain is a bit foggy and I can't seem to figure out a solution.
    what I want to do is have 3 tables. The user should only be able to select one line from any of the three tables.
    I can do this by having events that clear down selection on the two other tables on any selection of the third, but the select buttons of tables don't really give the UI impression that only one row can be selected. To do this I'd like to use the radio button element.
    so
    table A
    choice - name
    (o) - Anne
    (o) - Bob
    (o) - Charlie
    Table B
    choice - name
    (x) - David
    (o) - Ellen
    (o) - Fran
    Table C
    choice - name
    (o) - George
    Here the entry in table B for David is selected. But any selection of any of the other options should deselected.
    My thoughts are to use a radio button ui element, bind the "selected" value to a unique id for each row/table (an attribute of the node element for each table) and the value to a common shared attribute (not table specific).
    Any better ideas - and certainly any which would mean I'm not going to have to maintain a lookup table of my unique ids and node elements to find out which one is selected?
    Cheers,
    Chris

    Ok - here's how I did it.
    I created another lookup table which had a guid and reference to the element.
    in the each elements I had a guid which I bound to the key for selection property of the radio button in the table.
    I then bound the selected key property to an attribute that was common to all elements.
    in my "processing" logic I read the selected key, read the lookup table - and therefore got the reference to the selected element.
    Would have been an awful lot easier if I could have used a reference to the element itself as the "key" - but that was required to be a character field.
    [image showing radio button selection working across multiple tables|http://i51.tinypic.com/bi79dx.jpg]
    End result works quite nicely.
    Cheers,
    Chris

  • One pair of radio buttons to control multiple text objects - Designer 8.0

    Greetings - a big thank you in advance for any assistance. I have often found answers to my problems on this forum, but have been unable to find an answer to the following.
    The short of it - is it possible to make a pair of radio buttons control the visibility of multiple text objects with the same name(I have had success in manipulating only a single text object with one pair of buttons)?
    The long of it - I am trying to make a form bilingual based on the value of a radio button group to control the visibility of the text object in the selected language. When the user selects the language they wish to see, all the text objects in the form switch to that language. I am working with a dynamic PDF.
    I have succeeded to a very limited extent in manipulating one text object by overlaying text objects in both languages, setting one object to "invisible" as default, and controlling that text objects visibility with the following JavaScript in the click event of the radio button group:
    ----- form1.#subform[0].ENG_JPN::click: - (JavaScript, client) -------------------------------------
    if (ENG_JPN.rawValue == 1)///1 equals the value of on
    {English.presence = "visible";}
    else
    {English.presence = "invisible";}
    if (ENG_JPN.rawValue == 2)///2 equals the value of on
    {Japanese.presence = "visible";}
    else
    {Japanese.presence = "invisible";}
    endif
    The problem is I need to manipulate the visibility of all text objects with the same name on the form with a single radio button group. I have tried writing the code as one does for the sum of a repeating field, ie. English[*].presence etc. however I get a C++ error in preview.
    Any ideas are greatly appreciated. I am truly stumped - thank you for your time.

    To access objects with the same name you need to deal with occurance numbers. If your object is called TextField then the 1st occurance will be TextField[0], the second occurance will be TextField[1] etc.....
    The issue is that the [] in javascript are interpretted as an array element so you have to use the syntax: xfa.reolveNode("string") to get to your object names. In your case you would use:
    xfa.resolveNode("TextField[1]").presence = "visible"
    This string syntax allows you to use a var to hold the index number and is very useful with for loops where you want to set large numbers of objects. So if the index was held in the var i then your syntax would be:
    xfa.resolveNode("TextField[" + i + "]").presence = "visible"
    If the objects are in a repeating subform then the occurance numbers are on the subform and not the object. You can always get the expression to use by app.alert(objectname.somExpression). This will return the expression that you need to create.
    Make sense?

  • Using a Radio Button to Disable Multiple Checkboxes

    Hi everyone,
    My name is Christian and I am trying to design a form using Adobe Designer 7 that when a user selects a group of two radio buttons (one marked Macintosh and one marked Windows) it automatically disables 3 or 4 checkboxes of various software applications further down the page.
    The idea is if you select the Windows radio button, you would not be able to select the iWorks or StuffIT checkboxes (as that is Mac software), but conversely if you check Macintosh radio button the iWorks and StuffIT checkboxes activate but the Office 2003 and Microsoft Money checkboxes deactivate (because that is Windows software).
    Im not really a developer so any assistance would be appreciated. Thanks for reading and have a great day! :-)
    Christian

    I suspect that you have a problem in some portion of your code that you have not posted. To help debugging I suggest you create a simple test using two pages: input.cfm and action.cfm.  Get the most simple case working then add the javascript, css, and CF code to make your application work.
    <!--- contents of input.cfm --->
    <html>
    <head>
         <title>Input</title>
    </head>
    <body>
         <form action="action.cfm" method="POST">
              Choose type: <br />
              <input name="type" type="radio" value="male" />     Male<br />
              <input name="type" type="radio" value="female" /> Female<br />
              <input type="submit" />
         </form>
    </body>
    </html>
    <!--- content of action.cfm --->
    <html>
    <head>
         <title>Action</title>
    </head>
    <body>
         <cfif form.type eq "male">
              Type is male.
         <cfelseif form.type eq "female">
              Type is female.
         </cfif>
         Here is a cfdump of the form variables:<br />
         <cfdump var="#form#" />
    </body>
    </html>
    Message was edited by: JR "Bob" Dobbs
    Added sample for action.cfm

  • Select List or Radio Buttons query with multiple tables join

    Hello,
    I'm having a problem creating a select list or a radio group item.
    I need to display the emp_first_name in the select list but have the return value of the order_id in the select list or radio buttons item.
    The tables are as follow:
    emp_table
    emp_id
    emp_first_name
    emp_last_name
    etc...
    orders_table
    order_id
    order_name
    emp_id
    etc...
    I need to display the emp_name from emp_table in the select list but return the order_id from the orders_table as the return value.
    How can I do this?
    Any help would be greatly appreciated.
    Thanks.
    Regards,
    NJ

    Hi NJ,
    Try:
    select e.emp_first_name d,
    o.order_id r
    from orders_table o
    inner join emp_table e on o.emp_id = e.emp_id
    order by 1You may have an issue with an emp_id being used for more than one order and, therefore, the employee's name appearing more than once in the list?
    Andy

  • Selecting Correct Radio Button

    I'm testing a web page that has a set of five radio buttons representing a 'multiple choice challenge question' meaning that a user has to click on the correct value in order to continue with their process.
    The challenge question asks the user to select the correct answer, and places the correct answer in a random position within the five radio buttons with the other four values being selected randomly also.
    What I'm trying to do is to get eTester to find the correct the value (the correct value is known) and select that associated radio button so that the process can continue, but am having trouble doing so.

    The following code should help. You may have to play with the events or modify to minimize the number of times this gets fired (it will execute before each event on the page in tester)
    Private Sub RSWVBAPage_beforeAction(ByVal actionObj As RswIprogs.IProgAction)
    Dim col As Collection
    Dim rb As Variant
    Dim dbVal As String
    ' Grab correct value from the databank
    RSWApp.GetDataBankValue "myState", dbVal
    ' Radio button group named "state"
    RSWApp.om.FindElements col, "state", "INPUT", "NAME"
    ' Loop through the radio buttons. Find the one with the value that matches the databank
    ' and click on that button.
    For Each rb In col
       If rb.Value = dbVal Then
         rb.click
       End If
    Next
    End Sub

  • How to handle radio-buttons in FB05  bdc????

    How to change Additional selections radio-button from none to Document numbers in CALL TRANSACTION BACKGROUND MODE..............................................
    Edited by: Raghavender Poosarla on Apr 8, 2008 10:32 AM

    I have BDC requirement of FB05 transaction... I am stuck at one point where this recordin is working in Foreground mode and not in Backgroung mode...The reason being there is a bit in which I am selecting a readio-button from value 'NONE' to 'Document numbers' WHICH IS HAPPENING IN FOREGROUND AND NOT IN BACKGROUND ....Can any one tell is there any special way for handling radio-buttons in recording of an transaction???

  • BDC FB05 Radio button handling

    Hi experts.
    I got BDC requirement of FB05 transaction... Program is working fine in fore Foreground mode.In backgroud it shows error..
    The reason is which I am selecting a radio-button from value 'NONE' to 'Document numbers' .
    Can any one tell is there any special way for handling radio-buttons in recording of an transaction???
    i already used the CTUPARAMS also...
        ctu_options-defsize = 'X'.
        ctu_options-dismode = 'N'.   "E
        CALL TRANSACTION 'FB05' USING gt_bdcdata
                                  MODE gv_mode
                                   MESSAGES INTO gt_messtab
                                   OPTIONS FROM ctu_options.
    Pls help.

    Hi,
    U need to use all the four as ...
    RF05A-XPOS1(01) = ''.
    RF05A-XPOS1(02) = ''.
    RF05A-XPOS1(03) = ''.
    RF05A-XPOS1(04) = 'X'.     " Selected
    Hope this will help.
    Regards,
    Amitava

  • Multiple sets of radio buttons no longer working

    Hello All:
    My first post so I apologize in advance if I don't do it
    properly.
    I have a few web forms that have multiple groups of radio
    buttons on them that are suddenly errorring out since we moved to
    CF 7. I started tinkering with the one form that I have posted the
    code for and kept cutting it down to the simplest code that begins
    to produce the error. If I just use 1 radio button group everything
    works fine, but the minute I add the second one, the whole thing
    throws a "Syntax error (missing operator) in query expression"
    message. Each radio button group has it's own group name and a
    checked value. It is very simple code and very frustrating why it
    has suddenly stopped working so any assistance is welcome.
    Here's the form code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1" />
    <title>Untitled Document</title>
    </head>
    <body background="white" marginheight="0"
    marginwidth="0">
    <cfform action="testSub.cfm" method="POST">
    <table width="95%" border="0" cellpadding="0">
    <tr>
    <td width="24%"><img src="survey.jpg"
    border="0"></td>
    <td width="76%"><p>It is our desire to assure
    that MID is meeting the needs of
    our clients. xxxxxxx
    <p> </p>
    <p>*****************************************************<br>
    </p></td>
    </tr>
    <tr>
    <td colspan="2"><p>Please answer questions 1
    through 4 with a 1 - 5 rating, with 1 being POOR and 5 being
    EXCELLENT.</p>
    <p> You are not obligated to provide this
    information.</p>
    <p><font face="Arial, Helvetica, sans-serif"
    size="2">My Name (First &amp;
    Last):</font> <font face="Arial, Helvetica,
    sans-serif" size="2">
    <cfinput type="Text" name="poc" required="no" size="50"
    maxlength="50">
    <br>
    <b>1. Was
    your service technician polite and
    courteous?</b><br>
    <cfinput type="radio" name="polite" value="1">
    1
    <cfinput type="radio" name="polite" value="2">
    2
    <cfinput type="radio" name="polite" value="3" checked>
    3
    <cfinput type="radio" name="polite" value="4">
    4
    <cfinput type="radio" name="polite" value="5">
    5     </p>
    <p><br>
    <br>
    2. Was
    your service technician polite and
    courteous?</b><br>
    <cfinput type="radio" name="know" value="1">
    1
    <cfinput type="radio" name="know" value="2">
    2
    <cfinput type="radio" name="know" value="3" checked>
    3
    <cfinput type="radio" name="know" value="4">
    4
    <cfinput type="radio" name="know" value="5">
    5     </p>
    <input type="submit" name="btnSubmit" value="Submit My
    Comments!">
    <input type="reset" name="reset" value="Reset
    Form"><br>
    <br>
    </cfform>
    <tr>
    <td> </td>
    <td> </td>
    </tr>
    </table>
    </body>
    </html>
    The ACTION code
    <html>
    <head>
    <title>test</title>
    </head>
    <body>
    <CFIF IsDefined("FORM.btnSubmit")>
    <CFQUERY NAME="Add" datasource="newMID">
    INSERT INTO survey(
    poc,
    polite,
    know
    VALUES (
    '#poc#',
    '#polite#'
    '#know#',
    </CFQUERY>
    </CFIF>
    <cfoutput>
    Thank you. Your IT survey has been forwarded to our NHCPR IT
    mailbox.
    </cfoutput>
    <cfmail to="[email protected]"
    FROM="[email protected]"
    SUBJECT="IT Survey Form">
    Polite: #polite#
    Know: #know#
    POC (opt.): #poc#
    </cfmail>
    </body>
    </html>

    OK. I took out the extra comma. Put a space in after *survey*
    and put "form" in front of the variables in order to scope them. I
    got it to work just then and decided to add the next radio button
    and once again, the error message keeps coming up.
    Here's what it looks like now.
    ACTION
    code***********************************************************
    <html>
    <head>
    <title>test</title>
    </head>
    <body>
    <CFIF IsDefined("FORM.btnSubmit")>
    <CFQUERY NAME="Add" datasource="newMID">
    INSERT INTO survey (
    poc,
    polite,
    know,
    time
    VALUES (
    '#form.poc#',
    '#form.polite#',
    '#form.know#',
    '#form.time#'
    </CFQUERY>
    </CFIF>
    <cfoutput>
    Thank you. Your IT survey has been forwarded to our NHCPR IT
    mailbox.
    </cfoutput>
    <cfmail to="[email protected]"
    FROM="[email protected]"
    SUBJECT="IT Survey Form">
    Polite: #polite#
    Know: #know#
    POC (opt.): #poc#
    Timely: #time#
    </cfmail>
    </body>
    </html>
    The ERROR msg
    Error Executing Database Query.
    [Macromedia][SequeLink JDBC Driver][ODBC
    Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in
    INSERT INTO statement.
    The error occurred in
    C:\Inetpub\wwwroot\PaxNew\chiefOscar\testSub.cfm: line 20
    18 : '#form.polite#',
    19 : '#form.know#',
    20 : '#form.time#'
    21 : )
    22 :
    SQL INSERT INTO survey ( poc, polite, know, time ) VALUES (
    'kennedi', '3', '5', '3' )
    DATASOURCE newMID
    VENDORERRORCODE -3502
    SQLSTATE 42000
    Resources:
    Check the ColdFusion documentation to verify that you are
    using the correct syntax.
    Search the Knowledge Base to find a solution to your problem.
    Browser Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
    SV1; InfoPath.1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    Remote Address 10.249.6.81
    Referrer
    http://205.115.107.22/chiefoscar/tsurvey.cfm
    Date/Time 29-Jan-08 02:05 PM
    Stack Trace (click to expand)

  • Radio Buttons / Check box of Gui Transaction not displaying in WEB UI

    HI,
    We are using CRM 7.0 / ECC 6.0, i am launching some ECC transaction in WEB UI using transaction launcher, Radio button and Checkbox are displaying properly in Dev CRM system but it is not displaying in Quality system.
    I compared both systems, everything is the same. I also checked the ITS URL, we are using transaction IC_LTXE.
    /sap/bc/gui/sap/its/webgui/!?transaction=IC_LTXE&okcode=ICEXECUTE&sap-client=100
    Please Advise ?.
    Thanks & Regards,
    Rajanidhi Rajasekeran.

    Hi,
    We are working on an upgrade project and have used transaction launcher to give SAP GUI transactions in Web UI.
    We are facing a similar issue.
    We have a report program with several checkboxes. User will select few checkbox and perform further processing.
    In development system it is working fine but in quality system if we scroll down or up after clicking on checkbox the page is getting refreshed and check is cleared.
    Did you come up with a reasonable solution to this issue?
    Do you know any way around this issue?
    Thanks in advance
    Regards,
    Sayan

  • Advanced Searching  - Multiple Menu/List/Radio Button Criteria

    Hi All,
    I am looking for a dreamweaver and/or PHP/MySQL tutorial
    and/or extension and/or tool that can walk me through creating an
    advanced search page. For example, I have multiple search criteria
    which allow users to select various criteria:
    Menu/list #1 (Allows multiple)
    Option 1, 2, 3…25
    Menu/list #2 (Allows multiple)
    Option 1, 2, 3…50
    Menu/list #3 (Allows multiple)
    Option 1, 2, 3…10
    Radio button (allows user to select the way the information
    is displayed)
    By Date
    By State
    By Score
    By whatever…
    Drop down (allows user to select how many records to display)
    View 25
    View 50
    View 75
    View 100
    View ALL
    Any comments and suggestions would be greatly appreciated.
    BTW, I consider myself a step above the beginner level - could
    consider myself an intermediate user of Dreamweaver, PHP/MySQL so
    please be gentle

    Hi there,
    If you are prepared to consider a commercial solution then
    you might
    like to take a look at the WebAssist extension "Database
    Search"
    To learn more about this extension please visit the web
    address I have
    included below:
    http://www.webassist.com/professional/products/productdetails.asp?PID=72
    You might also like to consider our Dynamic dropdowns
    solution. To learn
    more about this product, take a look at this URL:
    http://www.webassist.com/professional/products/productdetails.asp?PID=1
    Feel free to contact me off list, if you would like to learn
    more about
    either of these or any other WebAssist software.
    Regards,
    Mark
    Mark Fletcher
    WebAssist.com
    MacPMH wrote:
    > Hi All,
    >
    > I am looking for a dreamweaver and/or PHP/MySQL tutorial
    and/or extension
    > and/or tool that can walk me through creating an
    advanced search page. For
    > example, I have multiple search criteria which allow
    users to select various
    > criteria:
    >
    > Menu/list #1 (Allows multiple)
    > Option 1, 2, 3?25
    >
    > Menu/list #2 (Allows multiple)
    > Option 1, 2, 3?50
    >
    > Menu/list #3 (Allows multiple)
    > Option 1, 2, 3?10
    >
    > Radio button (allows user to select the way the
    information is displayed)
    > By Date
    > By State
    > By Score
    > By whatever?
    >
    > Drop down (allows user to select how many records to
    display)
    > View 25
    > View 50
    > View 75
    > View 100
    > View ALL
    >
    > Any comments and suggestions would be greatly
    appreciated. BTW, I consider
    > myself a step above the beginner level - could consider
    myself an intermediate
    > user of Dreamweaver, PHP/MySQL so please be gentle
    >
    >

  • Is it possible to flip the multiple choice quiz "radio" button from left to right of the answers?

    Hello forum,
    I am using Captivate version 6.1.0.319 on a Windows 7 desktop PC and would like to know if it is possible to flip the multiple choice quiz "radio" button from left to right of the answers. I am working on a project that uses the "Require Right to Left composer" within the Global Preferences: General settings. The captions has been switched from left to right but the quiz answer radio buttons did not. Any help would be appreciated.
    Thanks, in advance. 

    Hello and welcome to the forum,
    I'm not aware of such a possibility. A workaround could be to create your own MCQ slides, using standard objects and widgets like the radiobuttons widget (there is an enhanced version created by Jim Leichliter) and advanced actions. These articles were written for previous versions, but can give you an idea about the work involved:
    http://blog.lilybiri.com/widgets-and-custom-questions-part-1
    http://blog.lilybiri.com/extended-widgets-for-custom-mcq-and-tf-questi
    Lilybiri

  • Transaction iView radio button parameter

    Hello everyone!
    I have built a Transaction iView for the transaction CU50 and would like to know how I can set the value/parameter for the radio button for the first screen that pops up.
    This is a pop-up where I have to select the plant, which are radio button options. How and what parameter do I give in the Application Parameters in the properties of this Transaction iView?
    Regards,
    Sameer

    Hi Sameer,
    <i><<This is a pop-up where I have to select the plant, which are radio button options.</i>
    To select that particular plant,you need to know the screen_field name first.
    The field name for plant is <b>WERKS</b>
    (In the screen for cu50...keep the cursor on Plant input field and press F1 and in the help popup...choose technical information tab....which opens another popup where you will be able to see the field data for plant)
    In the transaction iview,here's how the ApplicationParameter works :
    You can enter parameter values for certain screen fields for displaying a SAP transaction here.
    The parameter values are specified with the following syntax:
    <Screen_field1>=<Parameter1>
    &<Screen_field2>=<Parameter2>
    &<...>=<...>,...
    Chek out the following <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/88/266a3e54a2e946e10000000a114084/frameset.htm">link</a> on Transaction iviews for more info.
    Its a good question you have put up.
    P.S:Reward points if useful
    Regards,
    Abhishek.

  • Adobe Captivate - Multiple Choice Quiz Question - Radio Button and Text Alignment

    I have created a quiz with multiple choice questions.
    No matter what I do I cannot align the radio button and the text for the choices (see below).
    I would like to align the center of the radio button with the center of the letter A) and B).
    I have tried every option that I can think of in the Properties options.
    Please let me know if anyone has a solution for this.
    Thank you

    Thanks for the reply.
    Previously I tried several different combinations of fonts and font sizes, but didn't see any change.
    Does anyone else know of anything else that could effect this situation?

  • Multiple selection with control key in ring, enum, or radio buttons on Speedy-33 ?

    Hi all,
    I want to create a list of entries via ring, enum, or radio buttons. I just want the user to be able to select more than one entry from the list.. This is normally doable with windows applications by using control key. However, how could I do the same thing or let the user choose more than one entry from the list? Any idea is greatly appreciated..
    Thanks so much!

    Hi Casiopea -
    To answer your question, I'm not sure I've ever actually seen a ring, enum, or radio button control exhibit the "CTRL+click" behavior you're describing.  (In fact, I think all of those user interface elements are designed specifically so that only one value can be selected at any one time.)
    However, I have seen plenty of list boxes allow multiple selection, and LabVIEW's list boxes can do the same.  A group of checkboxes can also end up looking like radio buttons if you group them with some "decoration" and would allow you to select multiple options (because you can check/uncheck each box independently).
    I'm not quite sure, though, how your question relates to LEGO specifically.  Did you accidentally post this question to the wrong discussion forum?
    To address Eagles Coach's statements, the official Move block uses checkboxes in the "Port" section of the configuration pane in the MINDSTORMS software, not radio buttons.  The Motor block uses mostly radio buttons, and I didn't see any sections that allow multiple selections.
    James Blair
    NI R&D

Maybe you are looking for

  • Problem in moving transport request

    Hi, While performing transports at OS level, we are facing some error. below is the log. Please look into this issue. We have already trigged manually RDDNEWPP and SAP_TRIGGER_RDDIMPDP from client 000 >tp import pf=TP_DOMAIN_FD3.PFL FD3K915202 FT3 CL

  • Client says can't see Flash images

    Let me request your patience in advance - I don't have many details to provide so I know the possibilities are wide open and therefore difficult to pinpoint. Here goes. We created an HTML website with some flash content and some static jpeg images. M

  • RFC response is IT_RETURN instead of RETURN

    Hi All, I am working with Custom RFC when I am sending the request not getting any thing showing the error as "com.sap.aii.adapter.rfc.util.bapi.BapiException: Parameter with name RETURN not found". When executed in function builder SE37 working fine

  • How to view the pl/sql for dbms_stats

    Hi, Please can you help? From executing the code execute dbms_stats.gather_database_stats; , I have the following error: BEGIN dbms_stats.gather_database_stats; END; ERROR at line 1: ORA-01476: divisor is equal to zero ORA-06512: at "SYS.DBMS_STATS",

  • HT1222 facebook says I may have malware on my macbook.  what do I do?

    Facebook has blocked my account and sends me to the Apple updates page.  According to Apple, I have all the current updates.  Do I have malware on my macbook? What do I do?