Regarding no message in content area.

What is happening if someone I know is sending out messages on an I Pad and the receiver gets nothing in the content area?

Hi topmodel...
Welcome to the Support Communities!
I would suggest your friend review the following troubleshooting steps for Messages on their iPad:
iOS: Troubleshooting Messages
http://support.apple.com/kb/ts2755
If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
If the issue occurs with a specific contact or contacts, delete and re-create the contact from the Contacts application. Create a new message to the newly created contact and try again.
Back up and restore your iPhone as new.
If your carrier has recently ported your phone number, the porting process may not be complete. Contact your carrier to confirm that the porting process is complete.
Contact your carrier to confirm that you are provisioned for sending SMS and are in an area with cellular coverage.
Contact your carrier to verify there are no blocks or filters placed on your wireless account preventing you from sending SMS.
I hope this information helps ....
- Judy

Similar Messages

  • URGENT : On clicking back button of IE error message in the content area

    Hi all,
    On clicking of a link in my navigation area KM folders are displayed in the content area via a KM iview. On 1st level navigation in this iView and clicking the explorer back button there is no problem. But if we navigate to inner folders and click on back button I get a warning in the Content Area:
    " Warning: Page has Expired The page you requested was created using information you submitted in a form. This page is no longer available. As a security precaution, Internet Explorer does not automatically resubmit your information for you.
    To resubmit your information and view this Web page, click the Refresh button."
    This is not the case when I navigate through Bread Crumb.
    The isolation method for my iView is Embedded and for my Page is also Embedded.
    Please reply soon.
    Thanks and Regards,
    Sweta.

    I am pretty sure that nothing can be done about this. A Lot of other websites/applications also have this same problem. You try playing with the browser cache settings so that the back button doesn't try and get the page from the cache. You could also try and experiment with the cache-control and expires HTTP headers, to see whether this has any effect.
    Other than this, I am unsure as to whether it can be resolved
    Sorry
    D

  • Page cannot be displayed message ONLY on the content area of the portal

    Hi All,
    I am using Netweaver Portal 7.0 and the portal works fine if logged in as an end user. But when I'm logged in as Administrator and whenever I try to create a portal object (iview or pages etc), I get a page cannot be displayed message ONLY on the content area of the portal. It is happening quite frequently, any clue what is wrong here?
    Thanks for your help
    -Mike

    Hi
    This could  sometimes happen because of  multiple users working on the same content .
    Edited by: chandana kallu on Mar 11, 2008 1:41 PM

  • Permissions differ on "System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Italian.lproj/UIAgent.nib"; should be -rw-r--r-- ; they are drw-r--r-- .

    What:
    Permissions differ on “System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Support/Rem ote Desktop Message.app/Contents/Resources/Italian.lproj/UIAgent.nib”; should be -rw-r--r-- ; they are drw-r--r-- .

    Normal.
    http://support.apple.com/kb/TS1448
    The ARD agent ones vary depending on installation; that one looks like a  language localisation.
    Nothing to worry about. (and it and any others will appear everytime you repair permissions).
    As long as the message 'permissions repair complete' is given, there is no fault.

  • Images present in datagridview not exporting to file only text contents are generating into PDF file..

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M

    Hi Everyone,
       I have created simple Desktop app in that I trying to generate PDF file from Datagridview...when I click on ExportPDf button Pdf file is generation successfully but the issue is in that pdf whatever the images has present in datagridview that images
    are not generation into PDF only the text contents are Present in PDF file.
      Does any one can tell me how to generate the PDF file along with images.
    Here is my code:
      private void btnexportPDF_Click(object sender, EventArgs e)
                int ApplicationNameSize = 15;
                int datesize = 12;
                Document document = null;
                try
                    SaveFileDialog savefiledg = new SaveFileDialog();
                    savefiledg.Filter = "All Files | *.* ";
                    if (savefiledg.ShowDialog() == DialogResult.OK)
                        string path = savefiledg.FileName;
                        document = new Document(PageSize.A4, 3, 3, 10, 5);
                        PdfWriter writer = PdfWriter.GetInstance(document, new FileStream(path + ".pdf", FileMode.Create));
                        document.Open();
                        // Creates a phrase to hold the application name at the left hand side of the header.
                        Phrase phApplicationName = new Phrase("Sri Lakshmi Finance,Hosur-560068", FontFactory.GetFont("Arial", ApplicationNameSize, iTextSharp.text.Font.NORMAL));
                        // Creates a phrase to show the current date at the right hand side of the header.
                        Phrase phDate = new Phrase(DateTime.Now.ToLongDateString(), FontFactory.GetFont("Arial", datesize, iTextSharp.text.Font.NORMAL));
                        document.Add(phApplicationName);
                        document.Add(phDate);
                        iTextSharp.text.Image img = iTextSharp.text.Image.GetInstance("D:\\logo.JPG");
                        document.Add(img);
                        iTextSharp.text.Font font5= iTextSharp.text.FontFactory.GetFont(FontFactory.TIMES_ROMAN, 5);
                        iTextSharp.text.Font font6 = iTextSharp.text.FontFactory.GetFont(FontFactory.HELVETICA_BOLD, 6);
                        //float[] columnDefinitionSize = { 2.5f, 7.0f,6.6f, 8.6f, 6.6f, 5.0f, 4.5f, 7.0f, 6.3f, 7.0f, 3.5f, 6.0f, };
                        PdfPTable table = null;
                        table = new PdfPTable(dataGridView1.Columns.Count);
                        table.WidthPercentage = 100;
                        PdfPCell cell = null;
                        foreach (DataGridViewColumn c in dataGridView1.Columns)
                            cell = new PdfPCell(new Phrase(new Chunk(c.HeaderText,font6)));
                            cell.HorizontalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.VerticalAlignment = PdfPCell.ALIGN_CENTER;
                            cell.BackgroundColor = new iTextSharp.text.BaseColor(240, 240, 240);
                            table.AddCell(cell);
                        if (dataGridView1.Rows.Count > 0)
                            for (int i = 0; i < dataGridView1.Rows.Count; i++)
                                PdfPCell[] objcell = new PdfPCell[dataGridView1.Columns.Count];
                                for (int j = 0; j < dataGridView1.Columns.Count - 0; j++)
                                    cell = new PdfPCell(new Phrase(dataGridView1.Rows[i].Cells[j].Value.ToString(), font5));
                                    cell.HorizontalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.VerticalAlignment = PdfPCell.ALIGN_LEFT;
                                    cell.Padding = PdfPCell.ALIGN_LEFT;
                                    objcell[j] = cell;
                                PdfPRow newrow = new PdfPRow(objcell);
                                table.Rows.Add(newrow);
                        document.Add(table);
                        MessageBox.Show("PDF Generated Successfully");
                        document.Close();
                    else
                        //Error 
                catch (FileLoadException fle)
                    MessageBox.Show(fle.Message);
                    MessageBox.Show("Error in PDF Generation", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
    Runtime Gridview content:
    Generated PDF File:
    Thanks & Regards RAJENDRAN M
    Hello,
    Since this issue is mainly related to iTextSharp which belongs to third-party, I would recommend you consider posting this issue on its support website to get help.
    Maybe the following forum will help.
    http://support.itextpdf.com/forum/26
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Problem with Checking In/Out Items in Content Area

    I've been reading the Portal On-Line help pages in regards to
    checking in/out items. The help states that when an item is
    checked out, the item is locked and a message "Checked out by:
    UserName" is displayed next to the item. When I check out an
    item, I do not see this "Checked out by" message. However, I do
    see the checkout icon. Note - I am doing this through the
    Content Area Navigation page. Is there something that I am
    missing? (I have seen other threads in regards to the
    checkin/checkout icons not displaying when the Content Area is
    published as a portlet. We are having this problem as well.)
    However, the lack of the "checked out" message happens in both
    the Content Area Navigator and the published portlet.
    Also, is there a way to get Portal to automatically generate
    version numbers when a new version of an item is created. I see
    that you can create a unique name or description .... but I'd
    like to have Portal generate the version number for me. This is
    done in the Application component section when you build forms,
    menus, or reports.
    Thank you for any assistance that you can provide.

    The "checked out by" message only appears to other users - you
    won't see it if you are the user who checked out the item.
    The version number is planned for a future release.
    Regards,
    Jerry

  • Document links and Tables in a content area

    Hello,
    1. I'm having problems with text items in a content area. I'm trying to make a link to a document in a text item but I only get a 'Page can not be found'. I know I have to change the httpd.conf file settings but so far I have not been able to set it up correctly. How should the excact line look?
    In this case I whant to put all my documents in a folder tree in the 'portal_home' directory. For instense:MHC(root folder)/HR/employees.doc or MHC/Finance/Strategy.xls
    2. Why is it not possible to make 'invisible tables' in a text item? This way its possible to control the text mutch more and also (as in my case) include pictures within the text. If you want to produce a nice Intranet, the only way with portal (so far) is to make text items, becurse these are the only ones that you can display directly in a folder area and keep the navigation bar to the left. This way the users wont get lost in all the pages and folders.
    The problem is this:I want to use the style I've made on all my folders (this way it's easy to change the apperance of all the folders in just moments) BUT if I put a table in the text item (html code) then suddenly portal takes the default settings of the browser instead!!? So if I have set my browser to Arial 15 this is the text I se instead of the text in my style.
    Please , do anyone have a suggestion?
    I using Portal 3.0.7.6.2 (9iAS 1.0.2) on NT

    I assume you are trying to put an anchor tag in a text item, that points to a document stored elsewhere in the Portal repository.
    Use a direct access URL (search the online help for info on these) to construct the link to the document. You can use a relative URL by leaving out the "http://server.domain:port" part of the URL - e.g. {a href="/pls/portal30/docs/FOLDER/MYROOTFOLDER/MYSUBFOLDER/MyDocument.DOC"} - I'm using {} here instead of <> because real tags get messed up in these forum messages.
    The Portal FAQ explains how to use httpd.conf to define a redirect directive.
    Regards,
    Jerry
    null

  • I own Photoshop CS5 and i get messages that there are updates available, but when I go to download and install them i  get the message "There was an error downloading this update. Please quit and try again later. "  What can I do to resolve this?

    I own Photoshop CS4 and get messages that updates are  available, but when I go to install them I get the following message,
    "There was an error downloading this update, please try again later." I have tried numerous times with no success.  What am I **** wrong?

    Delete all content from following location on your machine and try updating again.
    Win 7 and higher: <os-drive>:\Users\AppData\Local\Adobe\AAMUpdater\1.0\
    Mac OS (User Library): ~/Library/Application Support/Adobe/AAMUpdater/1.0/
    Please refer:
    Access hidden user library files | Mac OS 10.7 and later
    Let me know if it works for you.
    Regards,
    Ashutosh

  • Error message: invalid content type for SOAP: TEXT/HTML; HTTP 403 Forbidd

    Hi All,
    My scenario is Proxy to File
    So in-order to test the scenario i am sending the Data from RWB using TestMessage
    i have given the sender and receiver details.
    and the payload i am passing is
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_QAStatusReport xmlns:ns0="http://XXXX.com/xi/SARERP/IF0100_QAStatusReport/100">
       <RECORD_STRCUTURE>
          <RECORD>
             <INSP_LOT>New for EU</INSP_LOT>
             <MATNR>00000500418</MATNR>
             <SHORT_TEXT> caps SE</SHORT_TEXT>
             <PLANT>0082</PLANT>
             <BATCH>59756</BATCH>
             <VENDOR_BATCH>59756</VENDOR_BATCH>
             <INQUAL_INSP>1940</INQUAL_INSP>
             <SSQUAL_INSP>0</SSQUAL_INSP>
             <VENDOR/>
             <DATELOT_CREA>7/20/2011</DATELOT_CREA>
             <DAYS_QA>26</DAYS_QA>
             <COMMENTS>Pending Import Testing</COMMENTS>
          </RECORD>
       </RECORD_STRCUTURE>
    </ns0:MT_QAStatusReport>
    the error i am facing is
    Error while sending message: invalid content type for SOAP: TEXT/HTML; HTTP 403 Forbidden
    can any one suggest me how to solve the isssue
    Thanks&Regards
    Sai

    I had received similar error , request you to also check following,
    1. while sending the message from IE placed in RWB, just check the URL in the Test Message tab, its possible that this PI is installed just now and its settings are not done correctly. In this ask the owner or the BASIS to change it to correct URL.
    for example it should look something like - http://sdndevdpi001:50100/sap/xi/engine?type=entry

  • Error Creating File Items in Content Area

    Received the following error message when trying to create an item in a content area:
    An unhandled exception has occurred, ORA-01403: no data found.
    I checked in the Apache error_log file and the only messages I see relate to portal30.wwv_add_wizard.edititem and portal30.wwv_additem.additem (had to be described for execution).
    Any suggestions? Thanks

    This is an unusual problem. Please work with Oracle Support to resolve it.
    Regards,
    Jerry
    PortalPM

  • Error Notification message checksum content error in APEX 4.2

    Hi,
    We are Getting "Error Notification message checksum content error" when somebody enters wrong password in one of our installations after upgrade to 4.2
    Installation -- OEL 5.5 --> Oracle 11g --> Apex 4.2 --> Weblogic 10.3.4
    I understood from other threads, that problem is lying somewhere in apex 4.2 new feature (ajax wait count down), because i get below url in browser
    https://<url>/pex/fp=117:101:954676091282&notification_msg=Invalid%20Login%20Credentials%3Cdiv%20id%3D%22apex_login_throttle_div%22%3EPlease%20wait%20%26lt;span%20id%3D%22apex_login_throttle_sec%22%26gt;10%26lt;%2Fspan%26gt;%20seconds%20to%20login%20again.%3C%2Fdiv%3E/7179423A7E6DAB93CBFA46F23FBCF804/
    However i have similar other installations, where i do see the correct error message(Incorrect Login Credentials, Please wait for <n> seconds).
    Also i have seen that on other thread somebody giving solutions for similar error in Apache installation, but i couldn't find any for Weblogic installation.
    Please help me on this.
    Edited by: user9128312 on Dec 17, 2012 6:38 PM

    Hi,
    I just checked this on apex.oracle.com and can see both the 'Error Handling' 'sub tab' and the relevant region on the page with attributes for 'In-Line Error Notification Text' and 'Error Handling Function'. This is on the 'Edit Page' page in the builder (4000:4301). Is this the page you are on and are you still not able to see this?
    Regards,
    Anthony

  • How to display search results in content area

    Hi
                 How can I display search results in the content area as seen in sdn.
    Thanks in advance.

    Hi,
    http://help.sap.com/saphelp_nw70/helpdata/en/cc/f4e77ddef1244380b06fee5f8b892a/frameset.htm you find the relevant guidelines.
    You can filter the PCD object setting the Search Layout Set of your Searc Iview.
    In System Admin > System Configuration > Content Management > User Interface > Settings > Layout Set and duplicate the "SearchResultLayoutSet" layout set.
    Then you have to duplicate its Collection Renderer "StandardSearchResultRenderer".
    In its property "Resource Types to be Filtered" set as value "-http://sap.com/xmlns/pcd/app/iview".
    Then assign the new Collection Renderer to the new Layout Set and that's it!
    Now if yuor Search Iview uses this new Layout Set, when you search a PCD object the iviews will not be shown!
    (or)
    In the entry "Predefined Properties" of the search options set, you will need to enter "resourcetype(value=http://sap.com/xmlns/pcd/app/page/default)" if you want the search to be limited to resources defined as pages. Leave out /default if you dont want the end user to be able to change the filter.
    If you want the parameter reflected in the URL, you can find information about how to do it here: /message/280371#280371 [original link is broken]
    Check and try either ways.
    Regards,
    Ponneswari A.

  • Search-Mailbox for Message Header Content in Management Shell

    Can I use the search-mailbox command to search for message header content?
    The reason I ask is because I need to search for any emails that came in to an email alias address.
    I am searching a journaling mailbox.
    Normally, I would do soemthing like...
    Search-Mailbox -Identity "journalbox" -SearchQuery '"To: [email protected]"' -TargetMailbox "exportbox" -TargetFolder "exported_messages"
    The problem is, because I'm looking to find the emails coming to [email protected], when the messages are journaled they appear as "To: [email protected]" in the journaled envelop message.
    In this scenario if I could simply search header content for the email ([email protected]) that would accomplish what I need.

    Hi,
    We can use the Search-Mailbox cmdlet to search messages in a specified mailbox and perform any of the following tasks:
    Copy messages to a specified target mailbox.
    Delete messages from the source mailbox.
    Copy messages from the source mailbox and delete them from the target mailbox.
    Perform single item recovery to recover items from a user's Recoverable Items folder.
    Clean up the Recoverable Items folder for a mailbox when it has reached the Recoverable Items hard quota.
    To search for message header content, we can use Get-MessageTrackingLog cmdlet.
    Here is an article for reference:
    http://exchangeserverpro.com/exchange-2010-message-tracking-log-search-powershell/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety,
    or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Best Regards.

  • XMII content area not opening after Netweaver patch update.

    Hi all,
    Recently we upgrade Netweaver patches [few] from 7.3 SP7 to 7.3 SP9, after the patch update XMII is not show main content area, Header and links in the left panel are displayed but the main content area is blank.
    Error Trace:
    #2.0 #2014 07 14 13:32:16:540#+0300#Error#com.sap.xmii.Illuminator.gui.homepage.HomePageBuilder#
    ##sap.com/xapps~xmii~ear#C0000A365209024C00000001000031D8#111421450000000004#sap.com/xapps~xmii~ear#com.sap.xmii.Illuminator.gui.homepage.HomePageBuilder#96221#353##1FCB79F10B4211E4BC70000006A4280A#f37849690b4111e4afb7000006a4280a#f37849690b4111e4afb7000006a4280a#0#Thread[HTTP Worker [@2100786422],5,Dedicated_Application_Thread]#Plain##
    Error transfering attributes org.w3c.dom.DOMException: INVALID_CHARACTER_ERR: An invalid or illegal XML character is specified. #
    #2.0 #2014 07 14 13:32:31:063#+0300#Error#com.sap.xapps.mpm.interceptors.AuthorizationChecker#
    #NONE#sap.com/xapps~mpm~ear#C0000A365209024D00000017000031D8#111421450000000004#sap.com/xapps~mpm~ear#com.sap.xapps.mpm.interceptors.AuthorizationChecker#96221#353#JTA Transaction : 57060#1FCB79F10B4211E4BC70000006A4280A#204e5c880b4211e4b3cb000006a4280a#204e5c880b4211e4b3cb000006a4280a#0#Thread[HTTP Worker [@15878578],5,Dedicated_Application_Thread]#Plain##
    com.sap.xapps.oee.ejb.exception.OEELocalizedException: User 96221 does not have authorization to execute this service; user is trying to perform action read#
    #2.0 #2014 07 14 13:32:31:063#+0300#Error#com.sap.xapps.mpm.interceptors.ExceptionHandlerInterceptor#
    #NONE#sap.com/xapps~mpm~ear#C0000A365209024D00000019000031D8#111421450000000004#sap.com/xapps~mpm~ear#com.sap.xapps.mpm.interceptors.ExceptionHandlerInterceptor#96221#353#JTA Transaction : 57060#1FCB79F10B4211E4BC70000006A4280A#204e5c880b4211e4b3cb000006a4280a#204e5c880b4211e4b3cb000006a4280a#0#Thread[HTTP Worker [@15878578],5,Dedicated_Application_Thread]#Plain##
    com.sap.xapps.oee.ejb.exception.OEELocalizedException: User <USER_ID>does not have authorization to execute this service; user is trying to perform action read#
    #2.0 #2014 07 14 13:32:31:079#+0300#Error#com.sap.tc.webdynpro.model.ejb.model#
    #BC-JAS-EJB#tc~cm~ejb~api#C0000A365209024D0000001B000031D8#111421450000000004#sap.com/xapps~mpm~ui#com.sap.tc.webdynpro.model.ejb.model#96221#353##1FCB79F10B4211E4BC70000006A4280A#204e5c880b4211e4b3cb000006a4280a#204e5c880b4211e4b3cb000006a4280a#0#Thread[HTTP Worker [@15878578],5,Dedicated_Application_Thread]#Plain##
    execute
    Component and version:
    Component
    Version
    ADSSAP
    1000.7.30.0.0.20101020230400
    AJAX-RUNTIME
    1000.7.30.9.19.20140618151600
    BASETABLES
    1000.7.30.9.1.20140217143400
    BI-WDALV
    1000.7.30.7.2.20120925175200
    CFG_ZA
    1000.7.30.7.1.20120710234700
    CFG_ZA_CE
    1000.7.30.7.0.20120312160300
    CORE-TOOLS
    1000.7.30.9.15.20140609162300
    DI_CBS
    1000.7.30.9.0.20130217111100
    DI_CLIENTS
    1000.7.30.7.2.20120808174400
    DI_CMS
    1000.7.30.9.0.20130217111100
    DI_DTR
    1000.7.30.9.1.20130429184500
    ENGFACADE
    1000.7.30.9.3.20130731225200
    ENGINEAPI
    1000.7.30.9.13.20140514195200
    EP-BASIS-API
    1000.7.30.9.3.20131203022700
    ESI-UI
    1000.7.30.7.1.20120419061400
    ESP_FRAMEWORK
    1000.7.30.7.3.20121022202400
    ESREG-BASIC
    1000.7.30.7.2.20130915212500
    ESREG-SERVICES
    1000.7.30.7.0.20120312224700
    FRAMEWORK
    1000.7.30.9.6.20140312211900
    FRAMEWORK-EXT
    1000.7.30.9.11.20140510042200
    J2EE-APPS
    1000.7.30.9.8.20140513152200
    J2EE-FRMW
    1000.7.30.9.20.20140702194800
    JSPM
    1000.7.30.7.1.20131029203300
    LM-CORE
    1000.7.30.9.10.20140702194800
    LM-CTS
    1000.7.30.7.5.20121018185000
    LM-CTS-UI
    1000.7.30.7.0.20120312160500
    LM-MODEL-BASE
    1000.7.30.7.0.20120312170300
    LM-MODEL-NW
    1000.7.30.7.0.20120312170300
    LM-SLD
    1000.7.30.7.3.20130822180000
    LMCFG
    1000.7.30.7.7.20130211235800
    LMCTC
    1000.7.30.7.5.20120823193700
    LMNWABASICAPPS
    1000.7.30.9.7.20140528172400
    LMNWABASICCOMP
    1000.7.30.7.1.20120501171100
    LMNWABASICMBEAN
    1000.7.30.7.2.20130509173200
    LMNWACDP
    1000.7.30.7.0.20120312170300
    LMNWATOOLS
    1000.7.30.7.0.20120313005500
    LMNWAUIFRMRK
    1000.7.30.7.3.20131028182100
    MESSAGING
    1000.7.30.9.31.20140616191000
    MII_ADMIN
    1000.14.0.4.2.20140310045511
    ODATA-CXF-EXT
    1000.7.30.8.3.20130619172700
    OEE_MII
    1000.1.0.2.0.20140110094411
    SAP-XI3RDPARTY
    1000.7.30.0.0.20101021060500
    SAPMECORE
    1000.6.1.4.14.201405091456
    SAPMECTC
    1000.6.1.4.2.20140513105149
    SAPMEINT
    1000.6.1.4.9.20140513105113
    SAPMEINTCTC
    1000.6.1.4.2.20140411083601
    SAPMELEGACY
    1000.6.1.4.14.201405091456
    SAP_BUILDT
    1000.7.30.9.0.20130217101400
    SECURITY-EXT
    1000.7.30.7.5.20121008182800
    SERVERCORE
    1000.7.30.9.31.20140702194800
    SOAMONBASIC
    1000.7.30.9.1.20130626201800
    SR-UI
    1000.7.30.7.0.20120313005400
    UDDI
    1000.7.30.7.0.20120312224700
    UISAPUI5_JAVA
    1000.7.30.9.19.20140130141100
    UMEADMIN
    1000.7.30.7.7.20130515172000
    WD-ADOBE
    1000.7.30.7.0.20120312164400
    WD-APPS
    1000.7.30.9.0.20130217123000
    WD-RUNTIME
    1000.7.30.9.22.20140609172000
    WD-RUNTIME-EXT
    1000.7.30.9.0.20130217123000
    WSRM
    1000.7.30.9.0.20130217140200
    XMII
    1000.14.0.4.3.20140314030733
    Are we missing patch updates?
    Has anyone faced this issue, any help would be highly appreciated.
    Thanks,

    Please see SAP Note 2040655 for this fix.
    Regards, Steve

  • Delete Content Area

    Error: An unexpected error has occurred (WWS-32100) ORA-2292: ORA-02292: integrity constraint (PORTAL30.WWSBR_URL_SITELANG_FK) violated - child record found (WWC-36000)
    Delete the record manual creates this Error:
    table wwsbr_sites
    delete ID 53 Inhalte und Dokumente'
    table wwsbr_sites_languages
    foreign key ID 53 us Inhalte und Dokumente'
    table wwv_settingsets
    foreign key ID 53 Inhalte und Dokumente'
    Delete produces a Trigger Error message:
    reference on package:
    wwpth_api.remove_path_element(
    p_domain => wwpth_api.DOMAIN_WWS,
    p_object_type => wwpth_api.OBJECT_TYPE_WWS_STYLE,
    p_context_id => :old.siteid,
    p_object_id => :old.id);
    It's a bug?
    Best regards
    Dieter
    null

    Ricardo, below is an extract of the code we currently use to delete a user's content area. (Error trapping removed for brevity...)
    - Bill
    -- get the user's Folder ID
    -- (Ricardo: TXTUSERLOGIN is passed in to the function as a VARCHAR2 parameter)
    SELECT ID INTO P_FOLDER_ID
    FROM PORTAL30.WWSBR_ALL_FOLDERS
    WHERE UPPER(NAME) = UPPER(TXTUSERLOGIN);
    -- get the content area's Folder ID
    -- (USERDATA is the root content area where all our User folders are kept)
    SELECT ID INTO P_CONTENT_AREA_ID
    FROM PORTAL30.WWSBR_ALL_CONTENT_AREAS
    WHERE NAME = 'USERDATA';
    -- Now delete the content area
    IF P_FOLDER_ID IS NOT NULL THEN
    BEGIN
    PORTAL30.wwv_cornerdb.remove(p_language=>'us',
    p_id=>P_FOLDER_ID,
    p_siteid=>P_CONTENT_AREA_ID);
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    NULL;
    END IF;
    COMMIT;

