OAMessageStyledTextBean is not being displayed

Hi All
I have extended the CO class and inheritedthe methods from the processRquest so i trying to get the results from the process request to display a message styled text but it is no appearing on the page:
this is what i have done
package xxper.oracle.apps.xxper.selfservice.absence.webui;
import oracle.apps.fnd.framework.webui.OAPageContext;
import oracle.apps.per.selfservice.absence.webui.AbsenceEntitlementTabCO;
import java.sql.Date;
import java.text.SimpleDateFormat;
import oracle.apps.fnd.framework.OAException;
import oracle.apps.fnd.framework.webui.beans.OAWebBean;
import oracle.apps.fnd.framework.webui.beans.message.OAMessageDateFieldBean;
import oracle.apps.per.selfservice.accruals.components.AccrualBalanceComponent;
import oracle.apps.per.selfservice.common.SSHRParams;
import oracle.jdbc.OracleCallableStatement;
import java.sql.SQLException;
import java.sql.Types;
import oracle.apps.fnd.framework.server.common.OAApplicationModule;
import oracle.apps.fnd.framework.webui.OAWebBeanConstants;
import java.sql.Connection;
import oracle.apps.fnd.framework.webui.beans.message.OAMessageStyledTextBean;
public class extendAbsenceEntitlmentCO extends AbsenceEntitlementTabCO {
private OAApplicationModule appModule;
private OAPageContext pageContext;
public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
super.processRequest(oapagecontext, oawebbean);
*//This logic is from the seeded page*
SSHRParams sshrparams = new SSHRParams(oapagecontext.getRootApplicationModule());
String s = sshrparams.getSelectedPersonId();
String s1 = oapagecontext.getProfile("PER_ACCRUAL_PLAN_ELEMENT_SET");
AccrualBalanceComponent accrualbalancecomponent = new AccrualBalanceComponent(oapagecontext, oawebbean, "HrAccrualRegion", s1, s);
OAWebBean oawebbean1 = oawebbean.findIndexedChildRecursive("HrAccrualRegion");
OAMessageDateFieldBean oamessagedatefieldbean = null;
if(oawebbean1 != null)
oamessagedatefieldbean = (OAMessageDateFieldBean)oawebbean1.findIndexedChildRecursive("HrEffectiveDate");
java.util.Date date = null;
String s2 = null;
if(oamessagedatefieldbean != null)
SimpleDateFormat simpledateformat = new SimpleDateFormat("yyyy-MM-dd");
if(oamessagedatefieldbean.getValue(oapagecontext) != null)
try
date = simpledateformat.parse(oamessagedatefieldbean.getValue(oapagecontext).toString());
catch(Exception exception) { }
if(date == null)
date = oapagecontext.getCurrentDBDate();
if(date != null)
s2 = simpledateformat.format(date);
String s3 = accrualbalancecomponent.getEvaluationFunction();
Date date1 = accrualbalancecomponent.getEvaluationDate();
s3 = s3 != null ? s3 : "HR";
date1 = date1 != null ? date1 : Date.valueOf(s2);
accrualbalancecomponent.setEvaluationDate(date1);
accrualbalancecomponent.setEvaluationFunction(s3);
accrualbalancecomponent.setPersonID(s);
oapagecontext.putParameter("show_accruals", "N");
OAWebBean oawebbean2 = accrualbalancecomponent.renderSSComponent();
if(oawebbean2 != null)
OAWebBean oawebbean3 = oawebbean.findIndexedChildRecursive("HrAccrualRegion");
OAWebBean oawebbean4 = (OAWebBean)oawebbean3.getAttributeValue(OAWebBeanConstants.PARENT);
oawebbean4.replaceIndexedChild(oapagecontext.findChildIndex(oawebbean4, "HrAccrualRegion"), oawebbean2);
*//This is my code added to display the results from the logic in message style text*
int num2 = getLeaveForfeited(s, date1);
OAMessageStyledTextBean bean = (OAMessageStyledTextBean)oapagecontext.getWebBeanFactory().createWebBean     (oapagecontext,OAWebBeanConstants.MESSAGE_STYLED_TEXT_BEAN,null,"Forfeited_Leave");
bean.setText(oapagecontext,Integer.toString(num2) + " days on the " + date1);
bean.setPrompt("You will forfeit: ");
oawebbean.addIndexedChild(bean);
if(accrualbalancecomponent.getaccrualNote() != null)
throw new OAException("PER", accrualbalancecomponent.getaccrualNote(), null, (byte)2, null);
else
return;
public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
super.processFormRequest(oapagecontext, oawebbean);
*//This is the method i added to return function call*
public int getLeaveForfeited(String per, Date date2)
OracleCallableStatement oraclecallablestatement;
oraclecallablestatement = null;
int leave_forfeited = 0;
try
Connection connection = pageContext.getRootApplicationModule().getOADBTransaction().getJdbcConnection();
String s10 = "BEGIN :1 := XXHR_FUNCTIONS_PKG.get_carryover_days(:2 ,:3); END;";
if(connection != null)
oraclecallablestatement = (OracleCallableStatement)connection.prepareCall(s10);
oraclecallablestatement.registerOutParameter(1, Types.INTEGER);
oraclecallablestatement.setString(2, per);
oraclecallablestatement.setDate(3, date2);
oraclecallablestatement.execute();
leave_forfeited = oraclecallablestatement.getInt(1);
catch(SQLException sqlexception9)
throw OAException.wrapperException(sqlexception9);
if(oraclecallablestatement != null)
try
oraclecallablestatement.close();
catch(SQLException sqlexception10)
throw OAException.wrapperException(sqlexception10);
if(oraclecallablestatement != null)
try
oraclecallablestatement.close();
catch(SQLException sqlexception11)
throw OAException.wrapperException(sqlexception11);
return leave_forfeited;
Any help please
Thank U
Kresen
Edited by: user817607 on Oct 2, 2009 10:55 AM

Hi,
1. Can you get any self-made OAMessageStyledTextBean to display on the page using this method? I have used a slight variation on your code in the past. The only fundamental difference is that it does not add the child directly to the webbean parameter, but rather it finds the parent bean first. Also it uses the createWebBean method of the OAControllerImpl class, but this should simply delegate to getWebBeanFactory().createWebBean, which is what you do. My working code ("this" is the controller):
OARowLayoutBean somebean = (OARowLayoutBean)webBean.findChildRecursive("SomeBeanNameRN");
OAMessageStyledTextBean txt1 = (OAMessageStyledTextBean) this.createWebBean(pageContext, OAWebBeanConstants.MESSAGE_STYLED_TEXT_BEAN, null, "XX_TEXT_1");
txt1.setPrompt("some text ");
somebean.addIndexedChild(txt1);
Notice that only setPrompt is used, I don't think that setText has any effect on a OAMessageStyledTextBean.
2. I'm not sure if your callable statement code works. Usually you don't need a connection object but rather a transaction object. Something like this:
OADBTransaction tx = pageContext.getRootApplicationModule().getOADBTransaction();
String anonymousBlock = "begin null; end;";
CallableStatement cs = tx.createCallableStatement(anonymousBlock, 1);
etc...
Regards,
Radu

Similar Messages

