Pdf stamping (water mark) functionality is not working in sharepoint 2010

Hi
I have developed custom handler(.dll) for pdf file stamping functionality using Ihttphandler in VS2010 with help of
iTextSharp. deployed the hanlder in GAC and referred hanlder in handler section of the web.config file one of the
Sharepoitin 2010 site. the stamping functionality is working fine when I am using <Mapping Key="pdf" Value="pdf16.gif"
OpenControl = "Malag.OpenDocuments"/> mapping key for PDFs in DOCICON.XML. after doing all this settings when open any pdf
from sharepoint site it opens in the browser with stamping (water mark) on each page of pdf file. Now i want open the file
in Adobe Reader X with check out & check in options. i have changed mapping key for PDFs in DOCICON.XML file to <Mapping
Key="pdf" Value="pdf16.gif" OpenControl = "PdfFile.OpenDocuments"/>. After changing when click on pdf file in site it opens
adobe reader X prompting Chewck out & open etc.. option, if i select Open option the PDF file is not opening & showing
message "There was an error opening this document. File open failed". Please let me know solution how to solve this issue.
Here is my handler code..
using System.IO;
using System.Web;
using Microsoft.SharePoint;
using iTextSharp.text;
using iTextSharp.text.pdf;
using System.Configuration;
using System;
using Microsoft.SharePoint.Administration;
namespace WSPPDFStamping
    class WSPPDFStampingHtppHandler:IHttpHandler
        public bool IsReusable
            get
                return false;
        public void ProcessRequest(HttpContext context)
                    var siteId = SPContext.Current.Site.ID;
                    var sec = new SPSecurity.CodeToRunElevated(delegate()
                                using (var site = new SPSite(siteId))
                                    using (var web = site.OpenWeb())
                                        SPFile file = SPContext.Current.Web.GetFile(context.Request.Url.ToString());
                                        string RequestedURL = context.Request.Url.ToString();
                                       // string connStringUrl = "";
                                        string connStringUrl = "";;
                                        bool isAdd = true;
                                        byte[] content = file.OpenBinary();
                                        SPUser currentUser = SPContext.Current.Web.CurrentUser;
                                        string siteWebAppRoot = "/" + SPContext.Current.Site.WebApplication.DisplayName;
                                        System.Configuration.Configuration rootWebConfig =
                                System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration(siteWebAppRoot);
                                        System.Configuration.ConnectionStringSettings connString;
                                        if (0 < rootWebConfig.ConnectionStrings.ConnectionStrings.Count)
                                            //connString =
                                            //    rootWebConfig.ConnectionStrings.ConnectionStrings["PDFStampingURL"];
                                            //if (null != connString)
                                            //    connStringUrl = connString.ConnectionString.ToString();
                                            for (int i = 0; i < rootWebConfig.ConnectionStrings.ConnectionStrings.Count; i++)
                                                string connStr = "PDFStampingURL" + (i + 1);
                                                connString =
                                                    rootWebConfig.ConnectionStrings.ConnectionStrings[connStr];
                                                if (null != connString)
                                                    connStringUrl = connString.ConnectionString.ToString();
                                                if (RequestedURL.Contains(connStringUrl))
                                                    isAdd = true;
                                                    break;
                                                else
                                                    isAdd = false;
                                        //if (!RequestedURL.Contains(connStringUrl))
                                        if (!isAdd)
                                            context.Response.ContentType = "application/pdf";
                                            context.Response.BinaryWrite(content);
                                           // context.Response.AddHeader("content-disposition", "attachment; filename=" + file.Name);
                                          // context.Response.AddHeader("content-disposition", "inline;filename=" + file.Name);
                                            context.Response.End();
                                            isAdd = false;
                                            return;
                                        string watermark = null;
                                        if (currentUser != null)
                                            watermark = "Document downloaded by " + currentUser.Name + " on " + System.DateTime.Now + " PST.";
                                        if (watermark != null)
                                            PdfReader pdfReader = new PdfReader(content);
                                            using (MemoryStream outputStream = new MemoryStream())
                                                PdfStamper pdfStamper = new PdfStamper(pdfReader, outputStream);
                                                BaseFont baseFont = BaseFont.CreateFont(BaseFont.HELVETICA_BOLD, BaseFont.CP1252, false);
                                                for (int pageIndex = 1; pageIndex <= pdfReader.NumberOfPages; pageIndex++)
                                                    //Rectangle class in iText represent geometric representation...
                                                    //in this case, rectangle object would contain page geometry
                                                  iTextSharp.text.Rectangle pageRectangle = pdfReader.GetPageSizeWithRotation(pageIndex);
                                                    //PdfContentByte object contains graphics and text content of page returned by PdfStamper
                                                    PdfContentByte pdfData = pdfStamper.GetOverContent(pageIndex);
                                                    //create font size for watermark
                                                    pdfData.SetFontAndSize(BaseFont.CreateFont(BaseFont.HELVETICA_BOLD, BaseFont.CP1252, BaseFont.NOT_EMBEDDED), 8);
                                                    //create new graphics state and assign opacity
                                                    PdfGState graphicsState = new PdfGState();
                                                    graphicsState.FillOpacity = 0.7F;//= 0.4F;
                                                    //set graphics state to PdfContentByte
                                                    pdfData.SetGState(graphicsState);
                                                    //indicates start of writing of text
                                                    pdfData.BeginText();
                                                    //show text as per position and rotation
                                                    pdfData.ShowTextAligned(Element.ALIGN_MIDDLE, watermark, pageRectangle.Width / 4, pageRectangle.Height / 44, 0);
                                                    //pdfData.ShowTextAligned(Element.ALIGN_CENTER, "For Internal Use Only", pageRectangle.Width / 2, pageRectangle.Height / 2, 45);
                                                    //call endText to invalid font set
                                                    pdfData.EndText();
                                                    //Top text
                                                    PdfGState graphicsStateTop = new PdfGState();
                                                    graphicsStateTop.FillOpacity = 0.005F;//= 0.4F;
                                                    //set graphics state to PdfContentByte
                                                    pdfData.SetGState(graphicsStateTop);
                                                    pdfData.BeginText();
                                                    //pdfData.ShowTextAlignedKerned(Element.ALIGN_LEFT, "TEXT Left", 150, 628, 0);
                                                    pdfData.ShowTextAligned(Element.ALIGN_CENTER, watermark, pageRectangle.Width / 2, pageRectangle.Height - 13, 0);
                                                    //call endText to invalid font set
                                                    pdfData.EndText();
                                                    //Set 45 degree water mark
                                                    PdfGState graphicsState45 = new PdfGState();
                                                    pdfData.SetFontAndSize(baseFont, 38);
                                                    graphicsState45.FillOpacity = 0.07F;//= 0.4F;
                                                    //set graphics state to PdfContentByte
                                                    pdfData.SetGState(graphicsState45);
                                                    pdfData.BeginText();
                                                    //show text as per position and rotation
                                                    pdfData.ShowTextAligned(Element.ALIGN_CENTER, "Registered For Internal Use Only", pageRectangle.Width / 2, pageRectangle.Height / 2, 45);
                                                    //pdfData.ShowTextAlignedKerned(Element.ALIGN_LEFT, "TEXT Left", 150, 628, 0);
                                                    //call endText to invalid font set
                                                    pdfData.EndText();
                                                pdfStamper.Close();
                                                content = outputStream.ToArray();
                                        context.Response.ContentType = "application/pdf";
                                        context.Response.BinaryWrite(content);
                                       // context.Response.AddHeader("content-disposition", "attachment; filename=" + file.Name);
                                     //   context.Response.AddHeader("content-disposition", "inline;filename=" + file.Name);
                                        context.Response.End();
                    SPSecurity.RunWithElevatedPrivileges(sec);
web.config file of share point site
<handlers>
    <add name="PDFWatermark" verb="*" path="*.pdf" preCondition="integratedMode"
type="WSPPDFStamping.WSPPDFStampingHtppHandler, WSPPDFStamping, Version=1.0.0.0, Culture=neutral,
PublicKeyToken=835cc3a26d74a89a" />
    </handlers>
thanks in advance.
jampani venkateshwar rao.

Time to engage in basic debugging. Alter your script to remove all the extra steps and generate logs as it goes along, then gradually re-enable each part so you can work out where it's bombing out. It doesn't sound like a problem with Reader itself, and as Claudio says we're not here to provide support for non-Adobe software.

Similar Messages

  • Alert set through timer job is not working in sharepoint 2010 as expected

    Hi,
    I create the standard sharepoint alerts through timer job.
    in my timer job, i loop through a list and based on the user value in the alert to field i create alert for the users and the condition for the alert are only when new items are created and something changes in the below view.
    all the properties are set fine. Email triggered on new items additions and on specific daily or weekly summary.
    The view filteration is not working at all:(
    But after the timer job ran and set the alert, if i open the alert settings on UI and without changing anything if i click ok , then the view filteration is happening and alerts are working fine.
    What is wrong here? is it a bug or anything am missing?
    Aruna
    try
    SPList Configlist = web.Lists.TryGetList("Configuration");
    foreach (SPListItem oItem in Configlist.Items)
    ProfilePicker = oItem["ProfilePicker"].ToString();
    ProfileViewer = oItem["ProfileViewer"].ToString();
    string MIS = oItem["MIS"].ToString();
    SPList list = web.Lists.TryGetList(ProfileViewer);
    SPList ProfileList = web.Lists[ProfilePicker];
    foreach (SPListItem oItem in ProfileList.Items)
    frequency = oItem["Frequenzy"].ToString();
    created = (DateTime)oItem["Created"];
    string createdDate = created.ToString();
    createdDate = DateTime.Parse(createdDate).ToShortDateString();
    DateTime today = DateTime.Today.Date;
    string dateonly = today.ToString(); ;
    dateonly = DateTime.Parse(dateonly).ToShortDateString();
    SPFieldUserValue fieldValue = null;
    SPFieldUser UserColumn = (SPFieldUser)oItem.Fields.GetField("Alert_x0020_owner");
    fieldValue = UserColumn.GetFieldValue(oItem["Alert_x0020_owner"].ToString()) as SPFieldUserValue;
    if (fieldValue != null)
    alertowner = fieldValue.User;
    alert = alertowner.ToString();
    //if (createdDate == dateonly)
    SPUser user = web.EnsureUser(alert);
    SPAlert newAlert = user.Alerts.Add();
    newAlert.AlertType = SPAlertType.List;
    newAlert.List = list;
    newAlert.DeliveryChannels = SPAlertDeliveryChannels.Email;
    newAlert.EventType = SPEventType.Add;
    if (frequency == "Daily")
    createDailyAlert(newAlert, list, user);
    else
    createWeeklyAlert(newAlert, list, user);
    catch (Exception ex)
    // Danfoss.Sharepoint.Logger.DanfossLogger.LogToOperations(ex, "Exception occurred in setting the profile alert", 0, EventSeverity.Error, DanfossExceptionCategory.General);
    private static void createDailyAlert(SPAlert newAlert, SPList list, SPUser user)
    newAlert.Title = "My Daily Profile viewer Alert";
    newAlert.AlertFrequency = SPAlertFrequency.Daily;
    newAlert.AlertTemplate = list.AlertTemplate;
    newAlert.AlertTime = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day, 10, 0, 0);
    newAlert.AlertTime = newAlert.AlertTime.AddDays(0);
    SPAlert existingAlert = null;
    newAlert.Properties.Add("filterindex", "4");
    newAlert.Properties.Add("viewid", list.Views["Daily Alert"].ID.ToString("D"));
    newAlert.Properties.Add("filterpath", string.Format("{0}/", list.Views["Daily Alert"].ServerRelativeUrl.TrimStart('/')));
    foreach (SPAlert alerts in user.Alerts)
    string al = alerts.AlertFrequency.ToString();
    // Filter down the alert to the list you wish to report on.
    if (al == "Daily")
    // Found your existing your custom alert. Don't create one.
    existingAlert = alerts;
    if (existingAlert == null)
    newAlert.Update(false);
    private static void createWeeklyAlert(SPAlert newAlert, SPList list, SPUser user)
    newAlert.Title = "My weekly profile viewer Alert";
    newAlert.AlertFrequency = SPAlertFrequency.Weekly;
    newAlert.AlertTemplate = list.AlertTemplate;
    newAlert.AlertTime = new DateTime(DateTime.Today.Year, DateTime.Today.Month, DateTime.Today.Day, 10, 0, 0);
    newAlert.AlertTime = newAlert.AlertTime.AddDays(0);
    SPAlert existingAlert = null;
    newAlert.Properties.Add("filterindex", "4");
    newAlert.Properties.Add("viewid", list.Views["Weekly Alert"].ID.ToString("D"));
    newAlert.Properties.Add("filterpath", string.Format("{0}/", list.Views["Weekly Alert"].ServerRelativeUrl.TrimStart('/')));
    foreach (SPAlert alerts in user.Alerts)
    string al = alerts.AlertFrequency.ToString();
    // Filter down the alert to the list you wish to report on.
    if (al == "Weekly")
    // Found your existing your custom alert. Don't create one.
    existingAlert = alerts;
    if (existingAlert == null)
    newAlert.Update(false);
    This is my code. alerts are not sending based on the view:(

    Hi sathyaav,
    I followed the example and made a test in my environment, it works like a charm.
    I suggest you check if you have inputed the valid site URL when you create the project solution.
    If you deployed succeed in the Central Administrator Site using Visual Studio, then the job named "Simple Job Definition" will appear in the job definition list.
    Best Regards
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Zhengyu Guo
    TechNet Community Support

  • Date parameter does not work in SharePoint 2010 report using SQL 2008 Server Reporting Service

    Here is the settings:
    SharePoint 2010 with SQL server 2008 reporting services configured
    When create a report for a SP list using SQL server report builder (3.0) the date parameter does not work.
    The data parameter is set as "date and time" type and field name equals the col name in the SP list
    When run the report, the whatever dates I select, the result is always the same, so the parameters do not take any effect.
    Is any step missing?
    Thanks for any advice !

    Hi ,
    How did you configure you "date and time" type parameter and field name equals the col name in the SP list?
    Have you tested if other type parameter worked?
    Have you tried typing the date format as 20140722 in your date parameter filed before run the report?
    http://whitepages.unlimitedviz.com/2012/02/using-sharepoint-filters-with-reporting-services-parameters-for-personalized-reports/
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Alert to group not working on Sharepoint 2010!

    Hello,
    We have a SharePoint 2010 Server which on the front page we have a news list. We have migrated to 365 and since then the alerts are not working properly. We have a local SMTP server that we use to rely to 365 since SharePoint does not support TLS by itself.
    The SMTP server is working because we can set up alerts on individuals and the emails are coming. The issue is with the group. I have tried several groups but still the same issue. On some groups we receive the initial email about the creation of the alert,
    but no mails after that. I have checked also the Immediate Alert service and is successful. I have checked in the  mail flow on 365 and I can see the initial creation of the alert mail sent to all in the group, but the alerts on changing anything on the
    list does not come into 365, so it must be a SharePoint issue which I can`t determine since the immediate alert service is running...
    Can you please provide a feasible solution for this issue?
    Thank you very much.
    DOVC
    Best Regards, Valentin Doru System Administrator

    Hi Valentin,
    please also open a thread at o365 community, because seems this issue happened at o365.
    to try, perhaps you can re-add the group also, because it may refresh the properties from the AD group to o365.
    and you may check these workaround for testing:
    Option 1: Use a Redirection User
    created a user in Office 365. This user is licensed to use SharePoint Online and Exchange Online.
    In Exchange Online, create Distribution Groups, which are standard Distribution Group that allows however in Delivery Management also Senders outside of organization, as the SharePoint Sender is not part of the Exchange Org.
    In Exchange Online for the User Exchange Forwarder, created Inbox Rules. The rule is checking the Subject for a keyword and as action redirect the E-Mail to the DG and deletes it right away.
    repeat this for other DGs as well.
    In SharePoint Online grant the user Exchange Forwarder access to the Site to access the List
    Now there are two important steps:
    1)      The Alert Title needs to include the token we look for in the Exchange rule
    2)      The “Send Alerts To” needs to be our “Exchange Forwarder”
    When everything is set up an Alert will be received by Exchange Forwarder and then forwarded to the DG.
    Option 2: Use a custom Workflow with the Send E-Mail To Activity
    In Exchange Online creat a Distribution Groups, which are standard Distribution Group that allows however in Delivery Management also Senders outside of my organization, as the SharePoint Sender is not part of the Exchange Org.
    Using SharePoint Designer create a custom Workflow like the one below. In the Send E-Mail activity I specified the external SMTP Address of the DG as To-Address.
    When the Workflow is executed an E-Mail is sent directly to the DG:
    Background:
    When sending an Alert, SharePoint is doing a Security Trimming. So SharePoint wants to be sure the recipient of the Alert has permissions to see the List Content the Alert is about. Therefore we cannot enter an SMTP-Address for an Alert but need to specify
    a Security Principal known to SharePoint.
    In a Workflow we don’t need to do this kind of Security Trimming. The creator / designer of the Workflow need to take care whom to send what information.
    Side note: Alerts and Workflow Send E-Mail To Activities are the only possibilities in SharePoint Online to send E-Mails. Custom solutions (Sandboxed Solutions) will not work.
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Archive feature is not working in sharepoint 2010 list

    Hi 
    i configure archive feature for list. but it is not working.  i followed below video <o:p></o:p>
    http://www.youtube.com/watch?v=ZAkSEMW89Jw
    but list items are not moving to archive list.
    could any one help me how to resolve this?
    <o:p></o:p>

    did you see if workflow started or not at all?
    any error...as Amit asked...share the Workflow logic.
    just keep in mind the steps in video are:
    Save as template "current list"
    then create new lis using above template.
    now create a designer workflow on your main list which automatically start on item change.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • OK button does not work in SharePoint 2010 using any web browser

    We are unable to press OK in SharePoint when trying to edit columns or create new columns. We can press cancel but when you click OK it does nothing. I receive an error message in the left corner which says 'helperFrm' is null or not an object. Maybe this
    helps?
    I have tried in IE8,9, 10, Firefox, Chrome but nothing. You press the button and it does nothing but show 'error on page' in the bottom left corner. Very frustrating.
    Thanks in advance.
    Elliot

    If not, register in masterpage 
    <SharePoint:ScriptLink language="javascript" name="~sitecollection/custom/jquery-1.10.2.min.js" runat="server" Localizable="false" />
    Instead of
    ~sitecollection/custom/jquery-1.10.2.min.js
     this
    include your bform.js 

  • The download function is not working....!! When I click on something like download a doc,pdf or any such file, the firefox just doesn't respond, and when I checked the download, i.e. cntrl+j, I don't find anything in the downloads...

    The download function is not working....!! I don't use any add-ons like idm or dap,etc.... When I click on something like download a doc,pdf or any such file, the firefox just doesn't respond, and when I checked the download, i.e. cntrl+j, I don't find anything in the downloads... I am currently using Firefox 7.0.1....... Nothing is being downloaded, and I am forced to use IE8 for everything... I even tried re-installing, but doesn't help... I am using Windows 7

    TonyE is correct the plugin version comes with Adobe's Reader X.
    The failure in communication is two parted:
    1. Reader X is not Acrobat (Mozilla Plugin Checker)
    2. Acrobat is not mentioned in the Reader X download Page (Adobe)
    therefore confused clients.
    For readers '''CAUTION''' check the minimum requirements for Reader X.
    Here: [http://www.adobe.com/products/reader/tech-specs.html Adobe's Reader X requirements link]
    Do not waste the time to download (80+MB and Site is Slow) if your machine does not have the resources to execute it. ie. '''aging''' Hardware
    Unfortunately the Adobe DLM only checks the requirements after it has
    downloaded BEFORE the install occurs.
    This is '''very expensive''' for both the sender and receiver
    It might be why they called it READER X and READER 9 will not sense an update...
    Another Software company pushing Hardware antiquity...

  • "Open In.." function is not working

    Hi, "Open In.. " function is not working on my iPad since the first time I recieve it..
    it once worked twice, and it took a long time to load PDF file, but never worked again
    the apps list is there, but when I click the app, nothing happened.
    please do help,
    thanks

    Try clearing Safari's cache : Settings > Safari > Clear Cache (and Clear History)
    Also close all apps completely : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Palm Desk Top 6.2 Address Look Up Function Does Not Work In Windows 7

    I recently upgraded my desk top computer's operating system from Windows Vista Home Premium to Windows 7 Home Premium.  I synchronize with a Palm Tx PDA.  HP PalmOS customer support Chat helped me work through a compatibility issue that was preventing display of Address, Calendar, Memo and To Do items on my desk top computer via the Palm Desk Top 6.2 application.  I now find that the address look up function does not work (although it worked fine when I was running Vista).  Without success, I tried running the repair tool as well as reloading the software (both overlay and clean reinstall).  I would appreciate any help or suggestions to fix?
    Post relates to: Palm TX

    Hi,
    844869 wrote:
    CREATE TABLE TEST_EMPLOYEES
    FIRST_NAME VARCHAR2(26 CHAR),
    GRADE VARCHAR2(5 CHAR)
    INSERT INTO TEST_EMPLOYEES (FIRST_NAME, GRADE) VALUES ( 'William', 45 ); ...Thanks for posting the CREATE TABLE and INSERT statements; that's very helpful.
    William&45     1
    Robin 43     1
    Raymond          43     1
    Richard          43     1
    Karen          28     1
    Michelle               1
    Jonathan               1
    Mark               1
    Ann               1You may have noticed that this site normally doesn't display multiple spaces in a row.
    Whenever you post formatted text (such as query results) on this site, type these 6 characters:
    \(small letters only, inside curly brackets) before and after each section of formatted text, to preserve spacing.
    This is one of the many helpful things found in the forum FAQ {message:id=9360002}
    Are the results above what you're getting with some existing query, or are they the results you want? 
    If those are your current results, post your query.  In that case, what are the results you want?  Do you want this?FIRST_NAME GRADE RNK
    William 45 1
    Robin 43 2
    Raymond 43 2
    Richard 43 2
    Karen 28 5
    Michelle 6
    Jonathan 6
    Mark 6
    Ann 6
    Edited by: Frank Kulash on Feb 21, 2013 2:39 PM
    I see you've added the desired results to your original message.
    Here's one way to do that:SELECT first_name
    ,     grade
    ,     RANK () OVER (ORDER BY grade NULLS FIRST)     AS rnk
    FROM     test_employees
    ORDER BY grade          DESC     NULLS LAST

  • Radio button and associated functionality is not working!

    Hi Pros,
    I am facing the following problem:
    1.I have an interactive PDF created in Acrobat 9 Pro.
    2.PDF have few radio buttons, each radio buttons ahave assigned valus(eg: 1,2,3 etc)
    3.I have a text box in which the value of selected radio button is displayed.
    4.PDF is working fine on my machine.
    5.Client is having Internet Explorer version 7.0.5 and Adobe reader:8.2.6
    6.The radio buttons and associated functionality is not working on client's machine.
    7.The text box shows '0' even if we a radio button with value 2 or 1 is selected.
    What will be the problem? How can I fix this issue?
    Please help.

    Thanks alot for helping me on this.
    Thanks to u also ~graffiti

  • Book Mark Icon is not working?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is not working?
    Please correct me if I am wrong.
    Book mark is URL we are getting after the clcking on the EIther on the ICON or context menu option.This URL can be used any where where ever is required.Right?
    But In my case the URL Content is chainging based on the Adhoc query designer.Only characterstics are again and again changing but key figures are original only.
    please help me?

    U mean to say the Book Mark URL created on one system will not work on another system right?
    =>the Book Mark URL created on one system may not work on another system right? in fact in 80% cases it works...
    But what once I execute the query in portal I will be getting an URL.This also can be used as Book mark right?
    =>yes, it can be used,,,
    but the URL generated with the function of the BOOK MARK is only called as Book mark why is it?
    => let me explain this with an example ... there is a BW server physically located in France and can be accessible across all the location wherever project is running. Somebody try to access the Query URL from Gurgaon (one of the project location)which was executed in France may not be run in Gurgaon (Page cant be displayed) because port # in the URL may be blocked in Gurgaon due to security reason,,, this case we have to contact the admin ,they will enable the port..same case i have faced

  • AcroPDF ActiveX print functions are not working with Adobe Reader 9.2 / Actobat Reader 9.3

    AcroPDF ActiveX print functions are not working with Reader 9.2/9.3. Tried ActiveX print functions like printPages(), printAll(), printWithDialog(), none of them is working. Tried on platforms: XP 32 bit and Win7 32 bit. These print functions all work fine with Adobe Reader 9.1.0. or 8.2.0 or 8.1.0 on XP 32 bit or Win7 32 bit.
    The way I have my setup: I have created a C/C++ project with AcroPDF MFC ActiveX classes. I have created an AcroPDF object in there, and then calling it's LoadFile() function passing a pdf file in the parameter. Then calling the printPages() or printAll() function. With Adobe Reader 9.1.0. or 8.2.0 or 8.1.0, printing is starting through the default printer without any problem. As soon as I update the reader version to 9.2 or more, the same code stops working.
    Is anybody noticing any similar issue? Any info on this will be highly appreciated. Thank you!

    Unfortunately printWithDialog() is also not working. Actually none of the print functions like Print(), printWithDialog(), printPages(), printPagesFit(), printAll(), printAllFit() are working. All of them works fine though with older reader.
    BTW, what security related changes are there for printPages() and printAll()? Can you please elaborate on that? Is there any workaround?

  • Autofill function is not working, 'window' sticks through it not functional!

    autofill function is not working, 'window' sticks through it not functional!

    Back up all data, then test after each of the following steps that you haven't already tried. Stop when the problem is resolved.
    1. Quit and relaunch Safari.
    2. Select your card in Contacts. Then select
    Card ▹ Make This My Card
    from the menu bar. Also select
    Contacts ▹ Preferences ▹ vCard
    and uncheck the box marked
    Enable private me card
    if it's checked.
    3. In Safari, select
    Safari ▹ Preferences ▹ AutoFill ▹ AutoFill web forms: Using info from my Contacts card
    If the box was already checked, uncheck it and then check it again.
    4. Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select Change Settings for Keychain "login". In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ First Aid
    If the box marked Keep login keychain unlocked is not checked, check it.
    Select
    Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • My Acrobat Snapshot function is not working?

    My Acrobat Snapshot function is not working?

    No security and Acrobat 9 Standard
    Michael A. Lough
    Sent: Friday, July 22, 2011 8:49 PM
    Subject: Acrobat Windows My Acrobat Snapshot function is not working?
    Is security set on the PDF? What version of Acrobat?

  • E545 and Function key not working

    Any help here is apprecited. My function (Fn) key is refusing to work at all. None of the special features are able to be used. I've checked all my drivers, and followed the instructions in the User Guide, but some of the options described in the guide are even showing on my computer.
    I'd love for some help on this issue, as the computer is pretty worthless right now.

    Hi Jamesbjenkins,
    Welcome to Lenovo Community!
    As per the query we understood that you are facing issue with keyboard function keys not working on your ThinkPad E545.
    Is the system updated with all the latest drivers and application? To confirm with I request you to run ThinkVantage system update tool. This will search for all the required drivers and application for your system and will update.
    Hope this helps.
    Best regards,
    Hemanth Kumar
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

Maybe you are looking for

  • Output resolution

    I remember reading here when version 3 Apple TV software came out that there were problems with the program crashing when setting the output resolution to 1080i. I think the fix was 720p, which I have had my Apple TV set on since that problem. I have

  • Smq2 - Password logon no longer possible - too many failed attampts

    Experts, I was working on a data initial load from ECC to CRM. But the status remains "Running". And in smq2 I saw the queue with "SYSFAIL" with info "Password logon no longer possible - too many failed attampts". But my user's not locked in either C

  • Profitability segment number 02209 does not exist in operating concern ESAA

    Hello Experts, Please help us on one issue which  we are facing here that "Profitability segment number 02209 does not exist in operating concern ESAA" please could you please let us know why are facing this issue and where to check if this Profitabi

  • Adobe Interactive Form with workflow processing

    I am new to both WebDynpro ABAP and Adobe forms.  I  am creating a new adobe form for material stock request with a 2 level approval. I have created the form and the WD application. How do you pass the adobe form and it's data from the WD application

  • [network]-guest appears in list of available networks

    the wowway helped set up linksys router after installing internet service today. i've just noticed that, in addition to that network, available networks also shows [network]-guest. this guest network also says unsecured. i am connected to [network] a