Wrong description of columns is displayed in PDF view

Hi Gurus,
Please help me on the below issue.
Issue: I open accoutn plan and clicked on "Print Account Plan" (which will export account plan data into PDF file for printting), from one assignment block the description of column is getting displayed wronglly in print view(ex Last year Amount in Planing block in Account plan, but just "Amount" is displayed in Print View). Please help me on this issue, what could be the issue and what things hould  be checked.
Please do needful.
Thanks and Regards,
Venkatesh

Hi
If the field description is not coming as expected in displayed fields, we can edit the description from the Field properties option of that field from the configuration tab.
If this field's description changes need to be applicable in all the components wherever used, we can change the description from the Design layer so that the changes will be replicated wherever the field is used.
Thanks.

Similar Messages

  • Empty grid columns not displayed in pdf

    hi.. am using alivepdf to generate pdf from flex..
    it works fine for chart and grids...
    am having empty coloums in flex grid, but empty colums are not displayed in pdf...
    guide me to overcome this prob,,
    thanks in advance..

    Hi
    Check whether user have authorization to access the tables or not
    Check  whether DB connection is working or not
    And what is the back-end data base for the universe?
    Find the below notes for more info.
    If data base is Oracle
    1803659 - Unable to display columns from Oracle synonym tables
    Ms SQL Server
    1904204 - Synonyms not displaying columns in IDT.

  • Firefox downloads PDF with wrong extension instead of opening a websites' PDF viewer

    I have a problem with websites that want to provide their own PDF viewer. Instead of launching their viewer, Firefox wants to download the PDF. I'd be perfectly fine with that ***if it downloaded with the correct .pdf extension so that Preview would actually open the PDF***. But that's not what happens; I end up with something like "RetrieveDocument.aspx" or "Retrieve.srv".
    I've tried resetting my download options (http://kb.mozillazine.org/File_types_and_download_actions). Didn't help.
    I saw some stuff about other plugins I can install. Here's the thing: *this stuff works fine in Chrome and Safari*. Maybe websites aren't tagging their content correctly or something, but this stuff works fine in two other browsers.

    Hello,
    In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:
    #Go to ''Tools'' > ''Options'' (or ''Firefox'' > ''Options'').
    #In the Options window, select the ''Applications'' tab.
    #In the ''Search'' field, type ''PDF''. You should find ''Portable Document Format (PDF)''.
    #On the right handside you should find an ''Action'' column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose ''Preview in Firefox''.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Display of PDF files

    We have some PDF files in a AIX directory and we will like to open and display the PDF view in our own SAP application. I used the function module CALL_BROWSER, but this module can´t display the PDF file in the AIX directory.
    I hope anybody can help me ?

    HI larsen..
    First you need to set up FTP connection to your OS (Windows)server..
    you can use FM
    *Scramble the password before connecting to the FTP server
      CALL 'AB_RFC_X_SCRAMBLE_STRING'
      ID 'SOURCE' FIELD l_v_pwd ID 'KEY' FIELD l_v_key
      ID 'SCR' FIELD 'X' ID 'DESTINATION' FIELD l_v_pwd
      ID 'DSTLEN' FIELD l_v_pwd_len.
    *Connect to the FTP server
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = 'your username'
          password        = l_v_pwd
         host            = 'pmipmftpaisdev.eu.pm.com'
          host            = 'pmipmftpaisdev.app.pmi'
          rfc_destination = 'SAPFTPA'
        IMPORTING
          handle          = v_handle
        EXCEPTIONS
          not_connected   = 1
          OTHERS          = 2.
    Then
    FORM f_get_directory USING    fp_p_file    TYPE char200 " this is your file name
                         CHANGING fp_it_direct TYPE ty_t_direct. "this is directory
    *Local variables
      DATA : l_v_cmd   TYPE char512,
             l_v_fdpos TYPE syfdpos.
    *Changing directory
      CONCATENATE 'cd' fp_p_file INTO l_v_cmd SEPARATED BY space.
    *Change the directory
      PERFORM f_ftp_command USING l_v_cmd
                         CHANGING it_result.
      IF sy-subrc = 0.
        REFRESH it_result.
        CLEAR l_v_cmd.
    *Ascii mode
        l_v_cmd = 'ascii'.
        PERFORM f_ftp_command USING l_v_cmd
                           CHANGING it_result.
        IF sy-subrc = 0.
          REFRESH it_result.
          CLEAR l_v_cmd.
    *Get the folders inside the directory
          l_v_cmd = 'dir'.
          PERFORM f_ftp_command USING l_v_cmd
                             CHANGING it_result.
          IF sy-subrc = 0.
            LOOP AT it_result INTO wa_result.
              SEARCH wa_result FOR '<DIR>'.
              IF sy-subrc = 0.
                l_v_fdpos = sy-fdpos.
                l_v_fdpos = l_v_fdpos + 5.
                DO.
                  l_v_fdpos = l_v_fdpos + 1.
                  IF wa_result+l_v_fdpos(1) <> ' '.
                    wa_direct-direct = wa_result+l_v_fdpos(20).
                    APPEND wa_direct TO fp_it_direct.
                    EXIT.
                  ENDIF.
                ENDDO.
              ENDIF.
            ENDLOOP.
          ENDIF.
        ENDIF.
      ENDIF.
      REFRESH it_result.
    ENDFORM.                    " f_get_directory
    *&      Form  f_ftp_command
          Execute the unix command
         -->FP_L_CMD  text
         <--FP_IT_RESULT  text
    FORM f_ftp_command  USING    fp_l_cmd TYPE char512
                        CHANGING fp_it_result TYPE ty_t_result.
    *Execute the FTP Command
      CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = v_handle
          command       = fp_l_cmd
        TABLES
          data          = fp_it_result
        EXCEPTIONS
          tcpip_error   = 1
          command_error = 2
          data_error    = 3
          OTHERS        = 4.
      IF sy-subrc <> 0.
      ENDIF.
    ENDFORM.     
    Now loop at the directort and get the files
    LOOP AT it_direct INTO wa_direct.
    *Get the files inside the directory
        PERFORM f_get_files USING p_file
                                  wa_direct
                         CHANGING it_files.
    endloop.
    *&      Form  f_get_files
          Get the files from the directory
         -->FP_P_FILE    File path
         -->FP_WA_DIRECT Directory name
         <--FP_IT_FILES  Files
    FORM f_get_files  USING    fp_p_file    TYPE char200
                               fp_wa_direct TYPE ty_direct
                      CHANGING fp_it_files  TYPE ty_t_files.
    *Local variable
      DATA : l_v_cmd TYPE char512,
             l_v_fdpos TYPE syfdpos.
      CONCATENATE 'cd' fp_wa_direct INTO l_v_cmd SEPARATED BY space.
    *Change the directory
      PERFORM f_ftp_command USING l_v_cmd
                         CHANGING it_result.
      IF sy-subrc = 0.
        REFRESH it_result.
        CLEAR v_cmd.
        CONCATENATE 'dir' '*.<b>pdf</b>' v_cmd INTO v_cmd SEPARATED BY space.
    *Get the files from the directory
        PERFORM f_ftp_command USING v_cmd
                           CHANGING it_result.
        IF sy-subrc = 0.
          LOOP AT it_result INTO wa_result.
            IF sy-tabix = 1.
              CONTINUE.
            ENDIF.
            SEARCH wa_result FOR '<b>.pdf'</b>.
            IF sy-subrc = 0.
              wa_files-file = wa_result+39(200).
              APPEND wa_files TO fp_it_files.
            ENDIF.
          ENDLOOP.
        ENDIF.
      ENDIF.
    ENDFORM.
    see the above program..
    If any doubt feel free to ask..
    rewards is useful
    regards,
    nazeer

  • PDF viewer displaying wrong langauge

    PDF invoices that we create are showing in an incorrect language (eg. Greek/Arabic) within the Firefox PDF viewer - We have checked the document in Adobe and Foxit and these applications all show correctly (should be in English UK)
    We are receiving complaints from customers that are trying to open the PDF from within Firefox who think we are sending the documentation in the wrong language!
    Cheers,
    Sean

    Hello,
    In order to change the default reader for PDF files (to not open PDF files with Firefox's internal PDF reader), follow these steps:
    #Go to ''Tools'' > ''Options'' (or ''Firefox'' > ''Options'').
    #In the Options window, select the ''Applications'' tab.
    #In the ''Search'' field, type ''PDF''. You should find ''Portable Document Format (PDF)''.
    #On the right handside you should find an ''Action'' column. Use that to select your favorite PDF reader. In order to view PDF files in Firefox, choose ''Preview in Firefox''.
    Did this fix your problems? Please report back to us!
    Thank you.

  • Using IFRAME in JSF to display a PDF file

    2 all,
    How do i display a PDF file inside a JSF page in a IFRAME tag?
    I store the PDF file location (like d:\images\pdf1.pdf) in my database. I cant give this location directly into the src attribute cos then the file will be rendered to only users who have access to that folder (the application is a internet application). IFRAME would be ideal as the display is very very neat (esp for pdf files).
    To get this working i tried the examples given in balusc blogs (on image servlet) but the problem is that my servlet is not getting called. Find below the web.xml and imageDisplay.jsp pages that i tried
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>WorkFlowTool</display-name>
    <context-param>
      <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
      <param-value>server</param-value>
    </context-param>
    <filter>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
      <init-param>
       <param-name>maxFileSize</param-name>
       <param-value>20m</param-value>
      </init-param>
    </filter>
    <filter>
      <display-name>SecurityCheckFilter</display-name>
      <filter-name>SecurityCheckFilter</filter-name>
      <filter-class>filters.SecurityCheckFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>*.faces</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>SecurityCheckFilter</filter-name>
      <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <listener>
      <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    <servlet>
      <servlet-name>Faces Servlet</servlet-name>
      <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
      <servlet-name>Image Servlet</servlet-name>
      <servlet-class>servlets.ImageServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>Image Servlet</servlet-name>
      <url-pattern>/imageServlet/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <session-config>
      <session-timeout>60</session-timeout>
    </session-config>
    <welcome-file-list>
      <welcome-file>/jsp/index.jsp</welcome-file>
    </welcome-file-list>
    <error-page>
      <error-code>500</error-code>
      <location>/jsp/error.jsp</location>
    </error-page>
    <resource-ref>
      <res-ref-name>jdbc/JDDS</res-ref-name>
      <res-type>java.lang.Object</res-type>
      <res-auth>Container</res-auth>
      <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    </web-app>
    imageDisplay.jsp
    <HTML>
    <HEAD>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
    <f:loadBundle basename="messages" var="msg" />
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <LINK rel="stylesheet" type="text/css" href="../theme/Styles.css"
         title="Style">
    </HEAD>
    <body topmargin="0" leftmargin="0">
    <f:view>
         <h:form id="CaseLookUp">
              <h:dataTable value="#{pc_ImageDisplay.dataModel}" var="var">
                   <h:column id="one">
                        <f:facet name="header">
                             <h:outputText value="H1" id="HOne"/>
                        </f:facet>
                        <h:outputText value="#{var.caseID}" id="IDONE"/>
                   </h:column>
                   <h:column id="two">
                        <f:facet name="header">
                             <h:outputText value="H2" id="HTwo"/>
                        </f:facet>
                        <h:graphicImage value="imageServlet?file=#{var.PODocPath}" id="image"/>
                   </h:column>
              </h:dataTable>
         </h:form>
    </f:view>
    </body>
    </HTML>The image servlet is what i got from balusc's site (http://balusc.blogspot.com/2007/04/imageservlet.html).
    I dont know why my servlet is not getting called. Can someone help me with this pls?
    okay let me post the modified code for my image servlet here
    public class ImageServlet extends HttpServlet {
         private static final long serialVersionUID = 1L;
         public void doGet(HttpServletRequest request, HttpServletResponse response) {
            // Define base path somehow. You can define it as init-param of the servlet.
    //        String imageFilePath = "/images";
            // In a Windows environment with the Applicationserver running on the
            // c: volume, the above path is exactly the same as "c:\images".
            // In UNIX, it is just straightforward "/images".
            // If you have stored images in the WebContent of a WAR, for example in the
            // "/WEB-INF/images" folder, then you can retrieve the absolute path by:
            // String imageFilePath = getServletContext().getRealPath("/WEB-INF/images");
            // Get file name from request.
            String imageFileName = request.getParameter("file");
            System.out.println("Inside the image servlet ---->>>> " + imageFileName);
            // Check if file name is supplied to the request.
    //        if (imageFileName != null) {
    //            // Strip "../" and "..\" (avoid directory sniffing by hackers!).
    //            imageFileName = imageFileName.replaceAll("\\.+(\\\\|/)", "");
    //        } else {
    //            // Do your thing if the file name is not supplied to the request.
    //            // Throw an exception, or show default/warning image, or just ignore it.
    //            return;
            // Prepare file object.
            File imageFile = new File(imageFileName);
            // Check if file actually exists in filesystem.
            if (!imageFile.exists()) {
                // Do your thing if the file appears to be non-existing.
                // Throw an exception, or show default/warning image, or just ignore it.
                return;
            // Get content type by filename.
            String contentType = URLConnection.guessContentTypeFromName(imageFileName);
            // Check if file is actually an image (avoid download of other files by hackers!).
            // For all content types, see: http://www.w3schools.com/media/media_mimeref.asp
            if (contentType == null || !contentType.startsWith("image")) {
                // Do your thing if the file appears not being a real image.
                // Throw an exception, or show default/warning image, or just ignore it.
                return;
            // Prepare streams.
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open image file.
                input = new BufferedInputStream(new FileInputStream(imageFile));
                int contentLength = input.available();
                // Init servlet response.
                response.reset();
                response.setContentLength(contentLength);
                response.setContentType(contentType);
                response.setHeader(
                    "Content-disposition", "inline; filename=\"" + imageFileName + "\"");
                output = new BufferedOutputStream(response.getOutputStream());
                // Write file contents to response.
                while (contentLength-- > 0) {
                    output.write(input.read());
                // Finalize task.
                output.flush();
            } catch (IOException e) {
                // Something went wrong?
                e.printStackTrace();
            } finally {
                // Gently close streams.
                if (input != null) {
                    try {
                        input.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
                if (output != null) {
                    try {
                        output.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
        }

    Thanks Balusc!!
    I have made use of your code to display PDF files in an IFRAME tag too!!! I just dint believe that this would be possible. Please just take a look at my JSP page.
    <h:form id="CaseLookUp">
         <%
         String path = request.getContextPath()+"";
         out.print(path);
         %>
    <iframe scrolling="auto" src="<%=path%>/imageServlet?file=D:\70-229 V5.pdf" width="80%" height="600" ></iframe>
         </h:form>

  • Some font changes not displaying in PDF output

    Hello,
    I have Developer 2000 R 2.1 on my workstation and I produced a report from an Oracle table in PDF format. It displays different font weights, styles and colors (black or red) depending on values in a particular column. We have Oracle 8.0.5.2.1 and Reports30.
    The PDF report is perfect when it is displayed through the 'Live Previewer' or displayed using 'PDF' under 'Web Preview'. After I send my 'REPORT.rtf' to the server and compile using 'conv.sh', I get a 'REPORT.rep'. When I try to display the PDF report from a web page, using 'REPORT.rep', the some font changes are missing. No italics, no bold in some instances. It does show 'red', but not in all the correct places.
    What am I doing wrong?
    Thank you very much for any assistance.
    Paul

    Hi,
    the PO Output for Communication does not use the $OA_MEDIA variable so you have to provide the full path to your images, example url:{translate(concat('/d01/oracle/prodcomn/java/oracle/apps/media/',BILL_TO_LOGO),' ','')}
    Hope this helps as it works for us.
    Regards,
    Imtiyaz

  • ICal: multiuser option displays in Day view each user in separate column?

    I have been disappointed with the new iCal update. I do not see the option that would keep each calendar user in its own column when multiple calendars are displayed in iCal's Day view.
    In a multiple calendar display view, I would like to see my calendar items in column "A", and my wife's in column "B" side by side, and not intermixed.
    It is not acceptable that her empty slots are filled in with my items by expanding my column width to column "A" and column "B".
    It is not acceptable that if her calendar item starts five minute earlier than mine, then it is displaid in column "A" and my calendar item jumps to column "B".
    Is there a way in iCal to keep separate calendars in their own designated columns when displaid on multi calendar day view?

    I don't think there is another way for that. Did you try the pdf view?
    You can try using LRO's
    Regards
    Celvin

  • Unable to display a PDF image on the page - Mac 10.6

    Hi,
    Running an iMac with 10.6.8 and Indesign 5.0.4. Just wanting to export a PDF as per usual via File > Export function. However, I keep getting the error message, "Unable to display a PDF image on the page'. No idea what this is and have never seen this error before. The only info on the internet reveals error code 0x2511(9489).
    I've deleted prefs, closed down and re-opened Indesign and even restarted the computer. I've also re-linked the images contained in the document and even created a new document and set it up the same, but still the same problem. Investigating further, other Indesign documents still export properly.
    The only ones that don't export are 2 documents, both giving this same error message. Both documents are ones where a client has sent a PDF, I've imported into two of these into an 2-page A4 Indesign document (each PDF is 48MB each) and then just added a text layer (using Times) which is properly installed on the computer. I basically have to 'update' course dates for the client and add PDF to the website, all very basic.
    I've tried importing a jpeg and other PDFs into the file (replacing the existing ones) and they export fine.
    All my software is legal and I've exported this document before now in exactly the same File > Export without any problems (under 10.5 and 10.6).
    OK... I've just imported the offending PDFs into Acrobat, optimized and shrunk the file size, re-imported back to Indesign and the PDF export works fine. So it seems InDesign / PDF Export doesn't like large imported PDFs? I think they were originally exported from Publisher, so maybe that's the problem or a file conflict somehow.
    Any ideas on the culprit? I've googled it, searched these forums and Apple discussions and haven't found anything. Although I've found a workaround, I do get large files to import and then export. Thanks for any help
    Steve

    It does sound like a problem with the original PDF files the client sent you. You can check how they were made in Acrobat Pro from the Additional MetaData button on the Description tab of the document properties dialog. It will be under Advanced at the bottom of the list when the metadata opens.
    You might be able to salvage them by running the optimzer and not changing the size, or just doing a Save As in Acrobat.

  • Using the transaction launcher to call a BOR method to display a PDF

    Hello gurus,
    I have created a PDF icon and an onclick action to open a pdf, that displays on every row of an assignment block in the actions column, but I do not know the technical process to determine how to get a PDF from the IXOS system from the line selected. (even if I know it depends on an ID attribute of that assignment block) I want to to call a transaction launcher with the url for the pdf in the IXOS that has an ID that identifies which line in the assignment block the user has clicked the pdf icon for (does that make sense?)
    In CRM 4, in the collection factsheet assignment block, the link was coded into an XSLT which is then displayed in the GUI and you would have a clickable link for a pdf file in a row in a table. That link would be as follows:
             <xsl:variable name="ev_key">SAPEVENT:?OBJTYPE=<xsl:value-of select="attributes/OBJTYPE"/>&amp;OBJKEY=<xsl:value-of select="@KEY"/>&amp;LOGSYS=<xsl:value-of select="attributes/LOGSYS"/></xsl:variable>
                 <a href="{$ev_key}"></a>
    This will get the file in IXOS and display it, in CRM 4. In CRM 7, the link is an icon in every line of an assignment block.
    Here are some questions I have now for the functional side in the meantime:
    1) Can we fetch the PDF in IXOS for each line of an assignment block and have it open? If so, how? Transaction launcher, function modules (like ARCHIVOBJECT_DISPLAY) in the OPTA package? (the package for all IXOS related function modules..)
    2) Which URL should I call with the transaction launcher? a URL link to the PDF on the IXOS system?? or sapevent:xxx?
    3) Do we have to configure a transaction in the IMG to be launched with the attributes listed there? Do we have to link it to any classes/ objects?
    4) Do we have to have the code to the logical link dynamically to call the right PDF for each table line? Is it right to put this code in my event handler?? Usually transaction launchers are just in the nav bar.....
    5) Are there any existing examples of this or a similar functionality/ logic that I could refer to, preferably in CRM 7 WebUI?
    6) Do you have any code to just display a PDF in a new window? Or prompt a download?
    One possible way I thought of would be for me to have a logical link defined in the IMG for the transaction launcher, and have the attributes defined for my BOR object that I would call, and pass it different attributes (eg. objtype, objkey, logsys...) and then return the PDF and display it in the UI in a new browser window by itself. (There is a BOR method for my BOR object named  'display_pdf'!!!!)
    What do you think would be the optimal solution here? Does my theory of calling a BOR object with a transaction launcher to display a PDF make ANY sense whatsoever???
    Please do not hesitate to propose any potential solution. Any partial answers/ links to wikis/ other threads, anything would be much appreciated.
    Thank you in advance.
    Best regards,
    Jonathan Laplante
    Edited by: Jonathan Laplante on Jul 2, 2011 4:50 AM

    Hi Any help on this....I am still awaiting the response.
    Requirement: My requirement is to launch the SE38 transaction on WEBUI using transaction luncher tool and set the parameter on the selection screen.
    Issue: The issue is that I am able to lunch the transaction but unable to set the parameter
    Steps Performed:
    I want to list down all the steps I performed to launch an SE38 transaction using transaction launcher on the WEBUI
    1) Defined logical system in tcode CRMS_IC_CROSS_SYS
    -The logical link looks like this
    http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?transaction=IC_LTXE&okcode=ICEXECUTE ?sap-client=300
    2) Defined URL & paratemeter wherein the request method is "GET", opted for NON-BSP URL
    URL link here is
    http://<server>:<port>/sap/bc/gui/sap/its/webgui/!?transaction=SE38&okcode=ONLI
    -Note: My selection screen okcode os ONLI*
    -The logical system ref is provided here
    3) Defined the parameter by giving the screen name like for SE38 selection screen name is "RS38M-PROGRAMM"
    4) Configured the transaction launcher of type B - URL type and provided the reference of the URL ID, choose the relevant parameter from the drop down and have hardcoded the value, cheked the box "Save Data in Activity Clipboard
    5) Added this in the NAvlink/Bus Role etc
    6) Now in the handler class of the TL the code looks like this:
    IF_CRM_IC_ACTION_HANDLER~PREPARE_DATA_FLOW
    __gdc ?=
    cl_crm_ui_data_context_srv=>get_instance( gv_view_controller ).
    __value
    =
    'ZC_TEST'.
    add_parameter(
       iv_name =
    'RS38M-PROGRAMM'
    iv_value = __value ).
    However, after performing the above steps I am unable to set the parameter. Please suggest where am I missing out on. An early response would really be appreciated.

  • Two page display of pdf created in InDesign CS4 js

    Hi, I need to set page desplay for pdf created in InDesign to two page view and I couldn't find anything like that in OMV. I assume it will be setting preferances for Matadata. Would you be able to help me.
    Thank you.
    Yulia

    @Yulia:
    You can set all "open"-options with Acrobat Pro and you can automate this with a batch process under "Advanced => Document Processing => Batch Processing".
    Also there is a way to do that through pdfmark instructions inside a placed EPS. Documentation for doing a "Two-Up (Cover page)" with pdfmarks is not available in the pdfmarkReference_v9.pdf for the PageLayout-tag. And of course you have to use Distiller to get the pdfmarks working, no chance doing that trick with PDF export.
    Here is the pdfmark-code for an EPS you can work with (found and adapted it from the "PostScript & PDF-Bible" by Thomas Merz and Olaf Drümmer):
    %!PS-Adobe-3.0 EPSF-3.0
    %%BoundingBox: 0 0 72 72
    %%EndProlog
    /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse
    [ {ThisPage} << /Trans << /S /Dissolve >> >> /PUT pdfmark
    [ {Catalog} << /PageLayout /TwoColumnRight >> /PUT pdfmark
    %%EOF
    Save the code as a plain text file with the ".eps" suffix. Place it on any page you want to print of your InDesign layout, write a PostScript file and distill it to pdf. You should get a "Two-Up" view when opening it in Acrobat.
    Meanwhile (after doing a little research on the web) it seams that all possible "/PageLayout" parameter pairs are indeed documented, but not in the pdfmarkReference_v9.pdf, but in the PDF32000_2008.pdf on page 73:
    SinglePage     Display one page at a time
    OneColumn     Display the pages in one column
    TwoColumnLeft     Display the pages in two columns, with odd-numbered pages on the left
    TwoColumnRight     Display the pages in two columns, with odd-numbered pages on the right
    TwoPageLeft     (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the left
    TwoPageRight     (PDF 1.5) Display the pages two at a time, with odd-numbered pages on the right
    Default value: SinglePage.
    Uwe

  • Display a PDF returned as a base64 encoded clob from web service

    I'm trying to display a PDF document returned from a SOAP v1.1 web service. I'm able to return the XML into a collection using a process of type 'web service', but am struggling to display the document.
    This is the code I'm using to (attempt to) display the document, which doesn't return anything. If I exclude the clobbase642blob conversion an Adobe Reader pop-up appears, but I get an error message stating it is not a supported file type or the file has been damaged, which I would expect since it's a clob rather than a blob.
    DECLARE
      l_length    NUMBER;
      l_file_name VARCHAR2 (4000);
      l_file CLOB;
      l_blobfile BLOB;    
      l_ext VARCHAR2 (4000);
    BEGIN
      SELECT xtab."fileContent", xtab."fileName"
      INTO l_file, l_file_name
      FROM apex_collections c,
              XMLTable(XMLNAMESPACES(DEFAULT 'http://www.stellent.com/Payslip_Services/'),'//Payslip_Get_FileResponse/Payslip_Get_FileResult/downloadFile' passing xmltype001
                COLUMNS "fileContent" clob PATH 'fileContent'
                      , "fileName" PATH 'fileName'
              ) xtab
    where c.collection_name = 'P15_PAYSLIP_GET_FILE_RESULTS';
    l_blobfile := apex_web_service.clobbase642blob(l_file);
    l_length := DBMS_LOB.getlength(l_file);
      If INSTR (l_file_name, '.', -1, 1) > 0 then
          l_ext := SUBSTR (l_file_name, INSTR (l_file_name, '.', -1, 1) + 1);
      End if;
      IF (UPPER (l_ext) = 'PDF') THEN
        OWA_UTIL.mime_header ('application/pdf', FALSE);
      ELSIF (UPPER (l_ext) = 'DOC') THEN
        OWA_UTIL.mime_header ('application/msword', FALSE);
      ELSIF (UPPER (l_ext) = 'TXT') THEN
        OWA_UTIL.mime_header ('text/plain', FALSE);
      ELSIF (UPPER (l_ext) = 'HTML') THEN
        OWA_UTIL.mime_header ('text/html', FALSE);
      ELSE
        owa_util.mime_header('application/octet', FALSE );
      END IF;
      HTP.p ('Content-length: ' || l_length);
      HTP.p ( 'Content-Disposition: attachment; filename="' || l_file_name || '"' );
      OWA_UTIL.http_header_close;
      WPG_DOCLOAD.download_file (l_file);
    END;
    Apex 4.2.2
    Oracle 11g 11.2.0.1.0
    Any suggestions would be appreciated.
    Thanks,
    Graham

    What Adobe product is this a question for? This forum is for XML/API functionality for Adobe Connect. I'll move this question to the appropriate forum.

  • FireFox 33.1 will not display the PDF file from Bank online site after 33.1

    I asked this question in an unrelated support ticket so I want to give more detail here. I have tried uninstalling Adobe reader and reinstalling it and it did not help. This was working before with all the exact same addins I had before. I called the Bank and asked if they had any problems and they say no. I can go to the Firefox PDF display for this file and click on download the PDF then double click it in Windows explorer and Adobe reader comes up and displays the file just fine. Don't mind doing that for now. What happens is the bank loads the file then Adobe reader displays with a white screen and a little circle going round and round, like a video is trying to play, and it just sits there forever. I never see the file contents. Anyway I hope your have a good of a day as I am and I know it get better. Thanks Firefox programmers for such a wonderful program.
    Update: While I was writing this I remembered to go into Firefox options, then Applications, and wouldn't you know it, a PDF document was set to "Preview in Firefox". I changed that to Adobe reader and now it works just fine. Guess there's something wrong with the Preview code in Firefox. So I'm happy now. Hope this helps someone.

    Yes, the built-in PDF viewer is a work in progress. Glad you found a workaround, or got back to your preferred configuration, depending on how you look at it.

  • PDF viewer may not be able to display this type of document.

    I am trying to down load an HMRC file ChV1 which I believe is interactive (my layman's description - I have to fill it in) but I get the message ...
    "If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document. , etc.,
    I am using Windows 7 and Google Chrome
    But I have the latest version - Adobe Reader Version 11.0.10.  Can anyone help, please?
    Martin

    It may be that the "PDF form" is an XFA form created by LiveCycle Designer. These forms are wrapped in PDF and to view/use one must use Acrobat or Adobe Reader.
    BUT -- today one can use browsers that provide their own built-in PDF reader that cannot 'service' XFA forms.
    Google Chrome is one of those browsers. So, don't bother with trying to view/use/do any thing to - with PDFs when using Chrome.
    Save the PDF to your computer's HDD.
    Now, open the PDF with Adobe Reader XI (fully updated of course). Process the form.
    Be well...

  • Display word/pdf document in the HTML region or report

    Hi,
    How to display blob content stored in a table in HTML region or report region.
    I already have a process to display the image content.
    But my question here is how to display word/pdf document within the html region so that the user can read the document without downloading it.
    Any suggestions/solutions would be of great help.
    Thanks in advance...
    Thanks,
    Ramesh P.

    I was dead wrong.
    The display of images from BLOB is a special case because APEX provides a Display Image item type.
    Moreover, HTP/HTF packages also do not provide for handling of BLOB content. So AJAX cannot be used.
    Which implies that the only way to get binary content, other than images, is with the use of a WPG_DOCLOAD.DOWNLOAD_FILE call.
    This in turn implies that it may not be feasible to "inject" the BLOB into an exist HTML DOM in the Browser.
    Regards,

Maybe you are looking for

  • How to find out which version of OID, SSO, Portal, and Disco. to install?

    Hi, I just upgraded from 11.5.9 (DB 9.2.0.4) to 12.1.1 (DB 10.2.0.5) using Rapid Install Wizard. The 11i system did have Portal and Single Sign-On, and Discoverer 4i. How can I find out which version of these I can install and integrate with the new

  • Horizontal line safari

    Over the weekend my safari browser started drawing a horizontal line about 5 spaces up from the bottom edge.  Other apps don't have this line appearing on the screen.  iOS 6.1.2 is my current rev level.....this is not a show stopper but annoying.  Ha

  • DB_REP_JOIN_FAILURE when adding a new replicated environment

    Hello, I'm developing a replicated system using the Base Replication API. At the moment this works quite well except for the case that I add a new replicated site (Site N). On Site N I start with rep_start(NULL, DB_REP_CLIENT). After some messages ha

  • Assign a finder view of a directory to a particular space at login

    I have defined a spaces "space" for doing a particular task. I've assigned particular apps to that space. Those apps are in the dock and set to start at login. I also have a directory tree that contains all of the various data files that I use during

  • Unable to update my applications its showing time is out

    in my iphone 6 plus i cant update my applications its showing error every time. your network connection timeout. pls check your network onnection.