  • Excelicon is not being displayed in the alv output

    Hi,
         iam using the standard tool bar, yet the excel icon is not being displayed in alv ouput.and also in the menubar list export the spreadsheet option is gr

    OSS# 1140542?
    or  you may search other.
    Edited by: Amit Gujargoud on Nov 3, 2008 3:10 AM

  • Fieldname in not being displayed in the table maintenance

    Hi Experts,
                     I have created a table maintenance for a custom table.The table contains 10 fields out of which first 3 are key fields.
    on the 3rd key field i have supplied F4 help so as to populate the 4th field automatically based on the selection of 3rd field.
    everything is working fine but last 6 'fieldname' is not being displayed on the column bar.instead of fieldname there is '+' sign on the column. And i have checked in layout(screen) also only first four fields being displayed.
    plz help.
    Thanks n Regards,
    Mukesh

    Hello Mukesh,
    As you know, data element or pre-defined data type will be assigned as field type to the fields in a table. If you are assigning the data element, then the data element has the option to give the field label.
    If you are assigning the data element and the field label is empty, then + sign will come. In other case -  if you assigning the pre-defined data type also, the screeen column header will be shown as + sign.
    In both the above cases, you can change the column header manually in the layout.
    Regards,
    Selva K.

  • All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?

    All day calendar events not being displayed in the notification centre for iphone 5 post ios 7 upgrade. Please help. Is it a bug?
    With iOS 6, the all day events showed up in the notification centre but it lacks in the upgrade iOS 7.

