Problems with JBO errors displaying when using custom insert VO methods

Hi!
I have a problem I hope I can explain :).
I have a VO that has custom execute and insert methods implemented in application module.
  public void executeWithParamsMyViewG(String asID)
    // find the view
    MyViewImpl loMyViewImpl =
      getMyViewG();
    loMyViewImpl.setNamedWhereClauseParam("IDParm", asID);
    // execute the querry
    loMyViewImpl.executeQuery();
  public void insertRow(String asID)
    MyViewImpl loMyViewImpl =
      getMyViewG();
    // create new row
    Row loRow = loMyViewImpl.createRow();
    // set fields in new row
    loRow.setAttribute("ID", asID);
    loRow.setAttribute("MyAttribute", "A");
    loRow.setAttribute("MyAttribute2",
                       afContext.getProcessScope().get("MyParm"));
    // insert new row
    loMyViewImpl.insertRow(loRow);
  }I have custom error handler with
    public void reportException(DCBindingContainer bc, Exception ex) {
       //Force JboException's reported to the binding layer to avoid
       //printing out the JBO-XXXXX product prefix and code.
      disableAppendCodes(ex);
      super.reportException(bc, ex);
    private void disableAppendCodes(Exception ex) {
      if (ex instanceof JboException) {
        JboException jboEx = (JboException) ex;
       jboEx.setAppendCodes(false);
        Object[] detailExceptions = jboEx.getDetails();
        if ((detailExceptions != null) && (detailExceptions.length > 0)) {
          for (int z = 0, numEx = detailExceptions.length; z < numEx; z++) {
            disableAppendCodes((Exception) detailExceptions[z]);
    }I also have custom phase listener and page lifecycle but without any 'important' methods overridden.
Than I have a jspx with af:processChoiceBar for navigation, Create button binded to insertRow method, commit and rollback buttons and form with input fields. One of them is required, but with validation on server side, not on client side (showRequired instead of required).
My problem is this:
If I add an empty row, leave all the fields blank and try to commit I get required field message, which is OK. But if I use af:processChoiceBar (previous page, next page, select any of the pages), the message is not displayed. The message is displayed after when I try to return to this page. If I debug the exception in reportException method has the code 27024 for DeferredRowValidationException, not the required attribute error which is displayed.
Can anyone help me with this please, I've wasted a lot of time on this now.
Regards!
BB

Hi,
Does anyone know why this would not be working. It's really irritating!

Similar Messages

  • Problem with variables in formulas when using CrystalReportViewer

    Post Author: Aksu
    CA Forum: Formula
    Hi! I have a problem with variables in Crystal Reports formulas, when using CrystalDecisions.Windows.Forms.CrystalReportViewer class from VS2005-project. ReportViewer always gives error:*************Crystal Report Windows Forms ViewerThis field name is not known.Details: errorKindError in File C:\{dir&#93;}\{file}.rpt:Error in formula <mCustomerAttributes>.'Dim result As String'This field name is not known.Details: errorKind ************* Report without variables works fine with Viewer and in Crystal Reports Designer report with variables works also fine. I have tried with both "formula-syntaxes" - basic and crystal. But Viewer always gives error when trying to define new variable.I think the problem might be with CR -versions, because VS-project has formerly been designed to VS2003 and CR9 or 10. Now I'm using VS2005 and CR11. Though I have changed all references to new CrystalDecisions-asseblies (Ver.11.0.3300.0), when I debug the project and checkout the Viewers ReportSources FormatEngine Shows version CR9_2.... I have no idea where it gets this version...***************DEBUG-view when Viewer is created *******************CrystalReportViewer    |_        ReportSourceClassFactoryName ... , Version=11.0.3300.0 , ...    |_            ReportSource            |_                FormatEngine    {CrystalDecisions.CrystalReports.Engine.FormatEngine}                        |_                        ClientVersionHeader    {CrystalDecisions.Shared.ReportServiceVersionHeader}                            |_                            |    version = 920     (int)                            |_                                Static members                                            |_                                        VER_CR9    = 920    (int)**************************************** Could anyone have any answers or tips for this problem? I'd really appreciate it... ---Aksu

    Has anyone been able to answer this question?
    I am having the same problem:
    I am designing a report in Crystal Reports XI Developer that contains parameters, which are passed to a stored procedure and are also used within formulas ( in Crystal Syntax ie. {?FORMAT_ID} ) in the report itself.
    I can run the report successfully in CRXI Developer.  The formulas use the correct values from the parameters entered during execution and everything looks good.
    I then deploy the report to Business Objects Enterprise XI.  I do all of the things necessary to manage the report including setting up the proper database connection information and default parameter values.
    When I run the report using the Crystal Report Viewer, I get the following error message:
    Error in File Forecasting.rpt:
    Error in formula <Report Format>.
    'if (not isNull({?FORMAT_ID} ) ) then
    This field name is not known.
    Details: errorKind
    This happens when I press the "Preview" button in the Manage Object dialog from Crystal or when I run the report using InfoView.
    I have changed the formulas and it doesn't seem to matter what the specific content of the formula is; other than the existence of a parameter reference in the formula.  If I comment out the parameter and replace it with a hard-coded value, it gets through the formula fine.
    Does Business Objects Enterprise XI support crystal reports with parameter references in the formulas?
    Thanks,
    Tim H.
    Edited by: Tim Haley on Nov 25, 2008 11:11 PM
    Edited by: Tim Haley on Nov 25, 2008 11:12 PM

  • [SOLVED] Problems with systemd's journal when using syslog() in C

    Hi,
    I have a problem with journalctl and syslog output within a C program:
    When I use journalctl in follow mode:
      $ journalctl -f
    and I run the folowing program in another terminal
    #include <stdio.h>
    #include <syslog.h>
    int main()
    FILE *pf;
    int i;
    /* logging made in file /var/log/syslog */
    openlog("martins",LOG_CONS,LOG_USER);
    pf = fopen("not_here","r");
    if (!pf)
    syslog(LOG_ERR | LOG_USER,"oops -- %m\n");
    return 0;
    no syslog error message appears in the journal.
    But, when I modify the programm by adding a 'sleep(1);' right before 'return 0;'
    there is a correct error message shown in the journal.
    Is this a bug in systemd? Or do I understand something wrong with systemd's journal?
    I'm actually running
    linux-3.10-12-1-lts
    systemd 207
    with a 32Bit installation
    Thanks for any hints,
    Martin
    Last edited by thesofty (2013-10-01 19:10:13)

    Now, I understand what's going on:
    1) There is an known issue about a race condition in journald when the logging process exits. In this case the message isn't assigned to the user whose process generated the message.
    2) Apparently the group of the journal files have been changed from 'adm' to 'systemd-journal' in Arch Linux around April 2013.
    But still I only have been member of 'adm' as described in the journal tutorial on http://0pointer.de/blog/projects/journalctl.html. So I  can only see syslog messages, which are correctly assigned to my own user account. The messages with the race condition, as mentioned above, have been invisible to me.
    After joining to the new right group again:
      $ sudo usermod -d G  martin systemd-journal
    I also see the syslog messaes just before exiting the process again :-).

  • Problems with a Business Object when using data RAW.

    Hi,
      I've created a Z bapi with parameter tables as
        FILE_BIN like SDOKCNTBIN
    The structure SDOKCNTBIN has one RAW field.
    When I go to SWO1 and implement a new Bapi, the following error occurs:
    "Field SDOKCNTBIN -LINE is too large to be included in container"
    Does anyone knows why when I declare an structure with a field RAW, gives that error?
    Thanks in advance!

    Does this occur when using Immediate Mode?
    Here's a blurb from my ADF Toy Store paper about Batch Mode and immediate mode.
    http://www.oracle.com/technology/products/jdev/collateral/papers/10g/adftoystore/readme.html#batchmode

  • Problem with logic:equal tag when used with bean:write

    Hi All,
    I have a problem with logic:equal.When i tried to use the following piece of code its not working
    <logic:equal name="var in session" value="<bean:write name='var in request'/>">
    Do some thing
    </logic:equal>
    its not working i know we cant use nested tags
    is thr any alternative instead of using a scriplet

    A scriptlet expression is about all you can do.
    <bean:define id="tempVar" name="var in request"/>
    <logic:equal name="var in session" value="<%= tempVar %>">
    ...If you have a JSP2.0 container with EL enabled, then you could use an EL expression instead of the standard <%= expr %>

  • Problem with spaces in filenames when using ODI tools

    Hi everyone,
    has anyone of you ever encountered the following behaviour:
    When using any ODI tool related to file manipulation the tool does not work if the file parameter value contains a blank/space. Example:
    OdiFileDelete "-DIR=c:temp" "-FILE=Test this.txt" "-RECURSE=NO" "-CASESENS=NO" "-NOFILE_ERROR=YES"
    In this case an error will occur saying the file does not exist although it exists in the directory.
    Has anyone a workaround for this?
    Thanks in advance,
    Hauke

    Hi Madha,
    thanks for the prompt answer.
    We decided to rename the files to make the tools work. Definitely not always applicable but in our case it's possible. Any hint why the behaviour is designed like this?
    Regards,
    Hauke

  • Problem with subtitles automatically displaying when they shouldn't

    Hi all,
    I've got a DVD with multiple languages (English, Spanish, and French) and one subtitle stream (English) on the main program of a DVD I am authoring. I would like the DVD to default to the English audio stream and for the subtitles to be in the "off" state". The user can then select via a menu button if the subtitles are to be displayed or not.
    The problem is, on certain (multiple) DVD players, the client is telling me that the subtitles are automatically displaying, regardless of whether or not they have chosen to show them. Of course, none of my test players exhibit this behavior, so it is difficult for me to troubleshoot what the problem might be.
    I have tried setting it to default to a blank subtitle track and have also tried removing the English language designation on the subtitle track (which feel more like workarounds more than actual solutions), but the subtitles are still automatically displaying.
    Any guess as to what is going on? Is this a problem on the client end, or is there scripting I will need to add to ensure consistent results from player to player?

    I was able to solve the subtitle display problem with some simple scripting. For some reason certain DVD players (a fairly high percentage) are ignoring any Set System Stream commands from the DVD.

  • Problem with Imovie : error -50 when exporting

    I have a problem with Imovie, I am trying to export my video but i receive a message: error -50 .
    What should I do ?

    I have a problem with Imovie, I am trying to export my video but i receive a message: error -50 .
    What should I do ?

  • Problems with some web parts when using XSLT

    I have a page on which I have several web parts. Some web parts are custom while others are OOB and only XSLT is applied on them.  
    I am using 2 WFEs with NLB. Problem is when I do iisreset on one of the WFE then the OOB web parts with XSLT start giving error. You know the standard error "corelation ID....bla bla bla". Anyway the error automatically goes away after a 2, 3 minutes.
    So basically if I do iisreset or stop the iis, and then load that page, then all custom web parts load fine except those OOB web parts with XSLT. And then they too start working fine after 2, 3 minutes if I reload page.  
    What could be the reason for that? Looks like some service on which XSLT depends take time to load!? And once that service is loaded then they start working fine?  Or it could be due to distributed cache or something!?

    Hi  Frank,
    Which version of the SharePoint 2010 did you use?
    In June 2011 CU code was added to the DataFormWebPart (which is used to display list data) that if an XSLT transform took longer than 5 seconds, a StackOverflowException was thrown. This was done to avoid
    a potential Denial Of Service attack on SharePoint if crafted XML could be sent that would continually clog up the XSLT, thereby stopping pages from rendering.
    In August 2011 CU the transform "timeout" was reduced from 5 seconds to 1.
    So, any list with XSLT that takes longer than 1 second to parse in an XSLT transform goes *boom*.
    After you perform an IIS reset , the cache of the page was cleared and you encountered the error. Once the page is cached, there is no error.
    You can try to set up XSLT Timeout with the following PS commands:
    $farm = Get-SPFarm
    $farm.XsltTransformTimeOut = 5
    $farm.Update()
    Reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/de-DE/44cfd798-be7a-4436-8786-bd44049e7def/sp2010-column-filter-causing-unable-to-display-web-part-error-and-a-stack-overflow-exception?forum=sharepointgeneralprevious
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Problem with checkbox in JTable when using MyTableModel

    Hi all,
    I have been trawling these message boards for days looking for the answer to my question but have not had any success.
    I am extending AbstractTabel model to create MyTableModel which returns a vector containing the results of a MySql query. One column in this query returns a "0" or "1" which I then store as the boolean value into the vector so that it is rendered as a checkbox on the screen.
    I have also overridden the setValueAt method. THe problem is that when I attempt to check the box in the table, the checkbox isn't actually checking.
    Do I need to implement some sort of listener which picks up the user clicking the box and refresh the model?
    Here is my model code:
    public class MyTableModel extends AbstractTableModel {
        private Vector v = null;
        int listId;
        MyTableModel(int listId){
            this.listId = listId;
            v = new ListItemManagement().getFullList(listId);
       public Class getColumnClass(int c) {
            switch(c) {
                case 6:
                    return Boolean.class;
                default:
                    return Object.class;
        public String getColumnName(int colIndex){
            return ((String[])v.get(0))[colIndex];
        public int getColumnCount() {
            return ((String[])v.get(0)).length;
        public int getRowCount() {
            return (v.size() - 1);
        public Object getValueAt(int rowIndex, int colIndex) {
            return ((Object[])v.get(rowIndex + 1))[colIndex];
        public void setValueAt(Object aValue, int rowIndex, int colIndex) {
            System.out.println("Value: " + String.valueOf(aValue));
            Object row[] = (Object[]) v.elementAt(rowIndex);
            if(colIndex<6){
                row[colIndex] = (String)aValue;
            else{
                row[colIndex] = (Boolean)aValue;
            v.setElementAt(row, rowIndex);
            fireTableCellUpdated(rowIndex, colIndex);
        public boolean isCellEditable(int row, int col) {
            //Note that the data/cell address is constant,
            //no matter where the cell appears onscreen.
            return ! (col < 6);
        }Here is the getFullList function which returns the vector:
                rs = stmt.executeQuery();
                ResultSetMetaData colData = rs.getMetaData();
                int columnCount = colData.getColumnCount();
                String[] columnNames = new String[columnCount];
                for (int i = 0; i < columnCount; i++){
                    columnNames[i] = colData.getColumnName(i + 1);
                Vector v = new Vector();
                v.add(columnNames);
                while (rs.next()){
                    Object[] values = new Object[columnCount];
                    for (int i = 0; i < (columnCount-1); i++){
                        values[i] = rs.getString(i + 1);
                    int sel = rs.getInt("selected");
                    System.out.println(sel);;
                    if(sel==0){
                        values[columnCount-1]=new Boolean(false);
                    else if (sel==1)
                        values[columnCount-1]=new Boolean(true);
                    v.add(values);
                rs.close();
                stmt.close();
                return v;

    Thanks for the replies, much appreciated.
    I've looked at the Swing jtable tutorial and added a TableModelListener and have managed to achieve the desired results but for one thing.
    When I attempt to check the box on the first row of the jTable I get a runtime error:
    Exception in thread "AWT-EventQueue-0" java.lang.ArrayStoreException: java.lang.Boolean
    at project.MyTableModel.setValueAt(MyTableModel.java:65)
    I have been playing around with the setValueAt method and it is in my original post. Here is how it currently looks:
        public void setValueAt(Object aValue, int rowIndex, int colIndex) {
            System.out.println("Value: " + String.valueOf(aValue));
            Object row[] = (Object[]) v.elementAt(rowIndex);
            if(colIndex<6){
                row[colIndex] = (String)aValue;
            else{
                    if(getValueAt(rowIndex,colIndex).toString()=="true"){
                    row[6] = new Boolean(false);
                else{
                    row[6] = new Boolean(true);
            v.setElementAt(row, rowIndex);
            fireTableCellUpdated(rowIndex, colIndex);
        }

  • Problems with cursor and shortcuts when using JNLP services on MAC OS X

    After invoking the JNLP services on a MAC I loose the ability to set the cursor and invoke keyboard shortcuts. On Windows this is not a problem, so I believe it is a bug and I have reported it to Apple. Meanwhile, I would appreciate if someone could help me with finding a work-around. To identify the problem run the following code with Java Web Start (i.e., you need to add the program to a jar and launch it using a JNLP script). You also need to include the javax.jnlp package.
    Observe that the cursor changes to cross-hairs when entering the circle. After invoking the Open file menu item, the cursor does not change any longer. Shortcut key do not work either, but if you open the menu and close it again without selecting any of the menu items, the shortcuts are OK again.
    package bugreport;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.IOException;
    import javax.swing.*;
    import javax.jnlp.*;
    public class Demo2 extends JPanel implements Runnable, MouseMotionListener {
        private int centerX = 100;
        private int centerY = 100;
        private int radius = 50;
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Demo2());
        public void run() {
            int menuMask = Toolkit.getDefaultToolkit().getMenuShortcutKeyMask();
            final JFrame frame = new JFrame("Bug Demo");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setPreferredSize(new Dimension(200, 200));
            addMouseMotionListener(this);
            JMenuBar menuBar = new JMenuBar();
            frame.setJMenuBar(menuBar);
            //File menu
            JMenu fileMenu = new JMenu("File");
            fileMenu.setMnemonic('F');
            menuBar.add(fileMenu);
            //openMenuItem
            JMenuItem openMenuItem = new JMenuItem("Open...");
            openMenuItem.setMnemonic('O');
            openMenuItem.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_O, menuMask));
            openMenuItem.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    openFile();
            fileMenu.add(openMenuItem);
            frame.add(this);
            frame.pack();
            frame.setResizable(false);
            frame.setVisible(true);
        @Override
        public void paintComponent(Graphics g) {
            g.clearRect(0, 0, getWidth(), getHeight());
            g.setColor(Color.BLUE);
            g.fillOval(centerX - radius, centerY - radius, 2 * radius, 2 * radius);
        public void mouseDragged(MouseEvent e) {
        public void mouseMoved(MouseEvent e) {
            int dx = e.getX() - centerX;
            int dy = e.getY() - centerY;
            if (dx * dx + dy * dy < radius * radius) {
                setCursor(Cursor.getPredefinedCursor(Cursor.CROSSHAIR_CURSOR));
            } else {
                setCursor(Cursor.getDefaultCursor());
        private void openFile() {
            FileOpenService fos = null;
            try {
                fos = (FileOpenService) ServiceManager.lookup("javax.jnlp.FileOpenService");
            } catch (UnavailableServiceException ex) {
                JOptionPane.showMessageDialog(this, "Service unavailable", "Open", JOptionPane.ERROR_MESSAGE);
            if (fos != null) {
                try {
                    FileContents fc = fos.openFileDialog(null, null);
                } catch (IOException ex) {
                    JOptionPane.showMessageDialog(this, "Service unavailable", "Open", JOptionPane.ERROR_MESSAGE);
    }Edited by: James_Vagabond on Oct 29, 2009 9:35 AM

    Barbara, Thanks very much taking the time to respond to my posting. Your input and directions were just what I needed.I accessed the print settings in the pull down menu, setup the print options including the color profile for Elements and the Printer to sRGB, and printed my picture. This resolved all the invalid color problems I was having, but I did notice that there was a hint of magenta overall in the picture. I had read an article that said to use Canon Color Matching instead of Color Sync to prevent that but I couldn't make that change in the pull down menu. I tried in the Presets dialog box but that didn't appear to be possible. Should I make that change as well?
    Also, in my travels through Elements 13 I notice under Edit->Color Settings that there were options for No Color Mgmt, Optimize for Screen, for Printing, or ability to chose one or the other (real time I assume). How do those options fit into this scenario?
    Thanks again

  • Problems with new MacBook Pro when using Front Row

    I posted this in the MacBook Pro forum, but someone suggested I post it here, so here goes...
    I just picked up a new 15" MacBook Pro 2.4 last night. I was very excited, as I've wanted one for a while now, but when I tried to watch a dvd in Front Row a few strange things happened that I've never seen anyone post about on this board.
    First, when I selected play from the DVD's menu, Front Row quit. I launched it again and everything seemed fine as the dvd was now playing, but then I noticed that the backlit keyboard would light up and turn off every minute or two. This went on for the whole time I was watching the disc... about a couple of hours... the keys would light up then they'd be unlit and then light up again.
    Finally, while I was watching the dvd the screen went blank... there was still audio, but no picture to go along with it. After I touched the trackpad the video came back. This happened a couple of times.
    I don't think it should matter, but I'll also mention that I was using the MacBook Pro on battery while all this happened.
    So, has anyone else experienced these issues? I tried looking through all the posted topics, but couldn't find anything related to my experience with Front Row. I'm debating on whether I should exchange my MacBook Pro as I may just have a lemon.
    If anyone has any advice/tips I'd greatly appreciate it. Thanks!

    I would be curious to know if the same kinds of things happen when you are using the AC power? It's possible that the ambient light was just at the point where the keyboard backlight would turn on and different parts of the movie would make it just light or just dark enough to turn the backlight on or off...
    -Doug

  • AME crashes with code error 8 when using CUDA CPU mercury accelerated

    I have a Eurocom/Clevo D900C quad extreme system with 8 gig ram and aNVidia 9800M GTX.
    I have an CUDA mercury CPU accelerated system in premiere pro cs5 BUT it works only work in edit mode. Things are good in the timeline, no need to render etc. It crashes when I try and export to the AME. I get a “movie error code 8” then it shuts the whole PP CS5 system down.
    Any suggestions - is it driver (266.58), program PP CS5/AME CS5, card (9800M GTX) or BIOS related?
    lost in kanata (Canada)

    Correct. I had to adapt the GTX 9800M to find it in Premiere Pro CS5. I bought my current machine before Premiere Pro CS5 came out with the CUDA mercury accelerated engine.The new supported cards don't fit with my laptop - ( I go on-site to edit videos for business meetings with government so I need a powerful laptop - hence the D900C).
    To move to the D900F is a couple of grand I don't have at the moment but like the opportunity to encode videos faster - an 18 mintues clip can take some take 5 hours. I appreciate that Adobe can't spend time and money adapting older cards to work with future sofware but I can dream.
    I guess I can be thankful I get some benefits from the mecury engine during the editing phase but will still have to live with the slower encoding. My post was just a hope that someone knew of a workaround that would save me time and in the end some money. Times are tough business-wise and I need to get all I can from equipment before moving up.
    Is it your opionion that what I have is the best it is going to be - it is better than the Quadro 1600M. What card would you suggest that might work but not break the bank - my supplier couldn't find one and his knowledge of PP CS5 not great?
    Thanks in advance for any direction you might offer.

  • Problem with my iPhone 5 when using my bluetooth Nokia CK-7W

    Hi
    My iPhone 4 works fine with my Bluetooth but for some reason when I use the Bluetooth device above with my iPhone 5 whoever I am talking too can only hear me when it is silent at their end. As soon as they make a noise or a dog barks etc it will cut me off for them to speak therfore only allowing a oneway conversation.
    I have reset the Nokia CK-7W, I am on my second phone, I am on my second Sim and have tried to reset the phone back to factory settings and it still happens. Please help me?

    Thanks however it is not a headset it is a built in handsfree unit. I have spoken to my husband while he is using the iPhone 4 through the device and it does not happen then only when my iPhone 5 is connected to the bluetooth. Any more ideas?

  • Legend color not displayed when using custom theme

    Hi all,
    We are facing a strange issue in the MSS team calender chart's legend colors. The first legend item's color appear blank/white in a custom portal theme while the color appear properly on the standard theme. Inside the chart, the color is appearing properly.
    What could be the issue? which property in the theme is connected to the legend?
    Thanks and Regards,
    Syam.

    Hi Sidharth,
    We have not done any modifications to the standard service. Also, If this is the reason, why should it appear for some users and why not for others? For those users using the standard theme, the legend colors are appearing properly.
    Thanks and Regards,
    Shyam.

Maybe you are looking for

  • Currency Translation for Key Figures with Value More Than One Currency

    Hi... I have query which display key figure GL Account Balance. The currency that used for this key figure is USD and IDR. How we want display value based on selection screen? So if we input currency USD, all value that use currency IDR translated to

  • Reset value of text box and still have user input as well.

    Hi, I currently have a PDF form that helps users print of labels depending what is entered into the first page and one of the boxes has an 'Additional Info' box that puts unto 10 characters onto one of the labels. This was made because a customer wan

  • Group Photo Contribution/Sharing

    I just came back from a group trip and am wondering what the best method is for all of us to share photos. I have .Mac and know I can create a gallery that others can upload to, but it doesn't show who uploaded the photo. Is there an iWeb template to

  • [beryl] white screen after libx11/libgl-dri upgrade

    hello archers after upgrading libx11 & libgl-dri this morning i suddenly have the white screen problem in beryl. the cube rotates and the cursor changes when howevering over windows, but the desktop is all white. the only thing that was changed in my

  • Why can't we set up messaging on the Ellipsis 7?

    We added the ellipsis 7 to account, tried to set up messages but it gives error stating the device doesn't have permission to send messages. We have the plan with unlimited shared messaging. How can we remedy this?  MessagingVerizon Ellipsis 7