A font package is requried to correctly display after creating interactive form in livecycle

SO I created a form in acrobat. When I save it, and open it in reader, it opens it fine. But I need to make the fields expandable, so I go to livecycle, and create an interactive form with flowable layout. Once i save it, and open it in reader, it instructs me to download chinese font package. There are no chinese fonts in this document. And I only get this message after saving the form in LiveCycle.  Any ideas?  It just started happening last week. Never had a problem before that.

Hey buddy, I experienced similar problem.
When you creating the form, make sure the font you are selecting is a popular font. For example, if you change it to New Time Roman instead of SimSun, it will work.
Try it!

Similar Messages

  • A font pagckage is required to correctly display this page

    I have installed the latest Adobe reader in my computer. What I need to do?

    There should be a link to download the font package. But if there isn't, try this, the pack needed most often for Reader XI: Adobe - Adobe Reader : For Windows : Adobe Reader 11.0.09 Font Packs - Asian and Extended Language Pack

  • Blank page displayed while Deploying interactive forms

    Hi ,
    I am Facing a problem with interactive forms. i am using Adobe interactive forms in Web Dynpro. while deploying interactive forms ,the Deployment result shows blank view.
    i have installed ACF, Adobe reader 7.0.
    i am using NWDS 04s SP16.
    help me if anyone knows the solution.
    Regards
    Sridhar

    HI
    Add Interactive form to existing view
    Go to properties of IForm.
    Select trying display type = native instead of ActiveX.
    Give height and width according to need (say height=700 px and width= 100%)
    Add pdf_source attribute into context of view of type binary.
    Also bind elements to context node which is necessary.
    Mandeep Virk

  • Adaptive RFC - WD Java - Display Smartform in Interactive Form (PDF)

    Hi everyone, i need your help. I get data type xstring from my backend function module. This data will use to fill property PDF Source from my Interactive Form UI Element in my iView. But before i get this data, my backend function module throw exception like this :
    <b>"com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Please maintain an output device in your user master data., error key: RFC_ERROR_SYSTEM_FAILURE"</b>
    And The print stack trace :
    <b>com.sap.aii.proxy.framework.core.BaseProxyException: Please maintain an output device in your user master data., error key: RFC_ERROR_SYSTEM_FAILURE
        at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150)
        at com.cnooc.performancemanagementsystem.model.getappraiseedetail.GetAppraiseeDetail.z_Hr_Pms_Display_Appr_Form(GetAppraiseeDetail.java:196)
        at com.cnooc.performancemanagementsystem.model.getappraiseedetail.Z_Hr_Pms_Display_Appr_Form_Input.doExecute(Z_Hr_Pms_Display_Appr_Form_Input.java:137)
        at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92)
        at com.cnooc.performancemanagementsystem.Core.executeZ_Hr_Pms_Display_ApprForm(Core.java:1083)
    </b>
    I have search in this forum, but i cannot find similiar case. I suspect if the size of xstring (byte[] in Java) is too big (approximately 8 MB), is this the cause i get the exception ?
    My code in custom controller like this :
    <b> public void executeZ_Hr_Pms_Display_ApprForm( )
        //@@begin executeZ_Hr_Pms_Display_ApprForm()
        GetAppraiseeDetail model = (GetAppraiseeDetail)WDModelFactory.getModelInstance(GetAppraiseeDetail.class);
        Z_Hr_Pms_Display_Appr_Form_Input inputDisplay = new Z_Hr_Pms_Display_Appr_Form_Input();
        wdContext.nodeDisplaySmartForm().bind(inputDisplay);
        Zappraisal_Param_Struc.Zappraisal_Param_Struc_List listForm = new Zappraisal_Param_Struc.Zappraisal_Param_Struc_List();
         Zappraisal_Param_Struc elementForm = new Zappraisal_Param_Struc();
         elementForm.setPernr("20071000");
         elementForm.setBegda("20070101");
         elementForm.setEndda("99991231");
         elementForm.setOrgeh("");
         elementForm.setPlans("");
         elementForm.setStell("");
         elementForm.setEname("");
         elementForm.setPhase("C");
         elementForm.setAtype("A");
         elementForm.setSpras("EN");
         listForm.addZappraisal_Param_Struc(elementForm);
         inputDisplay.setT_Appraisal_Param(listForm);
         wdContext.currentDisplaySmartFormElement().setP_Caller(" ");
         wdContext.currentDisplaySmartFormElement().setP_Langu("E");
         wdContext.currentDisplaySmartFormElement().setP_Type("A");
        try
              wdContext.currentDisplaySmartFormElement().modelObject().execute();
         catch(WDDynamicRFCExecuteException e)
              logger.traceThrowableT( Severity.ERROR, "executeZ_Hr_Pms_Display_ApprForm( )", "ERROR", e );
              model.disconnectIfAlive();
              e.printStackTrace();
              throw new FeedbackException( e );
         catch(WDRuntimeException e1)
              logger.traceThrowableT( Severity.ERROR, "executeZ_Hr_Pms_Display_ApprForm( )", "ERROR", e1 );
              model.disconnectIfAlive();
              throw new FeedbackException( e1 );
         wdContext.nodeReturnDisplayForm().invalidate();     
         wdContext.nodeOutputDisplayForm().invalidate();
         model.disconnectIfAlive();
        //@@end
      }</b>
    My context like this
    <b>- DisplaySmartForm (model node)
    --OutputDisplayForm (model node)
    ---ReturnDisplayForm(model node)
    ---T_Appraisal_Param_Output(model node)
    ---T_PDF_Lines (model node)
    ---Bin_File (model value)
    ---P_Bin_Size (model node) --> display size of bin_file (xstring)
    --T_Appraisal_Param
    --P_Caller
    --P_Langu
    --P_Type
    </b>
    My parameter FM like this :
    <b>FUNCTION z_hr_pms_display_appr_form.
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(P_CALLER) TYPE  CHAR1 DEFAULT 'X'
    *"     VALUE(P_LANGU) TYPE  SYLANGU DEFAULT SY-LANGU
    *"     VALUE(P_TYPE) TYPE  CHAR1 DEFAULT 'A'
    *"  EXPORTING
    *"     VALUE(RETURN) TYPE  BAPIRETURN
    *"     VALUE(BIN_FILE) TYPE  XSTRING
    *"     VALUE(P_BIN_SIZE) TYPE  I
    *"  TABLES
    *"      T_APPRAISAL_PARAM STRUCTURE  ZAPPRAISAL_PARAM_STRUC
    *"      T_PDF_LINES STRUCTURE  TLINE OPTIONAL
    </b>
    Please anyone, can you help me ? Thank you.
    Regards,
    Satria B

    Hi guys, I still not solve this problem. Strange that my RFC can call successfully when execute through R3 (SE37) but when i call this in my webdynpro application, i get exception "Please maintain output device" (this strange because i have set default output device in SU01 for user that execute this function in webdynpro)
        CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
          EXPORTING
            formname           = v_form_name
          IMPORTING
            fm_name            = v_funcname
          EXCEPTIONS
            no_form            = 1
            no_function_module = 2
            OTHERS             = 3.
        IF sy-subrc <> 0.
          CALL FUNCTION 'BALW_BAPIRETURN_GET'
            EXPORTING
              type       = 'E'
              cl         = 'ZH'
              number     = '036'
            IMPORTING
              bapireturn = return.
          EXIT.
        ENDIF.
        "Data used only by stream creation.
        DATA: ctr_param TYPE ssfctrlop,
              out_opt   TYPE ssfcompop,
              out_info  TYPE ssfcrescl,
              lt_pdf_lines TYPE STANDARD TABLE OF tline.
        ctr_param-no_dialog = 'X'.
        ctr_param-preview   = space.
        ctr_param-getotf    = 'X'.
               out_opt-tdnoprev = 'X'.
        out_opt-tddest = 'JKT018MISLJB2-01'.
        CALL FUNCTION v_funcname
             EXPORTING
                    ARCHIVE_INDEX              =
                    ARCHIVE_INDEX_TAB          =
                    ARCHIVE_PARAMETERS         =
              control_parameters         = ctr_param
                    MAIL_APPL_OBJ              =
                    MAIL_RECIPIENT             =
                    MAIL_SENDER                =
              output_options             = out_opt
                    USER_SETTINGS              = 'X'
             v_year                        = v_year
             v_ename                       = v_ename
             v_pernr                       = v_pernr
             v_position                    = v_position
             v_department                  = v_department
             v_jobfam                      = v_jobfam
             v_last_promotion              = v_last_promotion
             v_appr_no                     = v_appr_no
             v_appr_nm                     = v_appr_nm
             v_evmy                        = v_evmy
             v_evey                        = v_evey
             v_evcc                        = v_evcc
             v_evmc                        = v_evmc
             v_evjf                        = v_evjf
             v_eeio                        = v_eeio
             v_eent                        = v_eent
             v_eest                        = v_eest
             v_eetd                        = v_eetd
             v_ka_score                    = v_ka_score
             v_ka_weight                   = v_ka_weight
             v_cc_score                    = v_cc_score
             v_mc_score                    = v_mc_score
             v_jf_score                    = v_jf_score
             v_weight                      = v_weight
             v_tot_score                   = v_tot_score
             v_cc_subtotal                 = v_cc_subtotal
             v_mc_subtotal                 = v_mc_subtotal
             v_jf_subtotal                 = v_jf_subtotal
             ls_competency_cc_form1        = ls_competency_cc_form1
             ls_competency_cc_form2        = ls_competency_cc_form2
             ls_competency_cc_form3        = ls_competency_cc_form3
             ls_competency_cc_form4        = ls_competency_cc_form4
             ls_competency_cc_form5        = ls_competency_cc_form5
             ls_competency_cc_form6        = ls_competency_cc_form6
             ls_competency_cc_form7        = ls_competency_cc_form7
             ls_competency_mc_form1        = ls_competency_mc_form1
             ls_competency_mc_form2        = ls_competency_mc_form2
             ls_competency_mc_form3        = ls_competency_mc_form3
             ls_competency_jf_form1        = ls_competency_jf_form1
             ls_competency_jf_form2        = ls_competency_jf_form2
             ls_competency_jf_form3        = ls_competency_jf_form3
         IMPORTING
                  document_output_info       =
           job_output_info            = out_info
                  JOB_OUTPUT_OPTIONS         =
          TABLES
            t_emp_strength        = lt_emp_strength
            t_emp_imprv_opp       = lt_emp_imprv_opp
            t_train_dev_need      = lt_train_dev_need
            t_emp_notes           = lt_emp_notes
            t_key_acct            = lt_key_acct
            t_evmy                = lt_evmy
            t_evey                = lt_evey
            t_competency          = lt_competency
         EXCEPTIONS
           formatting_error           = 1
           internal_error             = 2
           send_error                 = 3
           user_canceled              = 4
           OTHERS                     = 5.
        IF sy-subrc <> 0.
          DATA: v_message1 TYPE SY-MSGV1,
                v_message2 TYPE SY-MSGV2,
                v_message3 TYPE SY-MSGV3,
                v_message4 TYPE SY-MSGV4.
    <b>     v_message1 = sy-msgid.
          v_message2 = sy-msgno.
          v_message3 = v_department.
          v_message4 = v_jobfam.
          CALL FUNCTION 'BALW_BAPIRETURN_GET'
            EXPORTING
              type       = 'E'
              cl         = 'ZH'
              number     = '000'
              par1       = v_message1
              par2       = v_message2
              par3       = v_message3
              par4       = v_message4
             IMPORTING
              bapireturn = return.
          EXIT.
        ENDIF.</b>
    When i print this bapi_return message in my iview,I get this <b>SSFCOMPOSER 010</b> which is "Please maintain output device" (SE91).
    Can anyone help me ?
    Thank you and Regards,
    Satria B

  • Monitor does not correctly display after waking up from suspend

    Hello,
    Awesome WM. I use systemctl suspend to put my computer to sleep. It works fine, however, when I press the power button on my system unit, the computer wakes up but the image is distorted completely so I cannot see what is where... Quiting Awesome WM (win + shift + q, if I remember correctly) and logging back helps, but is not really convenient. I have tried to find a solution for the problem and, as you most likely surmised, with no success.

    http://en.wikipedia.org/wiki/Compositin … w_managers
    https://wiki.archlinux.org/index.php/Co … #Composite
    Have you checked your logs for what is happening after waking up?
    Last edited by emeres (2013-10-13 19:35:50)

  • How to display grid the interactive form

    Dear All
    I m trying to print the grid into the interactive form using adobe life cycle 8.1.
    My requirement is like I am getting the value in my local node in the view. From there i have to populate those value into the Pdf.
    So that user can take the print of the pdf.
    Value are getting in local. But it is not showing in the PDF. At the same time in other value are showing success fully only inthe table i am not able to get the value.
    Kindly help me out with your document or solution note
    Prashant Krishen

    Hi Prashant,
    For populating a table on a pdf the node structure should be different.
    You need to create node structure of the data which you want to show in Table like this
    DataNode            0..n
        SubNode         1..1
              att1
              att2
    Create the elements of DataNode only and set the attribute values.
    Now create the structure of the UI element in Form like this
    Subform1
            Subform2
                   Header1
                   Header2
            Subform3
                   Textfield1
                   Textfield2
    Bind the Subform3 to the node DataNode and Textfield1 and Textfield2 to att1 and att2 respectively.
    Set the 'Repeat Subform to each data Item* property of Subform3 to true.
    Now at runtime you will get all the data of the node in PDF form as a Table.
    Regards
    Ravindra

  • Japanese font package being required for form without Japanese

    I created a form in Adobe Acrobat Pro using (as far as I know) all English characters.  I saved the form and am now trying to open it on another computer that has Acrobat Reader X.  The error message I'm receiving is "A font package is required to correctly display this page.  Click OK to direct your browser to download the add-on from adobe.com...."  The font package that it wants me to load is Japanese.  Once I load that font pack, the form opens without any problems.
    I'm not the only one having this problem, others who are trying to open the form are experiencing the same difficulty.
    So, why does Reader think my form contains Japanese fonts, and how do I get rid of them so others can open the form without having to install a font package?
    Thanks!

    As far as I can see, there are no asian characters there.  Here are the fonts listed:
    BellGothicStd-Bold
    FuturaBT-BoldCondensed
    FuturaBT-Book
    FuturaBT-BookItalic
    FuturaBT-Light
    FuturaBT-LightItalic
    Helvetica
    KozMinPr6N-Regular
    ZaphDingbats
    ZaphDingbatsItCbyBT-Regular
    Thanks again!

  • A font package is required

    I am trying to open a form on the sac county court website, but I am unable to.  I have confirmed that I have the latest version of Reader.   It gives me an error.  It says "a font package is required to correctly display this page".  And continues on and asks me to click OK.  When I do this, nothing happens and I am still unable to open the contents of the document.  I disabled my internet security to see if it was blocking it, but I don't know what else to do.  I had this problem several months ago on this website, but never resolved the issue.  It has to be on my end.

    Assuming that your "latest version" is Reader 11.0.6, you may need to install the Extended Font Pack.
    Windows: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5508
    Macintosh: http://www.adobe.com/support/downloads/detail.jsp?ftpID=5509

  • Font package?

    I am trying to open a PDF file using Adobe Reader X.  I get a message telling me I need to download a font package add-on, which I have done, yet, I continue to get the message.  Any advise?

    I'm experiencing the same thing. Adobe Reader 10.1.9 is installed on Windows 7 but I cannot open pdf file.
    Message: A font package is required to correctly display this page.
    I tried installing Adobe - Adobe Reader : For Windows : Adobe Reader X Font Packs - extended languages
    but the issue still persist.

  • How to display an Adobe Print form using FM's FP_JOB_* in WebDynpro

    Hi Experts,
    I have requirement to display an Adobe Interactive form on clicking of an UI element on the Webdynpro screen. I am using FM's FP_FUNCTION_MODULE_NAME, FP_JOB_OPEN and FP_JOB_CLOSE from report and it works fine. How to use this Fm's in Webdynpro to display that PDF.
    Thanks in advance,
    Pradeep Reddy

    Hello,
    thtis is not how it works. You don´t use this coding to display the form in WD. In fact WD is handling the form itself. If that is a print form, you just need to place the Interactive form element on your WD screen, specify the template source (the form template) and do the coding in WD init. And there is no problem if the form is SFP based.
    If this one is an interactive one, you need to set enable to true and do NOT use SFP based template. Also use the right form elements according to your layout type (ACF, ZCI), for ZCI insert the WD script.
    I can provide some more details if there will be any other problem/ detail.
    Regards, Otto

  • Font package needed to display page

    When opening a pdf a pop-up box appears indicating a "required font package is required to display page...and to click OK to direct browser to download font package from adobe.com...but nothing happens.  How can I get this downloaded?

    Hello Pat,
    Thank you for your reply. I have a Mac OS-X Operating System and the Adobe Reader Vision 11.0.06. Is that the information you required?
    The Message I got was exactly as stated by SKenny. After one clicked on the OK Button, nothing happened. Only could read parts of the pdf Document on Display.
    It would be great if you could help,
    MHLager

  • After I optimize my pdf I get this error  "Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly.

    After I optimize my pdf I get this error  "Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly.

    This Acrobat forum may be a better place to ask: https://forums.adobe.com/community/acrobat/creating__editing_%26_exporting_pdfs

  • Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly

    After I optimize my pdf I get this error  "Cannot extract the embedded font 'FONT NAME' Some characters may not display or print correctly.
    Acrobat X 10.1.10
    I am optimizing to create a smaller lores file to email .

    I am not trying to remove the font.
    I am trying to reduce the size of the file to email.
    After optimizing the file this error pops up.
    I have tried changing the setting for fonts but no success.

  • Some XML customizing not displayed correctly in graphic in PDF form

    Hello,
    we have following problem: We want to create a read-only PDF with an integrated graphic with analytical data.
    The PDF form is created with SFP. Data is extracted and the graphic rendered with the class CL_IGS_CHART_ENGINE.
    We used SAP chart designer and transformed the XML into our string.
    The graphic is displayed in our PDF, but some customizing settings in our XML are neglected, especially the font type, her only courier is displayed. Also some manual positions of legends don't work.
    When I display the chart in the SAP GUI using cl_gui_chart_engine everything works fine, so  I assume that the XML and the  transformation is correct.
    So where is the problem: Mime type? codepage? printing job?
    Thanks and Regards
    Andreas

    Hello,
    I would like to know what type of scenario do you use. Is that WD form? Or offline form?
    Based on the type, you may find your solution here:
    When you need to send a picture into the offline form: another image question - using Regular ABAP not web dynpro and Display a logo dynamically in adobe form
    For the WD form: /people/bhawanidutt.dabral/blog/2007/11/15/how-to133-integrate-adobe-form-on-webdynpro-for-abap-and-deploy-it-on-portal
    What MIME type (picture type) has your generated picture? JPG for example is ok, but for exotic types please check in your LCD (place Image on the layout and open the dialog for picture assignment, you can see the allowed picture types in there).
    Regards, Otto
    p.s.: What is the mentioned XML customizing? XML is the form of the femplate, but I have never customized anything IN THERE. Did you change the XML source manually? Or what type of changes are not managed correctly?

  • How to set the font of label in ColumnChart correctly?

    hello, everybody
    By flex sdk 4.1.0, 4.5.1,
    the same source but two effects of font of label of ColumnChart will be displayed.
    .mxml:
    <!-- mxml start -->
    <?xml version="1.0" encoding="utf-8"?>
    <s:BorderContainer xmlns:fx="http://ns.adobe.com/mxml/2009"
                       xmlns:s="library://ns.adobe.com/flex/spark"
                       xmlns:mx="library://ns.adobe.com/flex/mx"
                       width="100%" height="100%"
                       styleName="backgroundChart" xmlns:local="*" xmlns:common="common.*">
        <fx:Declarations>
            <s:SolidColorStroke id="white" weight="1" color="#CCCCCC"/>
        </fx:Declarations>
        <s:Label text="" id="titleLabel" textAlign="left" styleName="graphLabel" x="10" y="10" width="100%" height="40" visible="true"/>
        <mx:Legend id="ch01Legend" direction="horizontal" dataProvider="{mainChart}" height="100%" width="100%" x="30" y="30" styleName="myLegend1"/>
        <!-- Define custom Strokes. -->
        <mx:ColumnChart id="mainChart" showDataTips="true" x="20" y="60" width="100%" height="100%" dataTipFunction="dataTip">
            <mx:backgroundElements>
                <mx:GridLines horizontalChangeCount="1" gridDirection="horizontal">
                    <mx:horizontalStroke>{white}</mx:horizontalStroke>
                </mx:GridLines>
            </mx:backgroundElements>
            <mx:verticalAxisRenderers>
                <mx:AxisRenderer axis="{linearAxis}" showLine="true" showLabels="true" styleName="myAxisStyle1">
                    <mx:axisStroke>{white}</mx:axisStroke>
                </mx:AxisRenderer>
            </mx:verticalAxisRenderers>
            <mx:verticalAxis>
                <mx:LinearAxis id="linearAxis"
                               minimum="0"
                               autoAdjust="true"
                               title="Unit"
                               />
            </mx:verticalAxis>
            <mx:horizontalAxisRenderers>
                <mx:AxisRenderer id="horizonLabel" labelRotation="45" axis="{ch01_a2}" showLine="true" showLabels="true" styleName="myAxisStyle3">
                    <mx:axisStroke>{white}</mx:axisStroke>
                </mx:AxisRenderer>
            </mx:horizontalAxisRenderers>
            <mx:horizontalAxis>
                <mx:CategoryAxis id="ch01_a2"
                                 dataProvider="{mainChart}"
                                 title="Period"
                                 categoryField="Period"
                                 />               
            </mx:horizontalAxis>
        </mx:ColumnChart>
    </s:BorderContainer>
    <!-- mxml end -->
    .css
    <!-- css start -->
    .myAxisStyle1 {
        placement:bottom;
        minorTickPlacement:none;
        tickLength:5;
        tickPlacement:none;
        color:#FFFFFF;
        verticalAxisTitleAlignment:vertical;
        fontFamily: Arial_AFE;
    .myAxisStyle3 {
        placement:bottom;
        minorTickPlacement:inside;
        tickLength:5;
        tickPlacement:inside;
        color:#FFFFFF;
        fontFamily: Arial_AFE;
    @font-face {
        src:url("font/arial.ttf");
        fontFamily: Arial_AFE;
        embedAsCFF: false;
    <!-- css end -->
    environment:
    flex sdks->4.1.0
    chart image:
    the font looks like "Arial"
    environment:
    flex sdks->4.5.1
    chart image:
    the font looks like "Times New Roman"
    Working at flex sdks 4.5.1,
    the labelClass can be set to 'spark.components.Label'(defalut) or 'mx.controls.Label',
    it seems that we can set labelClass to mx.controls.Label to get the same effect of font of label in ColumnChart when flex sdks->4.5.1
                <mx:AxisRenderer axis="{linearAxis}" showLine="true" showLabels="true" styleName="myAxisStyle1" labelClass="mx.controls.Label">
                <mx:AxisRenderer id="horizonLabel" labelRotation="45" axis="{ch01_a2}" showLine="true" showLabels="true" styleName="myAxisStyle3" labelClass="mx.controls.Label">
    but it also causes a memory leak.
    1) Can anyone tell me how to show the font of label of ColumnChart correctly (looks like "Arial") when using the labelClass 'spark.components.Label' ?
    2) Can anyone tell me how to solve the memory leak when using the labelClass 'mx.controls.Label'?

    Hi,
    for combobox in a table (I assume the combobox is shown un column 2, thus the index 1)
    oracle.jbo.uicli.jui.JUTableLOVEditor lovCellEditor = (oracle.jbo.uicli.jui.JUTableLOVEditor) jTable1.getColumnModel().getColumn(1).getCellEditor();
    lovCellEditor.getComponent().setFont(new Font("Arial",Font.BOLD,13));
    For the LOV panel this is a bit more complicated because you need to create a custom LOV panel as described in http://www.oracle.com/technology/products/jdev/howtos/10g/jclientlov/customadfjclientlovpanel.html
    I filed a bug today to expose the component on a LOV to public so they can be modified
    Frank

Maybe you are looking for