    Same problem here. Some people pointed out that all-day events do show up in their notification center, but that seems only to be the case for birthdays (and only as text like the weather). I've tried it myself on my iPhone and iPad and it did work for birthdays but not for any other all-day events. I already sent this to Apple as a product feedback as well, as should everyone of you. The more people mention it, the faster Apple's going to fix this issue. In its current state, notification center is not a very helpful feature in my opinion. There's absolutely no point in not showing all-day events in the 'today' calendar overview.
    Here's a link to the product feedback page: http://www.apple.com/feedback/
    I posted my message in the iPhone section since I couldn't find a page specifically dedicated to iOS 7.
    I really love the look & feel of iOS 7 but it's kinda sad to see notification center not tapping its full potential.
    Cheers!

  • Coulmn values is not being displayed in obiee 11g

    Hi All,
    Below is the sample xml generated from data structure.
    +<!--Generated by Oracle BI Publisher 11.1.1.6.0-->+
    +<DATA_DS>+
    +<G_1>+
    +<LOCATION_NAME>ABCD</LOCATION_NAME>+
    +<PRODUCT_ID>1012331403</PRODUCT_ID>+
    +<PRODUCT_SUBID>101233140302</PRODUCT_SUBID>+
    +<PRODUCT_NAME>ABCD1</PRODUCT_NAME>+
    +<REVENUE>3924973.97</REVENUE>+
    +</G_1>+
    +<G_1>+
    +<LOCATION_NAME>ABCD</LOCATION_NAME>+
    +<PRODUCT_ID>1012331401</PRODUCT_ID>+
    +<PRODUCT_SUBID>101233140104</PRODUCT_SUBID>+
    +<PRODUCT_NAME>ABCD2</PRODUCT_NAME>+
    +<REVENUE>688244.58</REVENUE>+
    +</G_1>+
    +<G_1><LOCATION_NAME>EFGH</LOCATION_NAME>+
    +<PRODUCT_ID>1011165401</PRODUCT_ID>+
    +<PRODUCT_SUBID>101116540101</PRODUCT_SUBID>+
    +<PRODUCT_NAME>EFGH1</PRODUCT_NAME>+
    +<REVENUE>3763099.99</REVENUE>+
    +</G_1>+
    +</DATA_DS>+
    We were unable to see the REVENUE column values in the report. We were able to see the values while creating layout, but unable to see the values in report. Report is not having any filters or parameters. This is build on two tables. Revenue in one table and details in another table.
    Thanks.

    Hi,
    Just noticed that, able to see column values in HTML, pdf views but unable to see in interactive view.
    While creating the layout checked in Interactive view, at that time able to get column values, but in the report column values are not being displayed in interactive view.
    But in HTML, list option , Repeating Section is not working, so have to see in interactive view only.
    I can say, in Interactive vew Aggregate functions are not working properly. We need tro use Repeating Section and List option in report. so we need interactive view only.
    Any ideas..
    Thanks.

