Setting JScrollPane scrollbar status

JScrollPane scrollR = new JScrollPane(textareavariable);
scrollR.setVerticalScrollBarPolicyJScrollPane.
VERTICAL_SCROLLBAR_ALWAYS};
I need toset the vertical scrollbar at the bottom of the textarea so that the user will always to view the last record.
How do I do that?
Thank you!

Is what you said what you really want? You've described a scrollbar that the user can't manipulate - taken literally the user will never be able to see anything except that bottom records.
As a guess, you want the user to see the bottom record sometimes, but also to be able to scroll othertimes, no? When do you want the user to see the bottom record?

Similar Messages

  • Setting the scrollbar to be by default in the middle of the scrollpane

    I was wondering if there was a way to set the JScrollBar to be at the middle of the scrollpane by default. I have a handle to the scrollbar and can determine the min and max of it's range, but I don't see a place to set the scrollbar position.

    This is a runnable stand-alone app.
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.Dimension;
    import java.awt.FlowLayout;
    import java.awt.Component;
    import java.awt.Color;
    import java.awt.Font;
    import javax.swing.*;
    import javax.swing.table.*;
    import java.util.*;
    public class MarketBook extends JFrame implements WindowListener,
                                                      ActionListener{
         protected final int ROW_HEIGHT = 15;
         protected final int NUM_ROW = 14;
         protected final int PREF_WIDTH = 200;
         protected final int PREF_HEIGHT = 150;
         protected final int BID_COL = 1;
         protected final int OFFER_COL = 2;
         private String instrument;
         private String mkbkID;
         private String[] instArray = {"Item1", "Item2", "Item3"};
         private String[] colNames = {"Qty", "Bid", "Offer", "Qty"};
         private Vector<String> instrumentsList = new Vector<String>();
         private DefaultTableModel dm = new DefaultTableModel(colNames, NUM_ROW);
         private DefaultTableCellRenderer renderer = new DefaultTableCellRenderer();
         JPanel contentPane = new JPanel();
         JPanel topPanel = new JPanel();
         JComboBox instList = new JComboBox(instArray);
         JTable bidOffer = new JTable(){
              public boolean isCellEditable(int row, int column){
                        return false;
         JScrollPane bidOfferScroll = new JScrollPane(bidOffer);
         public MarketBook(String _mkbkID, Vector<String> _instList){
              super(_instList.firstElement());
              this.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
              this.mkbkID = _mkbkID;
              this.instrumentsList = _instList;
              this.instrument = instrumentsList.firstElement();
              buildGUI();
         private void buildGUI(){
              TableColumn tc = null;
              contentPane.setLayout(new BoxLayout(contentPane, BoxLayout.Y_AXIS));
              bidOfferScroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
              bidOfferScroll.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
              bidOfferScroll.setPreferredSize(new Dimension(PREF_WIDTH,PREF_HEIGHT));
              System.err.println("Max: " + bidOfferScroll.getVerticalScrollBar().getMaximum());
              System.err.println("Min: " + bidOfferScroll.getVerticalScrollBar().getMinimum());
              System.err.println("Extent: " + bidOfferScroll.getVerticalScrollBar().getVisibleAmount());
              System.err.println("Value: " + bidOfferScroll.getVerticalScrollBar().getValue());
              bidOfferScroll.getVerticalScrollBar().setValueIsAdjusting(true);
              bidOfferScroll.getVerticalScrollBar().setValue(50);
              System.err.println("Value: " + bidOfferScroll.getVerticalScrollBar().getValue());
              System.err.println("Model: " + bidOfferScroll.getVerticalScrollBar().getModel());          
                        bidOfferScroll.getVerticalScrollBar().getMaximum()-
                        bidOfferScroll.getVerticalScrollBar().getMinimum())/2);*/
              topPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
              topPanel.add(instList);
              instList.addActionListener(this);
              bidOffer.getTableHeader().setFont(new Font(null, Font.BOLD, 12));
              bidOffer.setAlignmentX(JTable.CENTER_ALIGNMENT);
              bidOffer.setModel(dm);
              bidOffer.getColumnModel().getColumn(0).setPreferredWidth(40);
              bidOffer.getColumnModel().getColumn(1).setPreferredWidth(60);
              bidOffer.getColumnModel().getColumn(2).setPreferredWidth(60);
              bidOffer.getColumnModel().getColumn(3).setPreferredWidth(40);               
              bidOffer.setRowHeight(ROW_HEIGHT);
              // Set table renderer
              for(int i = 0; i < bidOffer.getColumnCount(); i++){
                   tc = bidOffer.getColumnModel().getColumn(i);
                   tc.setCellRenderer(new CustomTableCellRenderer());
              contentPane.add(topPanel);
              contentPane.add(bidOfferScroll);
              JFrame.setDefaultLookAndFeelDecorated(true);
              this.setContentPane(contentPane);
              this.pack();
              this.setVisible(true);
         public void actionPerformed (ActionEvent e){
              JComboBox cb = (JComboBox)e.getSource();
              String selectedItem = (String)cb.getSelectedItem();
              updateSelectedInst(selectedItem);
         public void windowActivated(WindowEvent arg0) {
              // TODO Auto-generated method stub
         public void windowClosed(WindowEvent arg0) {
              // TODO Auto-generated method stub
         public void windowClosing(WindowEvent arg0) {
              // TODO Auto-generated method stub
              this.setVisible(false);
              this.dispose();
              System.exit(0);
         public void windowDeactivated(WindowEvent e) {
              // TODO Auto-generated method stub
         public void windowDeiconified(WindowEvent e) {
              // TODO Auto-generated method stub
         public void windowIconified(WindowEvent e) {
              // TODO Auto-generated method stub
         public void windowOpened(WindowEvent e) {
              // TODO Auto-generated method stub
         // Perform all updates necessary when new instrument is selected
         private void updateSelectedInst(String inst){
              this.setTitle(inst);
         class CustomTableCellRenderer extends DefaultTableCellRenderer{
              public Component getTableCellRendererComponent(JTable table,
                        Object value, boolean isSelected, boolean hasFocus,
                        int row, int column){
                   Component cell = super.getTableCellRendererComponent(table,
                                       value, isSelected, hasFocus, row, column);
                   if (column == BID_COL){
                        cell.setBackground(Color.red);
                   else if (column == OFFER_COL){
                        cell.setBackground(Color.blue);
                   //cell.setFont(f)
                   return cell;
         public static void main(String args[]){
              Vector<String> tempVector = new Vector<String>();
              tempVector.add("item1");
              tempVector.add("item2");
              MarketBook marketBook1 = new MarketBook("mkbk1", tempVector);
    }

  • Workflow Error Message: System Account - The Workflow could not set Content Approval Status

    This is the first time I try an approval workflow. I am using a template in MS Word and assigned an approval workflow to it. The approval workflow is only going to one person in this case.
    When I start the work flow the following 3 error messages show up:
    Workflow Error Message: System Account - The Workflow could not set Content Approval Status. Enable content moderation for this list and run the workflow again.
    Workflow Error Message: System Account - The e-mail message cannot be sent. Make sure the e-mail has a valid recipient.
    Workflow Error Message: System Account - The e-mail message cannot be sent. Make sure the outgoing e-mail settings for the server are configured correctly.
    Thank you for your kind guidance.

    Hi,
    For the first error: Did you set Content Approval in the workflow?  If so, see if you have it in the versioning settings of the list settings.
    For the second error: double check your recipient is set up as being valid.  Did you type in the email address or is it referring to a people picker field?  also, make sure that in the workflow for the email that you actually populated it in the
    To: field.
    for the third error: I suspect that either your farm is not configured for email.  Or, this error is a knock on from the second error.  If you get the second error rectified it may clear this error.  If not then double check the email settings
    for your farm.
    Johnathan Lightfoot

  • How to restrict manual setting of User Status?

    Hi,
    I have created an User Profile where a particular User Status is "set" based on the Business Transaction "Release".
    However, we are also allowed to set this User Status manually without carrying out the Business Transaction "Release".
    How do I restrict manual setting of those User Statuses that are "set" based on a Business Transaction?
    Raj

    Pete,
    I did read that post. But it is about providing authorisation to set a Status for an User.
    The case I am referring is, an User Status is auto set by a Bus. Trans Release. But I am also permitted to set the status transition manually. This way, Users tend to skip Releasing the Service Order. This is affecting upstream processes.
    Is there a way where we can restrict manual setting of User Statuses that have to be normally auto set by Bus. Transactions?
    Raj

  • Set sign-in status toggles to disabled on its own?

    Hello! I have a user whos "Set sign-in status" in OWA keeps toggling to disabled on a daily basis.
    MS support says this is managed by the AD settings for the user. I've checked ever setting and compared them to users who are not experiencing the issue. Does anyone know
    what attribute controls this setting?
    Thank you!

    Hi Chris,
    I want to double confirm the Exchange server version.
    If you are using Office 365, I find this KB for your reference:
    "It looks like your account has been blocked" error when a user tries to sign in to Office 365
    https://support2.microsoft.com/kb/2742372?wa=wsignin1.0
    Since Exchange Online is different from Exchange On-Premises, I suggest ask Exchange Online Froum for help so that you can get more professional suggestions, if you are using Exchange Online. For your convenience:
    http://social.technet.microsoft.com/Forums/msonline/en-US/home?forum=onlineservicesexchange
    Thanks
    Mavis Huang
    TechNet Community Support

  • SP2010 Designer workflow "Set Content Approval Status" does not work

    Hello
    I'm having a problem with a workflow for one of my clients.It is a SharePoint 2010 environment and I can only use SharePoint 2010 designer (no visual studio).
    We have an approval workflow in place, which works great. After the document approval workflow has does its thing, a new workflow can be launged by specific users (they have writing rights and can approve content). The workflow is used to set the release
    date of the document. This can only be determined after content approval.
    However, when the release date is set, the document approval status is changed to concept. This is of course to be expected, as we changed to document metadata. That is why I wanted to add the action "Set content approval" to this workflow. I cannot
    seem to get this action to work. Right now the workflow does the following:
    check out the document (check out is obligatory in our library)
    set the release date field to the released date parameter (defined when starting the workflow)
    check in the document
    set content approval to approved.
    The release date gets set to the parameter value, but the document is not checked in and the content approval status is not set. SharePoint produces the following error message (translated from Dutch): "An error occured. Cannot edit the item, possibly
    because one or more columns require another type of content. Unknown error."
    Guided by other posts online I gathered that this might be because the actions checkin and set content approval occur to close together. I tried letting the workflow pause for the duration of 1 minute after checking in, but this pauses the workflow indefinitely.
    I then tried 5 minutes (as this is the time standard set by SP2010 designer) but this also resulted in indefinite pausing.
    Posts online lead me to believe that I'm not the only suffering from this problem, but as of yet, I haven't been able to find a solution that works for me. Hopefully someone can help me.

    Hi,
    According to your post, my understanding is that the "Set Content Approval Status" didn’t work in SharePoint 2010 Designer workflow.
    I try to reproduce the issue and the result is the same as yours.
    If I only check out and check in the item, the workflow works well.
    However, once I set Content Approval Status after checking in the item, the workflow get error.
    As a workaround, I recommend to use two workflow to achieve what you want.
    First, create the first workflow, and allow the workflow to be manually started.
    Then, create the second workflow, and
    start the workflow automatically when an item is changed.
    When you start the first workflow, the document will be set value of the release date. And then the second workflow will be started automatically to set the content approval status.
    Thank you for your understanding.
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Can we set "IN PROCESS" Status to more than one User

    Hi,
    As per my client current scenario every work item will be sent to 3 useru2019s (One is the supervisor of the other two users). If any one of the user executes the work item it will automatically call a Ztransaction and displays the screen. When any one of the user executes the workitem, then the workitems will dissappears from rest of the users inboxes; Setting "IN PROCESS" status for the person who executed the workitem. The workitem will be in "IN PROCESS" Status untill the User Press "SAVE" button in the transaction.
    If the person whose executed the workitem (IN PROCESS) status, has gone on unplanned leave; then the supervisor wants to forward the workitem of the current user to other user. How can he forward?
    Is there any option to set "In Process" status to more than one User? [Supervisor and Person who executed the workitem]
    Please provide me any advice to the above requirement.
    Thanks in advance,
    Ajay Kumar

    Can you ask your workflow administrator to forward the workitem to the user you want to be sent it to.
    I tried a small case wherein I had forwarded a workitem to myself and another user.
    As I executed it , it went into status IN process and at the same time it got removed from other users inbox .
    Now I went to T Code SWI1 and forwarded iut to another user say USABC.
    As a result the workitem again went into status "Ready" and into the inbox of the user ABC.
    So , you can try this in your case with the help of your workflow administrator.
    Another way is to create the other user as a substitue of the user who is currently executing the workitem.

  • Set text of status bar problem

    I'm trying to hide the url in the status bar of the links in
    a graphic where I have a mapping situation. I click on the map box
    and select the set text of status bar behavior but it will not work
    while the mouse is over the mapped area. When I move my mouse over
    the mapped area it displays the url and when I move away from it it
    displays the text that I want to have when I mouse over. Any help
    is greatly appreciated. I've including the code below.
    <img src="images/productsimage.gif" alt="products"
    width="750" height="550" border="0" usemap="#Map" />
    <map name="Map" id="Map"><area shape="rect"
    coords="31,60,171,188" href="
    http://www.airtight.net/"
    target="right" alt="airtight" onmouseover="MM_displayStatusMsg('To
    order contact Sales at [email protected]');return
    document.MM_returnValue" />
    <area shape="rect" coords="232,81,499,138" href="
    http://www.blue.com" target="right"
    alt="Blue" onmouseover="MM_displayStatusMsg('To order contact sales
    at [email protected]');return document.MM_returnValue" />

    .oO(SimoneStanich)
    >I'm trying to hide the url in the status bar of the links
    in a graphic where I
    >have a mapping situation.
    Why do you want that? The status bar is part of the browser's
    GUI and of
    absolutely no interest for the website author. Additionally
    recent
    browsers will prevent scripts from manipulating it, so you
    should think
    about it again.
    >I click on the map box and select the set text of
    >status bar behavior but it will not work while the mouse
    is over the mapped
    >area. When I move my mouse over the mapped area it
    displays the url and when I
    >move away from it it displays the text that I want to
    have when I mouse over.
    You want to use the 'title' attribute to show additional text
    on mouse-
    over.
    Micha

  • Troubleshoot-Adapter engine:Error Setting the message status to DLNG failed

    Dear Experts,
    We use SAP RFC- PI-JDBC(MSSQL).  here the Data(message) successfully transfered to mssql table but the status is been set to DLNG failed,  And it finally shown as SYSTEM ERROR.
    QoS required: ExactlyOnce ,  here The Message has got inserted in that particular table and in PI adapter the  status turned to  DLNG faild and the service again tries to send the same message which is not possible becoz the data is set for primary value.
    2010-09-15 09:59:48 Success Message successfully received by messaging system. Profile: XI URL: http://XXXXX:50000/MessagingSystem/receive/AFW/XI Credential (User): YYYY
    2010-09-15 09:59:48 Success Using connection JDBC_http://sap.com/xi/XI/System. Trying to put the message into the receive queue.
    2010-09-15 09:59:48 Success Message successfully put into the queue.
    2010-09-15 09:59:48 Success The message was successfully retrieved from the receive queue.
    2010-09-15 09:59:48 Error Setting the message status to TBDL failed, due to: com.sap.aii.af.ra.ms.api.DeliveryException: Error updating status..
    2010-09-15 09:59:48 Success Delivering to channel: CCR_JDBC_ZZZZZ
    2010-09-15 09:59:48 Success MP: Entering module processor
    2010-09-15 09:59:48 Success MP: Processing local module localejbs/CallSapAdapter
    2010-09-15 09:59:48 Success Receiver JDBC adapter: processing started; QoS required: ExactlyOnce
    2010-09-15 09:59:48 Success JDBC adapter receiver channel CCR_JDBC_ZZZZZ : processing started; party  , service BS_BCP_IMPLOG_ZZZZZ 
    2010-09-15 09:59:49 Success Database request processed successfully
    2010-09-15 09:59:49 Success MP: Leaving module processor
    2010-09-15 09:59:49 Success The message was successfully delivered to the application using connection JDBC_http://sap.com/xi/XI/System.
    2010-09-15 09:59:49 Error Setting the message status to DLNG failed, due to: com.sap.aii.af.ra.ms.api.DeliveryException: Error updating status..
    2010-09-15 10:37:01 Success The message was successfully retrieved from the receive queue.
    2010-09-15 10:37:01 Success The message status set to DLNG.
    2010-09-15 10:37:01 Success Delivering to channel: CCR_JDBC_ZZZZZ
    2010-09-15 10:37:01 Success MP: Entering module processor
    2010-09-15 10:37:01 Success MP: Processing local module localejbs/CallSapAdapter
    2010-09-15 10:37:01 Success Receiver JDBC adapter: processing started; QoS required: ExactlyOnce
    2010-09-15 10:37:01 Success JDBC adapter receiver channel CCR_JDBC_ZZZZZ : processing started; party  , service BS_BCP_IMPLOG_ZZZZZ
    2010-09-15 10:37:01 Error Unable to execute statement for table or stored procedure. 'imp_log' (Structure 'STATEMENT') due to com.microsoft.sqlserver.jdbc.SQLServerException: Violation of PRIMARY KEY constraint 'PK_XXX_log'. Cannot insert duplicate key in object 'dbo.XXX_log'.
    2010-09-15 10:37:01 Error JDBC message processing failed; reason Error processing request in sax parser: Error when executing statement for table/stored proc. 'imp_log' (structure 'STATEMENT'): com.microsoft.sqlserver.jdbc.SQLServerException: Violation of PRIMARY KEY constraint 'PK_XXX_log'. Cannot insert duplicate key in object 'dbo.XXX_log'.
    Thanks in advance for your valuable answer.

    Hi Vinaygam,
    2010-09-15 10:37:01 Error Unable to execute statement for table or stored procedure. 'imp_log' (Structure 'STATEMENT') due to com.microsoft.sqlserver.jdbc.SQLServerException: Violation of PRIMARY KEY constraint 'PK_XXX_log'. Cannot insert duplicate key in object 'dbo.XXX_log'.
    2010-09-15 10:37:01 Error JDBC message processing failed; reason Error processing request in sax parser: Error when executing statement for table/stored proc. 'imp_log' (structure 'STATEMENT'): com.microsoft.sqlserver.jdbc.SQLServerException: Violation of PRIMARY KEY constraint 'PK_XXX_log'. Cannot insert duplicate key in object 'dbo.XXX_log'.
    See above error, It cannot the Duplicate Key in your log table. Duplicate means repeated as a same data.So kindly check once your data.
    IF,I assume your scenario is Synchronous, If you are using any sender JDBC adapter  just check with your Quality of Service and set it to "Exactly once".
    so kindly do it.
    Thank you,
    Sateesh
    Edited by: sateesh kumar .N on Sep 17, 2010 8:17 AM

  • Set user Defined Status in the Shopping Cart

    Hello,
    I am facing problem while Setting user defined Status in the shopping cart. Below are the steps which I have followed.
    1. I have created Status profile via Transaction 'BS02' and also created the Status 'On Hold' with Status number 'Exxxxx'.
    2. Entry of this external status is also created in the table TJ30.
    3. Also I tried assigning this Status profile in Transaction type for "BUS2121".
    After making the above configuration for the new User defined status I have used below function module in my program.
    I am using FM "CRM_STATUS_CHANGE_EXTERN" to set the User defined status in the shopping cart.
      CALL FUNCTION 'CRM_STATUS_CHANGE_EXTERN'
        EXPORTING
          objnr                    = ls_header-guid
          user_status          = lv_stat
        IMPORTING
          stonr                    = lv_stonr
    After this FM I am also using "COMMIT WORK AND WAIT ".
    But still my Status is not updated in the Shopping Cart.
    Expert please suggest if some one has work in this scenario.
    Best Regards,
    Chirag Shah

    Hi Chirag,
    try to initialize Status schema before update.
    CALL FUNCTION 'CRM_STATUS_OBJECT_CREATE'
         EXPORTING
           objnr                        = ls_header-guid
           obtyp                        = 'SCH'
           stsma                        = 'ZHOLD'
         EXCEPTIONS
           obtyp_invalid                = 1
           status_object_already_exists = 2
           stsma_invalid                = 3
           stsma_obtyp_invalid          = 4
           error_ocurred                = 5
           OTHERS                       = 6.
    Regards
    K

  • How to set a user status (complete) when ever system status is set complete

    Experts,
    We have configured status profile and few user status (say open, pre-release, complete) and assigned the status profile to the item category(zxxx).
    The problem we have is if we have a service order that is created with the item (item category zxxx) -- Say the header status is open and the item status is pre-release. Now end user comes and sets the header status to completed - then the item status is still set pre-release. It is not changing to complete as expected.
    Yes,  the Item system status is set to completed but not the user status. How do I configure to set a complete user status when the header and item system status are set to completed.
    Thank you
    Edited by: ram on May 4, 2010 8:51 PM

    I am not sure if this can be "reverse engineered" in Status profile.
    But here is some hint. You can use the BAdI CRM_ORDER_STATUS mehtod AFTER_CHANGE and actually break when the Header status is changed, and set the item status as desired.

  • ABAP Program to set a set the QM Status of a set of REquests to RED

    Hai friends,
         I have an urgent requirement. I need to set the QM status of about 100 requests and delete them from 3 infoproviders. Can anyone help me out with an ABAP program to do it, if it is possible?
    Regards,
    Neha Solanki

    Try modifying entries for tables RSREQDONE, RSMONICTAB whereever necessary.

  • Error ibtsta: (1) set gpib(0), status 0X8100 returned when 0X100 expected

    During install of a GPIB-ENET/100 device and the associated NI-488.2 v1.4 software and running the ibtsta utility (to check for proper software install) I recieve multiple errors the first of which is: (1) set gpib(0), status 0X8100 returned when 0X100 expected

    To: Steven B.,
    I am using "GPIB Getting Started with Your GPIB-ENET/100 and NI-488.2 for HP-UX", guide March 2001 Edition, P/N 322987A-01 to help me with the installation of a GPIB-ENET/100 device on a HP-UX Workstation.
    Our System Information:
    1. We are using HP-UX 10.2
    2. We have a "E154502 24 AWG CMR (UL) VERIFIED CATAGORY 5 PATCH CABLE ALLEN TEL PRODUCTS CSA LL97744 AWM I/II A/B FT4" blue cable connected from a "LINKSYS FAST ETHERNET 10/100 5-PORT NETWORK HUB" port 1 to a "GPIB-ENET/100" device.
    We also have a "HITACHI DATA MASTER CATAGORY 5e -- HCM 4PR/24 AWG (UL) TYPE CM c(UL) -- TYPE FT4 -- (UL) -- VERIFIED TO TIA/EIA -- 568 -- B.2 CAT 5e -- 5/02 (A3394) 180738" green cable connected from the network port on our "STANDARD C3600 HP-UX CONTROLLER SERVER" to the "LINKSYS FAST ETHERNET 10/100 5-PORT NETWORK HUB" port 2.
    3. We have TCP/IP installed on our UNIX controller.
    4. We are using NI-488.2 Version 1.4.
    Also:
    Upon power up the PWR/RDY LED blinks red/yellow rapidly. After approx. 30-60 seconds later the PWR/RDY LED stays constant.
    According to the guide because we are not connected to the network and therefore no DHCP is available, our GPIB-ENET/100 device should automatically go into network configuration mode recognized by the PWR/RDY LED continuing to blink red/yellow rapidly. This however does not happen. We have entered network configuration mode manually by holding down the CFG RESET switch for approx. 3 seconds. After this we run the EthernetConfig utility and we get the following results:
    IP ADDRESS/HOSTNAME ETHERNET ADDRESS SERIAL NUMBER MODEL COMMENT
    (0) *busy* 00:80:2F:0A:30:6B
    When we try to view properties of the device we get the message: No device found.
    We also performed the steps per Chapter 2, page 2-1 installing the software and running the instgpib utility. We followed the instructions that appeared and everything seemed to install fine. After we were having trouble above we decided to check the software installation using the ibtsta utility per 5-1 in the "GPIB Getting Started with Your GPIB-ENET/100 and NI-488.2 for HP-UX" guide. We got several errors of which this one shown is the first:
    Error: (1) set gpib(0), status 0X8100 returned when 0X100 expected. Error ENEB returned.
    Also, I cannot find the UNIX instruction or variable iberr anywhere. Can you tell me how I can find out the value of iberr?
    Thank you,
    Abel Fernandez
    Raytheon EWS

  • Set a User Status for Quality Notifications only if they are "Activated".

    Hello experts:
    I need to be able to set a User Status for Quality Notifications only if they are "Activated".
    When defects are recorded for an inspection lot, a "Defect Notification" is created which can be activated to become a "Quality Notification".  Initially, the only difference between the inactive "Defect Notification" and the active  "Quality Notification" is that  the system status DEFR is active for the "Defect Notification", but is cleared when the notification is activated.
    So, I'm looking for the business process associated with the Activation to use as a trigger for my own user status.
    I checked the business rules for status DEFR and found that the following processes clear this status
      PMM1 -  Postpone Notification
      PMM2 -  Put Notification In Process
      PMM3 -  Assign Order
      PMM6 -  Put Notification In Process Again
    Any Ideas ?

    Perhaps some additional information would help you understand what I need to do.
    For notification type F3, we are recording all defects found in production.
    Most of these are expected defects that result in a minor reduction in yield.
    For this type of defect, we do not activate the notification, and the inspection lot is closed automatically at the end of production.
    However, sometimes defects are observed of an unexpected type or a higher than expected quantity.
    When this happens we manually activate the notification and assign tasks to find and correct the cause.
    It is only for these activated notifications that I want to automatically set a user status, which among other things, will prevent the notification from being closed until some other actions are complete and a different user status is selected.
    The function of the user status currently works exactly as I want, but if it is set as the initial status for all F3 notifications, it is also preventing the un-activated defect notifications from automatically closing.  I therefore want to use the Activation event as the trigger to set my user status.

  • System Status MSPT cannot set a user status

    When creating a user status for PM orders (transaction OIBS) we have a user status WOM (waiting on material). The user status profile is assigned to the PM order Object type. We want the user status WOM to be automatically set when the system status MSPT is active. However, there is no business transaction for "missing parts" or "material shortage", etc. How can I get system status MSPT to set a user status automatically?

    Marc,
    If its not possible by business transaction, then you will need to develop something.
    Its pretty straight forward by utilising user-exit IWO10009 and function module STATUS_CHANGE_EXTERN
    PeteA

Maybe you are looking for

  • Error from XML Schema/JAVA link

    I'm getting the following error from all links on http://ws5.olab.oracle.com/faqdemo/xdkfaq.xsql?pagename=index: Oracle XSQL Servlet Page Processor 9.0.2.0.0C (Beta)XSQL-007: Cannot acquire a database connection to process page. ORA-01033: ORACLE ini

  • First time installation question...

    when doing the installation of FC Studio can i choose to install the media type files (soundtrack pro content, livetype media, motion content) on a secondary internal HD? i use a 74gb Raptor as my boot drive and really don't want to install 30gb on i

  • Install/upgrade issue - xfree86

    Hi, I noticed something when installing/upgrading the xfree86 package... pacman appears to only download a portion (<20%) of the package, then it installs it.  This isn't really a critical issue, since everything seems to work just fine, regardless. 

  • Reuse_alv_list_display - Info in TOP_OF_PAGE

    Hello everybody, I habe an ALV List with group definition. The table looks like: A text1 text11 text111 A text2 text22 text222 B text1 text11 text111 B text2 text22 text222 C text1 text11 text111 C text2 text22 text222 No I split it in groups for the

  • Planned Figures in COPA Reports

    Hi, While we are able to capture the actual figures in the COPA Reports, we desire to key in the planned figures also in the COPA for comparing the actual with plan.. What are the relevant value fields for the same and how do we maintain the characte