Maybe you are looking for

  • Strange network prob setting up WRK54G

    Hi, I have spent an afternoon setting up a WRK54G (not WRT) router and have come across a very strange networking problem. I am using the router to setup a small network in the office off one of the LAN points. I connected the router up and set it up

  • Issue with Bank details infotype,

    Dear Experts, I have an issue from the client. An employee was hired as trainee in last year on 1year trainee period. In month of March his trainee period was over and separation action was performed on same. He was hired in system as permanent emplo

  • Asset Value reduce

    hi friends, I have purchased an asset last and year for 10,000 and ran the dep for 1,000 Now I realized that the acquisition value is 9,000. so this year i want to reduced the value to 8,000. Can i reduce with using ABMA/ABAA Advise me. Best Regards,

  • MM doubt

    what is the difference between component and sub-assembly in MM ? my requirement in report is, if component entered then get sub-assemblies using the FM CS_*BOM_EXPLOSION. if it is in other way, ie. entering sub-assebly in the screen it should not pi

  • I bought win 8.1 to unstall, but my dvd player/disk wasn't recognized. I then copied it to flash drive in the ISO mode and it still wouldn't work  ...any help?

    I bought win 8.1 to unstall, but my dvd player/disk wasn't recognized. I then copied it to flash drive in the ISO mode and it still wouldn't work  ...any help?