  • Dynamic image is not being displayed in Adobe Reader 8.1

    Hi,
    In interactive form, we have followed below required steps to show a dynamic image.
    For the left image, drag and drop an Image Field element from the standard Library tab to the Body Pages pane. Select this image field and edit the following properties:
    • Click on the Layout tab and choose None for the Caption position.
    • Click on the Object, then the Binding tab and choose None for Default Binding.
    • Click on the Field tab, enter $record.SapOnlineShopUrl for the URL entry, and select Use Image Size for the Sizing field.
    • Click on the script editor and enter the following FormCalc script statement, which enables the dynamic integration of the image. Show: initialize Script: this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    Language: FormCalc Run At: Client
    Image is displayed properly in Adobe reader 7.1 but it's not being displayed in Adobe reader 8.1.
    I was going through some forums and understand that Adobe 8.1 blocks href URL. If this is indeed true, what's the alternative way to show a dynamic image?
    Regards
    Chandra
    Edited by: Chandrashekhar Singh on Apr 24, 2008 7:28 AM

    Soory, I thought its static image....
    Regards,
    Vaibhav Tiwari.
    Edited by: Vaibhav Tiwari on Apr 24, 2008 11:45 AM

  • IView is not being displayed in full page

    I created one iView, added it into a page. I set the layout as 1 Column Full width. My view is not being displayed in entire window. What kind of property, I should set in the page.

    Sunil:
    By default, the iView's height property is fixed. After I changed iView's height property to Full page, The page displays correctly.
    I setup two views in one page using one column Full width. Both the iviews are setup in one page. Now both the iViews height is set up to Full Page as well as page's height is setup to Full page. Now, the Top iView is being displayed with  3/4th of window size and bottom iView is being displayed with 1/4th of window size. I want to display both of them with equal size.
    Thanks for your help.

  • Inspection Characteristic is not being displayed in the inspection lot

    I have created a Calibration order by first creating method, then a MIC, same is attached to a task list and then a Plan.
    But when i trigger a order for that task list the inspection characteristics as mentioned in the task list does not appear in the order.
    Please let me know how to get the inspection characteristics in the order.
    I have checked the task list, in that the Inspection characteristics is visible.
    Please help
    Praneet

    I have noted one thing, in inspection lot the sample size is shown as zero for the equipment where the inspection characteristic is not being displayed and it is shown as one for the lot where the inspection characteristic is displayed.
    Both the Inspection lot the task list is same
    Please reply

  • Images not being displayed in metro apps

    OS: Windows 8.1 enterprise
    Images are not being displayed (a small cross mark shown on the left) when I open metro apps that I download from Store. The store as well doesn't show images. I am able to see images in some built in metro apps like travel and weather.
    What's the fix. I guess the company network is blocking it. What is the work around?
    Thanks.
    NOTE: This is WINDOWS 8.1 METRO UI issue. It doesn't have anything to do with VISIO. The only option that I had to choose when i selected Windows 8.1 is VISIO. This site appears to be broken and not user friendly.

    Hi,
    Which metro app did you download and occur the issue? As you post the question in Visio forum, did you use Visio 2013 preview? As far as I know, the version had been off the store after the official version released.
    If I misunderstand, please give me more information (Such as App name) or images about your question.
    Regards,
    George Zhao
    TechNet Community Support

  • Check boxes are not being displayed in any list applets

    Issue: The check boxes are not being displayed in any list applets in the system. A check box can be marked in the system, but as soon as the user clicks anywhere outside of the box the check box 'visibly' disappears. If you hover the mouse over the check box it displays a 'Y'. However, check boxes are working fine for the form applet, the issue is only with the list applet.
    I verified the checkboxes work fine in the thick client and in production. However, it is the testing environment, which belongs to client, that is showing the above behavior. I think there is some setting that is missing for them. But I am unable to figure it. I would really appreciate if someone could help !!
    Thanks in advance

