Steps to activate Quality tab during GR (MIGO)

Hi All,
I need to activate the quality tab during GR.
I have included the Quality management view in MM, and have maintained the inspection type as "01" Goods receipt inspection for order.
I am unable to see the quality tab during GR(MIGO)
Let me know what all settings do i have to maintain to get the quality tab in MIGO.
Thanks,
Regards
Raghavendra

I must confess I have never seen a Quality tab in MIGO, you did?
What is on this tab?
The quality status is on the WHERE tab.
Inspection method in QM view of material master  is well known, it creates a inspection lot in background when doing the GR.
The lab does the quality check and then a usage decision for inspection lot.

Similar Messages

  • Excise Invoice tab during Imports MIGO

    Hi
    During MIGO for an Imports PO (after doing MIRO for Customs) the system suggest the Commercial Invoice no. in a pop-up & the following happens:
    1) If I ACCEPT this commercial invoice no. & move ahead to complete the MIGO, the system does not open up the 'Excise Invoice' tab in the MIGO header.
    2) If i DELETE the commercial invoice no. & move ahead to complete the MIGO, the system opens up the 'Excise Invoice' tab in the MIGO header.
    Why is this so?
    Why does the system suggest the commercial invoice no. here? What are the implications of accepting it or deleting it?
    mnp_sap

    Hi,
    In Import procurement cycle, you have to capture excise invoice in J1IEX after posting Customs Invoice in MIRO and then do MIGO, here refer excise invoice already captured and after GR POsting, post the excise Invoice in J1IEX.
    So check whether you have captured the excise invoice before GR Posting
    So follow the below process;
    1. Create Import PO - ME21N
    2. Post Customs Invoice - MIRO
    3. Capture Excise Invoice (BOE) - J1IEX
    4. Post GR (Here refer excise invoice) - MIGO
    5. Post Excise Invoice (BOE) - J1IEX
    7. Post Import Vendor Invoice - MIRO

  • Not getting drill down in Excise Tab during MIGO

    Hello,
    I am not getting drill down in Excise tab during MIGO only "no excise duty" coming. I have configared SPRO - Logistic general - Tax on goods movement - India - Business transaction - Incoming excise invoices - Define processing mode per transaction .Along with maitained J1ID too.
    Can any one have idea on this.

    Hi,
    Check for the -J1IEX -Active for all activities in 
    SPRO - Logistic general - Tax on goods movement - India - Business transaction - Incoming excise invoices - Define processing mode per transaction.
    Then check  for the Support package of -Logistic and accounting.any Notes are missing.
    Properly maitai J1ID  details w.r.t Vendor,materials,excise rates,etc
    Is all  Tax details are showing in your PO invoice Tab ?
    with regards
    Shrinivas gangoor

  • Excise Part-2 is not getting updated during the MIGO

    Dear Experts,
    When I am doing GR (MIGO), I am selecting the Excise posting transaction in "Excise" header tab as "Capture & Post Excise Invoice".
    But, here after posting the GR, only Part-1 is getting updated. Part-2 is not updating. Moreover, if I try to post the same vendor excise invoice in J1IEX, it is giving the error as " Part-1 not yet posted even though Part-1 is updated. Can any body suggest what is the root cause for the same?
    One more thing is, once I select "Only Capture Excise Invoice" during GR, in the normal process Part-1 is updating and I'll be able to post the Part-2 in J1IEX. There is no issue. But, I can't be able to post the Part-2 during GR.
    Note: I am receiving the goods against with the STO. And, we are paying the customs against with the STO. After paying the Customs Invoice, we are receiving the goods into our manufacturing Plant from logical plant.
    Thanks in advance for your action!!!!
    Regards,
    Satya
    Dear

    Hi Ashok,
    I went through the above note. It explains the causes that why the posting is not happening in J1IEX.
    And, as per the solution that is in that note, if we change the status of that excise invoice from 'P' to Blank in the table J_1IEXCHDR, then Vendor excise invoice will be cancelling.
    So, I guess this can't resolve my issue. Because, my issue is if I select "Only Capture Excise", the Part-1 is updating in MIGO and I am able to post the Part-2 in J1IEX. But, If I select "Capture & Post Ecxise Invoice" in MIGO, then only Part-1 is updating and even I am not able to post the Part-2 in J1IEX also as the status of the Excise Invoice is "Posted".
    And, this is happening frequently during MIGO while selecting "Capture & Post Excise". So, I guess the Function Module / BADI which updates the J_1IPART2 is not getting triggered during MIGO. Once it triggers in MIGO, then Part-2 will be posting in GR itself.
    Could you please let me know the standard FM / BADI which updates the Excise Invoice Part-2 (J_1IPART2). So that I'll check with my ABAPer whether it is triggering or not during the MIGO.
    Thanks,
    Satya

  • How can we prevent JTabbedPanes from transferring focus to components outside of the tabs during tab traversal?

    Hi,
    I noticed a strange focus traversal behavior of JTabbedPane.
    During tab traversal (when the user's intention is just to switch between tabs), the focus is transferred to a component outside of the tabs (if there is a component after/below the JTabbedPane component), if using Java 6. For example, if using the SSCCE below...
    import java.awt.BorderLayout;
    import java.awt.event.FocusAdapter;
    import java.awt.event.FocusEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.Box;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTabbedPane;
    import javax.swing.JTextField;
    import javax.swing.SwingUtilities;
    public class TabbedPaneTest extends JPanel {
        public TabbedPaneTest() {
            super(new BorderLayout());
            JTabbedPane tabbedPane = new JTabbedPane();
            tabbedPane.addTab("Tab 1", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
            tabbedPane.addTab("Tab 2", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(1, KeyEvent.VK_2);
            tabbedPane.addTab("Tab 3", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(2, KeyEvent.VK_3);
            tabbedPane.addTab("Tab 4", buildPanelWithChildComponents());
            tabbedPane.setMnemonicAt(3, KeyEvent.VK_4);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(tabbedPane);
            JButton button = new JButton("Dummy component that gains focus when switching tabs");
            panel.add(button, BorderLayout.SOUTH);
             * To replicate the focus traversal issue, please follow these steps -
             * 1) Run this program in Java 6; and then
             * 2) Click on a child component inside any tab; and then
             * 3) Click on any other tab (or use the mnemonic keys ALT + 1 to ALT 4).
            button.addFocusListener(new FocusAdapter() {
                @Override
                public void focusGained(FocusEvent e) {
                    System.err.println("Gained focus (not supposed to when just switching tabs).");
            add(new JScrollPane(panel));
        private JPanel buildPanelWithChildComponents() {
            JPanel panel = new JPanel();
            BoxLayout boxlayout = new BoxLayout(panel, BoxLayout.PAGE_AXIS);
            panel.setLayout(boxlayout);
            panel.add(Box.createVerticalStrut(3));
            for (int i = 0; i < 4; i++) {
                panel.add(new JTextField(10));
                panel.add(Box.createVerticalStrut(3));
            return panel;
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    JFrame frame = new JFrame("Test for Java 6");
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.add(new TabbedPaneTest());
                    frame.pack();
                    frame.setVisible(true);
    ... Then we can replicate this behavior by following these steps:
    1) Run the program in Java 6; and then
    2) Click on a child component in any of the tabs; and then
    3) Click on any other tab (or use the mnemonic keys 'ALT + 1' to 'ALT + 4').
    At step 3 (upon selecting any other tab), the focus would go to the component below the JTabbedPane first (hence the printed message in the console), before actually going to the selected tab.
    This does not occur in Java 7, so I'm assuming it is a bug that is fixed. And I know that Oracle suggests that we should use Java 7 nowadays.
    The problem is: We need to stick to Java 6 for a certain application. So I'm looking for a way to fix this issue for all our JTabbedPane components while using Java 6.
    So, is there a way to prevent JTabbedPanes from passing the focus to components outside of the tabs during tab traversal (e.g. when users are just switching between tabs), in Java 6?
    Note: I've read the release notes between Java 6u45 to Java 7u15, but I was unable to find any changes related to the JTabbedPane component. So any pointers on this would be deeply appreciated.
    Regards,
    James

    Hi Kleopatra,
    Thanks for the reply.
    Please allow me to clarify first: Actually the problem is not that the child components (inside tabs) get focused before the selected tab. The problem is: the component outside of the tabs gets focused before the selected tab. For example, the JButton in the SSCCE posted above gets focused when users switch between tabs, despite the fact that the JButton is not a child component of the JTabbedPane.
    It is important for me to prevent this behavior because it causes a usability issue for forms with 'auto-scrolling' features.
    What I mean by 'auto-scrolling' here is: a feature where the form automatically scrolls down to show the current focused component (if the component is not already visible). This is a usability improvement for long forms with scroll bars (which saves the users' effort of manually scrolling down just to see the focused component).
    To see this feature in action, please run the SSCCE below, and keep pressing the 'Tab' key (the scroll pane will follow the focused component automatically):
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.Insets;
    import java.awt.event.FocusAdapter;
    import java.awt.event.FocusEvent;
    import java.awt.event.KeyEvent;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.JScrollPane;
    import javax.swing.JTabbedPane;
    import javax.swing.JTextField;
    import javax.swing.JViewport;
    import javax.swing.SwingUtilities;
    public class TabbedPaneAutoScrollTest extends JPanel {
        private AutoScrollFocusHandler autoScrollFocusHandler;
        public TabbedPaneAutoScrollTest() {
            super(new BorderLayout());
            autoScrollFocusHandler = new AutoScrollFocusHandler();
            JTabbedPane tabbedPane = new JTabbedPane();
            tabbedPane.addTab("Tab 1", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(0, KeyEvent.VK_1);
            tabbedPane.addTab("Tab 2", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(1, KeyEvent.VK_2);
            tabbedPane.addTab("Tab 3", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(2, KeyEvent.VK_3);
            tabbedPane.addTab("Tab 4", buildPanelWithChildComponents(20));
            tabbedPane.setMnemonicAt(3, KeyEvent.VK_4);
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(tabbedPane);
            JButton button = new JButton("Dummy component that gains focus when switching tabs");
            panel.add(button, BorderLayout.SOUTH);
             * To replicate the focus traversal issue, please follow these steps -
             * 1) Run this program in Java 6; and then
             * 2) Click on a child component inside any tab; and then
             * 3) Click on any other tab (or use the mnemonic keys ALT + 1 to ALT 4).
            button.addFocusListener(new FocusAdapter() {
                @Override
                public void focusGained(FocusEvent e) {
                    System.err.println("Gained focus (not supposed to when just switching tabs).");
            button.addFocusListener(autoScrollFocusHandler);
            JScrollPane scrollPane = new JScrollPane(panel);
            add(scrollPane);
            autoScrollFocusHandler.setScrollPane(scrollPane);
        private JPanel buildPanelWithChildComponents(int numberOfChildComponents) {
            final JPanel panel = new JPanel(new GridBagLayout());
            final String labelPrefix = "Dummy Field ";
            final Insets labelInsets = new Insets(5, 5, 5, 5);
            final Insets textFieldInsets = new Insets(5, 0, 5, 0);
            final GridBagConstraints gridBagConstraints = new GridBagConstraints();
            JTextField textField;
            for (int i = 0; i < numberOfChildComponents; i++) {
                gridBagConstraints.insets = labelInsets;
                gridBagConstraints.gridx = 1;
                gridBagConstraints.gridy = i;
                panel.add(new JLabel(labelPrefix + (i + 1)), gridBagConstraints);
                gridBagConstraints.insets = textFieldInsets;
                gridBagConstraints.gridx = 2;
                textField = new JTextField(22);
                panel.add(textField, gridBagConstraints);
                textField.addFocusListener(autoScrollFocusHandler);
            return panel;
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    JFrame frame = new JFrame("Test for Java 6 with auto-scrolling");
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.add(new TabbedPaneAutoScrollTest());
                    frame.setSize(400, 300);
                    frame.setVisible(true);
    * Crude but simple example for auto-scrolling to focused components.
    * Note: We don't actually use FocusListeners for this feature,
    *       but this is short enough to demonstrate how it behaves.
    class AutoScrollFocusHandler extends FocusAdapter {
        private JViewport viewport;
        private JComponent view;
        public void setScrollPane(JScrollPane scrollPane) {
            viewport = scrollPane.getViewport();
            view = (JComponent) viewport.getView();
        @Override
        public void focusGained(FocusEvent event) {
            Component component = (Component) event.getSource();
            view.scrollRectToVisible(SwingUtilities.convertRectangle(component.getParent(),
                    component.getBounds(), view));
    Now, while the focus is still within the tab contents, try to switch to any other tab (e.g. by clicking on the tab headers, or by using the mnemonic keys 'ALT + 1' to 'ALT + 4')...
    ... then you'll notice the following usability issue:
    1) JRE 1.6 causes the focus to transfer to the JButton (which is outside of the tabs entirely) first; then
    2) In response to the JButton gaining focus, the 'auto-scrolling' feature scrolls down to the bottom of the form, to show the JButton. At this point, the tab headers are hidden from view since there are many child components; then
    3) JRE 1.6 transfers the focus to the tab contents; then
    4) The 'auto-scrolling' feature scrolls up to the selected tab's contents, but the tab header itself is still hidden from view (as a side effect of the behavior above); then
    5) Users are forced to manually scroll up to see the tab headers whenever they are just switching between tabs.
    In short, the tab headers will be hidden when users switch tabs, due to the Java 6 behavior posted above.
    That is why it is important for me to prevent the behavior in my first post above (so that it won't cause usability issues when we apply the 'auto-scrolling' feature to our forms).
    Best Regards,
    James

  • Deactivate Quality Notification During Defect Recording

    Hi,
    How will I deactivate the Quality Notification Tabs during Defect Recording? Because it is showing a red traffic light which user dont want to see and mis understood that there is something wrong.
    Thank you,
    Raymond

    Hi
    What you can do is remove the creation of automatic notification in the background.
    QCC3->inspection lot creation>Maintain Inspection type->select inspec type--->remove defualt " notification type".
    This will neither create notification nor give pop-up.
    Sujit

  • Data Quality tab for migration isn't working as expected.

    I was doing a test migration from DB2 (9.7) database to Oracle 11g using SQL Developer Version 3.2.20.09 Build MAIN-09.87. I found that the Data Quality tab for record count comparison from migration project wasn't working as expected.
    It’s not showing the record count from source database. It is showing following error in logging page after every refresh. It is happening because tool is populating SOURCENAME as "DB2"."SCHEMANAME"."TABLENAME" whereas the SOURCENAME should be consist of schema name and table name only. I have gone through the MD_META package and Database views, which are written for repository and found that its appending catalog name in case of source database is DB2.
    Is this a known issue? Do we have fix available? I think we need a change in QUOTE function of MD_META package and DB views. Please suggest.
    SEVERE     1377     2     oracle.dbtools.db.DBUtil     Warning, unhandled exception: DB2 SQL error: SQLCODE: -204, SQLSTATE: 42704, SQLERRMC: DB2.CDSWEB.PRODUCTLICTYPE

    Hello,
    Is this a known issue?
    Yes, it is a known issue. Bug 11778359: DB2:RUN DATA QUALITY REPORT GET UNHANDLED EXCEPTION: DB2 SQL ERROR
    The bug is unpublished so you can't see it in My Oracle Support, I just mentioned it for reference.
    Do we have fix available?Not yet. A fix shall be available in a future version of SQL Developer. Don't ask me in which one and when, I have no idea.
    I think we need a change in QUOTE function of MD_META package and DB viewsI don't agree. I don't know what might break if you manipulate that package.
    Sorry that I have no better answer.
    Best regards
    Wolfgang

  • Auto populate of vendor in partner Tab during Goods issue- Batch management

    Dear All,
    I there a possibility of populating the Vendor (in partner tab) during goods issue (MVT 601,201, 240 etc).
    Provided the material is batch managed.
    Thanks and Best Regards
    W.Raghuram

    What I feel is that u have to maintain the Batch Characteristics then it is quite possible.
    In std In Partner tab I feel not possible. Not sure other expert may guide you.
    Biswajit

  • How to consider sample qty of raw material's quality inspection during mrp.

    hi expert.
    i have to consider sample qty of raw material's quality inspection during mrp.
    i am wondering how to implement it.
    is this possible?
    thank you~~!!

    Hi Seung Hyun,
    I think it depends on the sample quantity, whether it is a fixed quantity or it depends to the raw material quantity or requirement from the orders. If it is not fixed, then you can use scrap percentage as suggested by Vivek.
    If it is fixed quantity, then there are several alternatives to follow:
    Include the sample quantity to your safety stock
    Create another material number to distinguish the sample from the original raw material number and include it in the BOM
    Regards,
    Julian

  • HP PSC 1610 lost Paper/Quality tab in Print Options

    Help! The Paper/Quality tab in Print Options menu has disappeared. Everything prints with max ink. The ability to select draft, fast normal or black ink only has disappeared. I suspect this happened after the last OSX update. I now have 10.4.7
    The problem persists with all software applications

    Thanks for the tip. I did receive a long answer from HP to uninstall and reinstall the updated printer drivers from HP's site. They think something got corrupted. I suspect they are right. After doing the whole procedure it now works fine. Thanks for your help.

  • Activate new tab in Purchase requisition

    Hello Folks,
    I am trying add a new tab in purchase requisition on Screen exit MEREQ001. Can anybody tell me where I should go in SPRO and activate my tab?
    Thanks in advance and reward point will be given.
    ZC

    Hi,
    You cannot activate new tab through SPRO.
    You have to goto CMOD > give some project name say <CREATE>, Give some description and press SAVE > select Enhancement assignment > give Enhancement "MEREQ001" and press SAVE .
    Select Components, double click on Screen exit, it will prompt you to create screen 111. Then add required fields in screen.
    Further you will need ABAPer.

  • Reg: Additional header tab strip in MIGO Transaction

    Hi Experts,
    I have added a new header tab strip in MIGO transaction. The tab strip is triggered using the BADI 'MB_MIGO_BADI' (PBO_HEADER method), I populated a selection screen using module pool program through the same BADI. Now i need to update the values in the selection screen fields to the data base table MKPF.  I need a solution for update the screen field values to the data base table MKPF. Whether some other BADI i need to use? if yes how can i pass the screen field values to that BADI.
    Please guide me.
    Thanks
    Vijay.R

    Hi,
    You may also try the exits available with the MIGO transaction. To find exits you can use the fillowing code by giving tranasaction code as input.
    REPORT  zrmexitfinder                               .
    TABLES: modsap, modact, tstc.
    PARAMETERS: input1 LIKE tstc-tcode DEFAULT ' ',
                input2 LIKE modsap-typ DEFAULT ' '.
    DATA: search1(6),
          search2(3),
          search3 LIKE modsap-member.
    DATA : first_row VALUE 'Y'.
    CONCATENATE: '%' input1 '%' INTO search1,
    '%' input2 INTO search2.
    SELECT * FROM tstc WHERE tcode LIKE search1.
      first_row = 'Y'.
      CHECK tstc-pgmna NE space.
      CONCATENATE '%' tstc-pgmna '%' INTO search3.
      SELECT * FROM modsap WHERE typ LIKE search2
      AND member LIKE search3.
        SELECT SINGLE * FROM modact WHERE member = modsap-name.
        IF first_row EQ 'Y'.
          WRITE: /0 tstc-tcode, 6 tstc-pgmna, 16 modsap-name, 32 modsap-typ,
                 45 modsap-member, 70 modact-name.
          first_row = 'N'.
        ELSE.
          WRITE: /16 modsap-name, 32 modsap-typ, 45 modsap-member, 70 modact-name.
        ENDIF.
        CLEAR : modsap, modact.
      ENDSELECT.
      IF sy-subrc NE 0.
        WRITE : /0 tstc-tcode, 6 tstc-pgmna, 30 'No exits found'.
      ENDIF.
      CLEAR tstc.
    ENDSELECT.
    END-OF-SELECTION.
      CLEAR: search1, search2, search3.
    Regards,
    Renjith Michael.

  • How we may by pass quality inspection during PO creation

    Hi Guru,
    How we may by pass quality inspection via selecting document type in the PO. User create dummy PO in multi level marketing indsutry in order to achieve points & awards during month end. Since all the materials subject to quality inspection, material in dummy PO also falls under quality inspection. For your kind information there is no physical movement or GR for this dummy PO. It's just created in the system as I mentioned the purpose the above. I already created seperate document type to diffrentiate this scenario but looking forward how we may by pass quality inspection for this document type. Or is that any t/code which can by pass quality inspection during PO creation. Please advice. Thank you.
    rgds,
    nantha

    Dear Netto,
    As I said before user need to create dummy PO & must do GR in order to get the rewards & bonuses. User do GR in the system but it doesn't involve material movement. My question is how we may by pass the quality inspection for said GR since physically no goods involved.
    Dear JS,
    For your kind information this material subject to quality inspection & it has been set in material master. I tried one more as per your advice. System post this GR to quality inspection eventhough I change to unrestricted use in PO & GR as well before posting maid. Quality Inspection is auto defaulted for said material. Quality inspection is requirement to most of the goods so I can't change that. I'm wondering how we may by pass this just for dummy PO & GR.
    I believe this clarifies your queries. Thank you.
    rgds,
    nantha

  • Steps to activate Business Content

    Hi,
      Plese tell me the steps to activate BI content in SAP NetWeaver 7.0

    Hello,
    Please search the forum before posting the thread, kindly go through the following document for detailed steps....
    http://help.sap.com/saphelp_bw30b/helpdata/en/80/1a66d5e07211d2acb80000e829fbfe/frameset.htm
    Thanks,
    Pavan.

  • What is the shortcut to activate the tab list drop-down?

    I seem to remember I used to use a keyboard shortcut to activate the tab list drop-down, instead of clicking on the downward arrow. Can someone tell me if it still exists and what it is?

    Not that I know of if you mean the "List all tabs" button at the far right end of the Tab bar.
    You can look at this extension to have an Alt+A shortcut.
    *Tabs Menu: https://addons.mozilla.org/firefox/addon/tabs-menu/

Maybe you are looking for

  • Process Order Warning Message while doing the Goods Receipt

    Dear All, While doing the GR against process order via t.code MB31, we are getting a warning message which reads u201CProduction date of bch 110420 (17.06.2011) does not match the prod. date entered (26.08.2011)u201D this happens only if the batch nu

  • HP Spectre 13-1310dx Win 8.1 USB Recovery issue

    Hello! I have been trying to recover my HP Spectre 13-1310dx ultrabook from its original USB Recovery Media 749738-003 (Win 8.1). However each time I am having a error massage which says "Detect some error during PININST_BBV" "Check C:\system.sav\log

  • Resize tabs only when double click on tab name

    I have this code which resizes tab when it's clicked twice no matter where I click on the tab. VBox stackedTitledPanes = createStackedTitledPanes();    ScrollPane scroll = makeScrollable(stackedTitledPanes);    final TabPane tabPane = new TabPane();

  • Short dump in APD (RSANWB)

    Hi, I get following error when trying to change/edit/execute an Analysis Process: Runtime Errors         UNCAUGHT_EXCEPTION Except.                     CX_RSR_X_MESSAGE Information on where terminated     Termination occurred in the ABAP program "SAP

  • 10.4.11 Update bricks 2 iBooks

    i was updating two G4 iBooks. once i restarted, i got a text box saying i could not log into user (user is the name of the main user). i tried logging in to other accounts, and got the same text. These are school computers, on a school network. can s