    One way that you could make it work (just tried it out again) is to use the windings font
    and use the checkboxes from there. However, you need to register the font with xml publisher. In the template builder for Word, you can put a configuration file under:
    C:\Program Files\Oracle\XML Publisher Desktop\Template Builder for Word\config
    (depnding on your installation). The file should have the name xdo.cfg or xdoconfig.xml.
    There is an example file: xdo example.cfg that you rename and change accoringly.
    The font is there setup for windows 2000 as an example. Select the correct font
    path - for my XP it is:
    <font family="Wingdings" style="normal" weight="normal">
    <truetype path="C:\WINDOWS\fonts\wingding.ttf" />
    </font>
    Then you can put the symbols into your RTF template and it will be rendered.
    At least it worked for me - with 5.6.2. (Availbable on Wednesday or Thursday), but
    I am pretty sure I tried it before with 5.5.
    Didn't have the 5.5 manual with me - so I have to check what that says again..
    Hope it helps,
    Klaus

  • RE: [iPlanet-JATO] TileView not being displayed

    Craig.you are quite the JATO expert now!
    cb
    -----Original Message-----
    From: Craig V Conover [mailto:<a href="/group/SunONE-JATO/post?protectID=219212113009229091025149066024064239039098124198039130151196028">craig.conover@S...</a>]
    Sent: Tuesday, April 17, 2001 8:11 PM
    Subject: Re: [iPlanet-JATO] TileView not being displayed
    I had this issue a while ago and forget the exact solution Todd gave me, so
    I'll take a guess untill I can find it somewhere or untill Todd or Mike get
    back online to verify.
    Set the size of the model. I know your TiledView is not bound, but actually
    it is - to the DefaultModel.
    Try this:
    getDefaultModel().setSize(1)
    getPrimaryModel() should work as well.
    let me know if that works or not
    If I find my example, I'll repost.
    c
    ----- Original Message -----
    From: MShanmugam@c...
    Sent: Tuesday, April 17, 2001 7:38 PM
    Subject: [iPlanet-JATO] TileView not being displayed
    Hi All,
    I have a TileView which is not bound to any models.
    It should display one row however none are being displayed. Following
    is the constructor as a reference.
    public pgVoucherListrptCheckInfoTiledView(View parent, String name)
    super(parent, name);
    setMaxDisplayTiles(1);
    setPrimaryModel((DatasetModel) getDefaultModel() );
    registerChildren();
    initialize();
    The problem in the nextTile() method, the super.nextTile allways
    returns false. This seems to be because the
    TiledViewBase.getPrimaryModel().next() allways returns false.
    All the bound tiled views work fine.
    Any help will be appreciated .
    Thanks
    [email protected]
    [email protected]
    [Non-text portions of this message have been removed]

    Craig.you are quite the JATO expert now!
    cb
    -----Original Message-----
    From: Craig V Conover [mailto:<a href="/group/SunONE-JATO/post?protectID=219212113009229091025149066024064239039098124198039130151196028">craig.conover@S...</a>]
    Sent: Tuesday, April 17, 2001 8:11 PM
    Subject: Re: [iPlanet-JATO] TileView not being displayed
    I had this issue a while ago and forget the exact solution Todd gave me, so
    I'll take a guess untill I can find it somewhere or untill Todd or Mike get
    back online to verify.
    Set the size of the model. I know your TiledView is not bound, but actually
    it is - to the DefaultModel.
    Try this:
    getDefaultModel().setSize(1)
    getPrimaryModel() should work as well.
    let me know if that works or not
    If I find my example, I'll repost.
    c
    ----- Original Message -----
    From: MShanmugam@c...
    Sent: Tuesday, April 17, 2001 7:38 PM
    Subject: [iPlanet-JATO] TileView not being displayed
    Hi All,
    I have a TileView which is not bound to any models.
    It should display one row however none are being displayed. Following
    is the constructor as a reference.
    public pgVoucherListrptCheckInfoTiledView(View parent, String name)
    super(parent, name);
    setMaxDisplayTiles(1);
    setPrimaryModel((DatasetModel) getDefaultModel() );
    registerChildren();
    initialize();
    The problem in the nextTile() method, the super.nextTile allways
    returns false. This seems to be because the
    TiledViewBase.getPrimaryModel().next() allways returns false.
    All the bound tiled views work fine.
    Any help will be appreciated .
    Thanks
    [email protected]
    [email protected]
    [Non-text portions of this message have been removed]

  • Crystal Reports 2010 SP1 on IIS 7.0 - Report is not being displayed

    Hi,
    Finally, the keycode assembly, BusinessObjects.Licensing.KeycodeDecoder.dll error is gone, after I installed Crystal Runtime 2010 SP1. Also, I tested Crystal Report 2010 SP1 on my Windows 32 application and I can tell that I do not have this error anymore and report is being displayed properly.
    But Crystal Report is not being displayed on ASP.NET page on MS Server 2008 standard edition SP2 with IIS 7.0. Database resides on iSeries remote machine.
    The MS Server 2008 is virtual machine.
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    Simply the report is not being displayed at all. No errors are being recorded in the Event Viewer.
    Nothing happens; excerpt the page is Loadingu2026 and Waiting for u2018website nameu2019 in the left lower corner of Firefox web browser.
    Here is the code behind aspx page with a command button - very simple:
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    protected void Button1_Click(object sender, EventArgs e)
    ReportDocument crReportDocument;
    Database crDatabase;
    Tables crTables;
    // CrystalDecisions.CrystalReports.Engine.Table crTable;
    TableLogOnInfo crTableLogOnInfo;
    ConnectionInfo crConnectionInfo;
    crConnectionInfo = new ConnectionInfo();
    //Set server name
    crConnectionInfo.ServerName = this._strServerName;
    //set database name
    crConnectionInfo.DatabaseName = this._strDatabaseName;
    crConnectionInfo.UserID = this._strUserID;
    crConnectionInfo.Password = this._strUserPassword;
    //Set integrated security
    crConnectionInfo.IntegratedSecurity = false;
    crReportDocument = new ReportDocument();
    crReportDocument.Load(Server.MapPath("~/crystal-reports/TransformerLoad/TransLoadMonthlyMax.rpt"));
    crDatabase = crReportDocument.Database;
    //Set all tables from current report file
    crTables = crReportDocument.Database.Tables;
    //crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
    //Apply schema name to the table's location
    foreach (CrystalDecisions.CrystalReports.Engine.Table _crTable in crTables)
    crTableLogOnInfo = _crTable.LogOnInfo;
    crTableLogOnInfo.ConnectionInfo = crConnectionInfo;
    _crTable.ApplyLogOnInfo(crTableLogOnInfo);
    //Check if database table name starts
    if (_crTable.Location.StartsWith("XFMRSMAX", StringComparison.CurrentCulture) ||
    _crTable.Location.StartsWith("XFMRSMIN", StringComparison.CurrentCulture))
    //_crTable.Location = this._strSchemaName + "." + _crTable.Location.Remove(8) + Convert.ToInt32(Request.QueryString\"ReportYear\");
    _crTable.Location = "XFMRSMAX09";
    else
    _crTable.Location = _crTable.Location;
    this.CrystalReportViewer1.ReportSource = crReportDocument;
    This code runs on my development machine Win XP SP3
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    This code also runs on another development server - Windows XP SP3 (IIS 5.1)
    OS system has:
    Crystal Report Basic Runtime for Visual Studio 2008
    SAP Crystal Reports Runtime engine for .NET Framework 4 (32-bit)
    ispnet_client folder has IUSR user and this user has read permissions to this folder. I even tried to change the permissions to Read & Execute.
    I am developing my reports using Crystal Reports 2008 SP2.
    Any help would be greatly appreciated.
    Serghei

    Hi Ludek,
    Thank you for your response.
    I checked the web.config file, all http handlers are there. I think the handlers are required to render the images on crystal report viewer but in my case the report viewer is not being rendered.
    I have to questions:
    1. What exact folders should be under aspnet_client\system_web?
    In my case I have structure like this
    aspnet_client\system_web\2_0_50727\crystalreportviewers13
    aspnet_client\system_web\4_0_30319\crystalreportviewers13
    Should I have folders something like this
    aspnet_client\system_web\2_0_50727\crystalreportviewers13_1
    aspnet_client\system_web\4_0_30319\crystalreportviewers13_1
    after I installed Crystal Reports 2010 SP1
    Also, in C:\Program Files\SAP BusinessObjects\Crystal Reports for .NET 4.0\Common\Crystal Reports 2011\ there is no folder named as crystalreportviewers13 but instead crystalreportviewers
    a.     Should I copy all files from this folder to aspnet_client\system_web\2_0_50727\crystalreportviewers13, or
    b.     Should I copy all files from this folder to aspnet_client\system_web\2_0_50727\crystalreportviewers13 and rename this folder to
    crystalreportviewers
    2. Can you explain how to get a data report?
    This is the quote from your previous answer
    I'd be interested to see this simplified to a saved data report - no DB logon code - as a test...  
    Thank you Serghei

  • Pictures not being displayed on twitter

    Certain pictures on twitter are not being displayed on firefox but work fine in internet explorer
    an example page is http://pic.twitter.com/flmKKGz8
    with firefox there is no piture just the message, when looked at in internet explorer the big pucture under the message can be seen

    Hello Cor-el Thanks for the advise, I checked a few things as you mentioned and it turned out that the ad-block add-on was preventing the pictures loading, very strange as it doen't do it anywhere else on pictures, but all rectified now.
    Thanks again :)

  • I just switched from Outlook to Mail and now the sent messages are not being displayed.  Help, please.

    I just switched from Outlook to Mail and now the sent messages are not being displayed.  Help, please.

    Back up all data. Rebuild the mailbox.

  • PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    PDF files not being displayed correctly, instead I get a blank screen with some sort of small pinned icon in the centre.  It was working fine until today HELP!

    What is your operating system?  Reader version?  Are these local or online PDFs?  If online, in what browser?
    Can you post a screenshot: https://forums.adobe.com/thread/1070933

Maybe you are looking for

  • How do I unhighlight text in Adobe Reader for Android?

    I understand that it's been recently updated, maybe it changed? I've been fiddling w/ it for a while & nothing. Tried redoing the highlighting action, tried tapping the text & clear, or changing the color back to white. Still stays yellow. How do I u

  • Authority Check at the T.Code level for the user in particular User Group

    Hi Friends, I have created a ZREPORT and assigned this report to a ZTRANSACTION CODE. Need to give Authority Check at the T.Code level for the user in particular User Group. I have searched in SCN, but not get suitable pages. How to solve this? Regar

  • Hello there! Pages is slow on my iPhone 4S

    Hello there! My Pages is slow on my iPhone 4S. Would anybody know how it can work faster, like the former Pages vrsion used to work on my iPhone 4S?

  • How do I plot 3 Y-axis in Microsoft Excel?

    This is probably more of a VB question but I thought someone here may have had to do this as well. I'm using the Report Generation toolkit to present my data in Excel. I have setup a template and call a couple of macros to format the worksheet. Thank

  • Return (delivery) confirmation Mail SRM7.0 ,how to stop??

    hi , I have not configured any output notification related to return delivery of confirmation and event is not defined  in alert management configuration. Tried to put debugger at Alert notification Badi implementation , tried to remove all event fro