Merge field won't display if number is 0.00

When the value 0.00 is brought into the word document via merge field, nothing displays.  If the value is greater than 0.00, it displays that value.  Is there way to display the 0.00?

To control number & currency formatting in Word, add a numeric picture switch to the mergefield. To
do this:
• select the field (e.g. «MyData»);
• press Shift-F9 to reveal the field coding. It should look something like {MERGEFIELD MyData};
• edit the field so that you get {MERGEFIELD MyData \# $,0.00} (or whatever other numeric format you prefer - see below);
• position the cursor anywhere in this field and press F9 to update it;
• run your mailmerge.
Note1: The '\# $,0.00' in the field is referred to as a numeric picture switch. Other possibilities include:
• \# 0 for rounded whole numbers
• \# ,0 for rounded whole numbers with a thousands separator
• \# ,0.00 for numbers accurate to two decimal places, with a thousands
separator
• \# $,0 for rounded whole dollars with a thousands separator
• \# "$,0.00;($,0.00);'-'" for currency, with brackets around negative numbers and a hyphen for 0 values.
The precision of the displayed value is controlled by the '0.00'. You can use anything from '0' to '0.000000000000000'. 
If you use a final ';' in the formatting switch with nothing following, (eg \# "$,0.00;($,0.00);") zero values will be suppressed. Note that this suppresses 0s resulting from empty fields and from fields containing 0s.
If the above doesn't resolve your issue, it may be that the expected zeros are actually empty fields. In that case, you should be able to get the desired output by embedding the MERGEFIELD in a formula field, thus:
• select the field (e.g. «MyData»);
• press Ctrl-F9 to embed the field in another field, thus { «MyData» };
• edit the field code so you get {=«MyData» \# $,0.00} (or whatever other numeric format you prefer);
• position the cursor anywhere in this field and press F9 to update it;
• run your mailmerge.
Cheers
Paul Edstein
[MS MVP - Word]

Similar Messages

  • Database field won't display

    I'm new to Crystal Reports in .NET but I do have my 1st report working except for one field that I'm trying to use in a sub report.  It's in my database fields just like the other field for the sub report.  I can see data for both fields in the Browse Data.  One field and it's heading display just fine but I can't see the other one anywhere.  The field heading that's created when I drag it into the Detail area won't display in the report either.  I've tried deleting the field and readding it but nothing helps.  As far as I know I've done nothing to suppress this field from printing.  I REALLY need to get this working.  Thanks for your help.

    Hello Paul,
    I recommend to post this query to the [.NET Development - Crystal Reports|SAP Crystal Reports, version for Visual Studio; forum.
    That forum is monitored by qualified technicians and you will get a faster response there.
    Also, all Crystal Reports .NET Development queries remain in one place and thus can
    be easily searched in one place.
    Thanks a lot,
    Falk

  • Calculated field won't display on canvas

    I am importing login and logout times to Xcelsius v 5.4.0.0 using a web service.  Once the data is imported I am calculating the minutes between the login and logout by subtracting the login from the logout in the Xcelsius spreadsheet.
    I import DATE, USER, LOGIN, & LOGOUT to columns A:D in  my spreadsheet.  Column E contains the formula D2 - C2 to calculate the minutes, where D2 is the logout and C2 is the login.
    I cannot get the calculated times to display on the canvas.  I have tried both a list view and a spreadsheet table.  I set the DISPLAY DATA property of either the list view or spreadsheet table to columns A:E in my spreadsheet.  When I do Preview and import my data, all the data shows up EXCEPT THE MINUTES CALCULATION.  That field is always blank.
    I tried displaying the raw data tab, and the minutes calc is always blank. I created another tab named display data, added formulas to it to copy over the info from the raw data tab and tried displaying that instead.  I thought perhaps the actual calculation was causing a problem.  That didnu2019t work either.  The minutes calc column is always blank.
    I tried changing the format of the labels in the spreadsheet table or list view from general to numeric to time, but it makes no difference.  There is no data in the column to format.
    If I paste data into the spreadsheet while in design mode, the calculated minutes DO APPEAR in the list view on the canvas.  If I then go to Preview mode, the data is still there, including the calculated minutes. However as soon as I give it a new date range in Preview mode and refresh the data through the web service, the minutes column is again blank.
    Since the list view does display the calculated minutes if I paste data in the spreadsheet in design mode, and since the exported spreadsheet snapshot contains the correct calculations when I import data using the web service,  it appears that the data is being displayed on the canvas before the time calculations are taking place, resulting in a blank column.
    Has anyone else experienced this?  What am I doing wrong?  I am sure I should be able to do this, but evidently donu2019t understand how. Iu2019ve attached the exported spreadsheet snapshot as a reference.
    Thanks!

    Hi there - I checked your site on my PC and it does not display. I've found this on a number iWeb created site, so you are not alone.
    However, I have found iWeb created sites that display well on PC's, they are http://leapfrogenterprise.com and http://donandkasha.com - if you view the 'source', notice they used frames to display their site... Best wishes on your project, Rick
    iMac G5 iSight 20" - 30G iPOD - HP Pav 15" WS and Toshiba Sat 17" WS   Mac OS X (10.4.7)   Canon 20D & A620

  • Formula field won't display

    Post Author: Richard bates
    CA Forum: General
    Sorry for the overly-generic subject, but I'm not exactly sure how to classify this problem.  I'm convinced it's a Crystal Reports bug but would be delighted to be convinced otherwise.  Here's the issue:
    Whenever I create a formula field in the format of trim(field A) " "trim(fieldB) and use the field in a report, if field B is null the data for the entire field will be skipped in the report.  Doesn't matter if the formula is in a group header or the detail line, the result is the same.  I've created a formula with the obvious conditionals, ie, if field B is null then trim(field A) else trim(fieldA)" " trim(fieldB) but that doesn't work either.  I am trying to combine two address lines.  In most cases there is not a second address field, so most addresses don't display using this method.  Someone on another board suggested a workaround which I am using (placing the second address line in it's own group and then suppressing the group when empty) but I have another instance where this won't work, ie, in the detail line.  I'm trying to actually combined three fields (first name, last name, and title).  In this case it is title which is usually blank.
    Am I missing something head-slapping obvious here?
    Thanks in advance
    Richard Bates

    Post Author: foghat
    CA Forum: General
    Seems to me I've come across the same thing way back.  It is a crystal thing, bug or just the odd way crystal does some stuff, I'm not sure (is there a difference?)  I can't remember what my fix was, think I may have had some logic similar to what you tried, but I had more than 2 address fields to compare, it sucked. You could try this (basic syntax):dim str0 as stringdim str1 as stringstr0 = trim{field A}str1 = iif (isnull ( {field B} ), "", trim {field B})formula = str0 & " " & str1 Add the iff logic to str0 as well if field A can be null. Things like this are why, when possible, I like to build as much logic as possible into a database view and then just use crystal for displaying the data.

  • IPhone 3G won't display own number

    I have upgraded from the iPhone to the new iPhone 3G. My old iPhone would always display my own number at the top of the contacts page. This doesn't appear on my new iPhone 3G. I have taken the SIM out of the phone and put it into another to check if my own number is set ok on the sim card and it looks fine. Any way of getting this working?

    dontae919 wrote:
    I have a US 3G iPhone I picked up on Friday (7/11), and it does show my own # on the contact list. It's above the "search" field.
    I agree. Mine does this also. I think what is confusing is that when tap the top of the list, it goes to the search field. You need to "pull" the screen down a little to see the number. So it's still there, but it doesn't jump to the top to show you the number like it used to on the older software.

  • Form fields won't display input information

    We are having a very odd issue that's happened on two occassions. We have a basic PDF form where someone has input information into various fields, but the information doesn't display, unless you click within the field. At that point you can see what's been typed in. As soon as you tab to the next field, the information is no longer visable -- it's still there, but you can't see it. I don't know if this is relavent, but it's interesting that one part of the form has some checkboxes and that information displays with no problem.
    One form was one we created in-house, and we've been using it for about 9 months with no problems at all. The other form is an external form that was sent to us.
    Neither of these are a LiveCycle designer form.
    We get the same results regardless of whether we open within Mac or Windows.
    Both forms, in their final state, were emailed to us via an outside source (different, unrelated sources). That seems to be the only common attribute.
    Any ideas?

    One thing you can try is opening the form in Acrobat, exporting the form data to an FDF file, and re-import it.
    You can also run a JavaScript the will correct things as much as possible. For example, see: http://blogs.adobe.com/pdfdevjunkie/script_to_fix_mac_osx_previewa.html
    I've written a script that is more comprehensive in that it addresses other type of fields. Post again if you'd like it.
    Please note, though, that any of these methods can only do so much. Preview screws things up in a way that's not easily reversible.

  • My iPhone 4s won't display my contact names in my message, although the number is still linked to the correct contact in my phone book

    My iPhone 4s won't display my contact names in my message, although the number is still linked to the correct contact in my phone book.
    Recently updated with iOS 5.1.1, I've read elsewhere about a possible bug associated with the update?

    Hello, Sue.Darby. 
    Thank you for visiting Apple Support Communities. 
    I would recommend having your friend check to see if call and message blocking is enabled on their end.  Here is some information regarding that feature. 
    iOS 7: Understanding call and message blocking
    http://support.apple.com/kb/ht5845
    -Jason H. 

  • How to increase the number of fields to be displayed in search tab

    HI,
    I have and opportunity search tabOPP_DISPLAY_SEARCH_RESULT.   Currently it is displaying only 9 fields .  I have 12 fields as mandatory fields but 3 fields are missing still how to get them.   We need to enforce this for all users.
    Thanks
    Naveen

    Hi Raj,
    Thank you for the reply but the problem is if you see in the personalization we see the fields but I want to make it displayed so that default search list contains the field.  The field which I was see by default is a EEWB field and another thing is there any way to remove the number of fields to be displayed as Currently I see only 9 fields in the default list.   How can i increase it.
    thanks
    naveen

  • List view to include a column or field which would display the sequence number in a view

    I have a view for a list which displays items following any condition or sorting. Now, i would like to display the list items in such  a way that
    the auto incremented numbers are displayed as an arbitary field which would display the numbers such that
    its just going to display items in sequence. Is there anything that can be done in sharepoint designer for the list to accomodate a column/field which would display the sequence numbers.
    Thanks

    There are columns such as
    Name, Goals
    and  it should be arranged in descending order of Goals and it could be paginated but also a column should be displayed for ranks e.g
    Name Goals Rank
    A          40     1
    B          39     2
    C          30     3
    So, the idea is the ways it is sorted in descending order, if we possibly have a counter then we could display the ranking of the items.
    Thanks

  • Adding a merge field to an email hyperlink in a word 2010 email mailmerge

    I am using word 2010, excel 2010, and outlook 2010 to send out the following email with email mailmerge to 50 + people.
    The highlighted names in the greeting are two merge fields - First_Name and Last_Name.
    The hyperlink is an email hyperlink to the following email message:
    Will you attend?   ___ Yes   ___  No
    The hyperlink is as follows:
    I would like to place the merge First_Name Last_Name in the hyperlink to sign the RSVP email back to me. I have tried many modifications of the hyperlink code and nothing works consistently. It will place one name as the signer but will not pick up
    the following names the merge fields.
    I would like the final email hyperlink to look like this:
    Will you attend?   ___ Yes   ___  No
    Jody Smith
    Can anyone tell me how to add the First_Name Last_Name to the hyperlink email so that each ricipient's name from the original email will appear in the hyperlink email as shown
    above?
    Thanks!
    Ben

    Hi All,
    To help other community members who may have similar problem, I quote Peter Jamieson's answer here:
    (Edited a little...)
    I can get this to work here, but there are some things you need to pay attention to when merging to HTML email (rather than to new documents etc.).
    The Hyperlink field code I start with is as follows:
    { HYPERLINK }
    Insert that using ctrl-F9 to insert the special field brace pair { }, insert the Word HYPERLINK, then select the field and update it using F9.
    View the field code results (press Alt-F9 if necessary). In the English language version of Word you should see 
    Error! Hyperlink reference not valid.
    Important point number 1:
    Do not update the result of this HYPERLINK field again (i.e. don't select it and press F9). If you do, every email will always show the same link text. As
    far as I can remember, this behaviour is different when you merge to a document rather than email, or perhaps merge to attachments. This can be a problem if you need to update other fields in your email, or if the email is being used by other people who might
    (for whatever reason) update the HYPERLINK field
    Now modify the display text.
    Use the Arrow keys to move the insertion point so it is between the "E" and the "r" in the Word "Error", and type
    Click here to RSVP!
    Then you can select and delete the "E", and the "rror! Hyperlink reference not valid."
    Select the text and apply the Hyperlink style to it (Home tab of the Ribbon->Styles).
    When you toggle field code display using alt-F9, you should see the original field
    { HYPERLINK }
    Now click after the K of HYPERLINK and insert the following fields and text (or copy them from somewhere else):
     "{ SET x 1 }mailto:*** Email address is removed for privacy ***?subject=July%20Wine%20and%20Spine%20&body=%20Will%20you%20attend?%20%20%20___%20Yes%20%20%20___%20No%0A%20%0a%2{
    MERGEFIELD First_Name%20{MERGEFIELD Last_Name }"
    so that your field now looks like
    { HYPERLINK "{ SET x 1 }mailto:*** Email address is removed for privacy ***?subject=July%20Wine%20and%20Spine%20&body=%20Will%20you%20attend?%20%20%20___%20Yes%20%20%20___%20No%0A%20%0a%2{
    MERGEFIELD First_Name%20{MERGEFIELD Last_Name }" }
    As usual, all the {} need to be the special field code brace pairs that you can enter using ctrl-F9 on WIndows Word.
    At this point, experienced field users will have to resist the temptation to select the fields and update them. Dont do it!
    Save the document.
    Test the email merge. At this point, I would hope to see the results you want.
    If not, I do not know why this works OK on my system but not yours.
    Important point number 2 You may be wondering why
    there is a { SET x 1 } field inside the HYPERLINK code. It's because when you are working with a .docx, if you save, close and reopen your document, you may find that Word has resolved all the merge fields nested inside your HYPERLINK field (i.e. replaced
    the field codes by their results). This behaviour can appear arbitrary, and the reason that (for some reason), Word does not resolve the nested fields if there is a Word bookmark inside the HYPERLINK field. Now if the insertion point or selection ws inside
    the HYPERLINK field when you save/close the document, there will be a bookmark in there, because Word inserts a bookmark called _GoBack, which enables the user to go back to the previous selection. But if you click outside the HYPERLINK field before you save,
    there wil be no such bookmark and Word will resolve your field codes. So we put the { SET x 1 } in there to ensure that there is a bookmark (in this case, called X) to prevent that from happening.
    Alternatively, if you save as .doc format (not recommended these days if you can avoid it) Word does not resolve these fields and you don't need the { SET } field.
    And that's it. Whether that will be enough for your Merge to work as you hope, I cannot be sure, but all I can say is that without doing those 2 things, it almost certainly
    won't.
    [[I originally had a third thing. I actually now think it's incorrect, but I'm going to leave it here just in case.
    Important point number 3: If it does not work, there is
    at least one other thing that could be wrong, although I think it is highly unlikely. There is a Windows registry setting called FieldCalcSecurityLevel, which was introduced about 12 years ago when Microsoft made some security-related changes to the behaviour
    of certain types of field. I'm not going to step through how to look for that, but for example, in my registry, for Word 2010, it is at
    HKEY_CURRENT_USER\Software\Microsoft\Office\14.0\Word\Options
    It may be elsewhere.
    If you cannot find that Option, or it is there and is set to the default value (1), then something else is wrong and I do not know what it is. However, if it is set to 0 (which
    makes Word use its original behaviour, you will have to set it to 1 to get this to work.
    Thanks for your understanding.
    Steve Fan
    TechNet Community Support

  • After installing new HDD, some iPhoto Events/Photos won't display

    Problem: I upgraded to 1TB HDD a couple of days ago and tried to use the System Restore from Backup under Disk Utility. It never worked, got to a blue screen and just hung. So I reloaded Snow Leopard and then used Setup Assistant to move Apps/Files/Settings from my Time Machine Backup.
    Today I was going through files to see if anything was missing and found a number of Events from 2010 that wouldn't display in iPhoto '08, just dark squares but with the event name underneath.
    Rolling the mouse over the empty square displayed the correct number of photos for the event but photos wouldn't display.
    Next I "Browsed" the Time Machine Backup (from iPhoto) and the same Events were also empty on Time Machine Backups.
    The funny thing is the empty events are scattered meaning I have a full Events from Feb and March 2010 but empty events from Jan, Feb and May 2010. And then when I go into the Empty Events on Time Machine, I can call up the photo number but the photo won't display.
    Is there a way to recover these photos? I'm pretty sure there on the TM backup and also on my new HDD.
    As a "suspenders/belt" type person, I have the photos backed up on a Windows PC but rather work through this problem first.
    iMac 20" 2.4 Ghz Mac OS X (10.6.4) AEBSn AXg

    You can enter TM while in iPhoto and do a search for some of the missing photos by file name. When you find a version that appears to have them in exit TM, go to your Pictures folder, reenter TM, go to that version and restore the entire library. I'd keep both your current library and the restored. Then you can check to see if the missing photos are in the restored library.
    If neither library have all of the photos but do combined you can use the paid version of iPhoto Library Manager to merge the two libraries into a new 3rd library setting the option to not import duplicates. That should get you a complete library.
    OT
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • ALV won't display

    Hi all,
    I'm at internship and have to learn ALV.
    The below code won't display anything. Am i doing something worng?
    REPORT  ZRE_PRM2_LIST_DISPLAY.
    *-- Global data definitions for ALV
    *--- ALV Grid instance reference
    DATA gr_alvgrid TYPE REF TO cl_gui_alv_grid .
    *--- Name of the custom control added on the screen
    DATA gc_custom_control_name TYPE scrfname VALUE 'CC_ALV' .
    *-- Custom container instance reference
    DATA gr_ccontainer TYPE REF TO cl_gui_custom_container .
    *-- Field catalog table
    DATA gt_fieldcat TYPE lvc_t_fcat .
    *-- Layout Structure
    DATA gs_layout TYPE lvc_s_layo .
    **-- Internal table
    DATA gt_list TYPE zprm2_material occurs 0 with header line .
    * START OF SELECTION
    START-OF-SELECTION .
    PERFORM get_data .
    PERFORM display_alv .
    *&      Form  display ALV
    *       Display selected PRM2 data.
    FORM display_alv .
      IF gr_alvgrid IS INITIAL .
    *---- Creating custom container instance
        CREATE OBJECT GR_CCONTAINER
          EXPORTING
            CONTAINER_NAME              = gc_custom_control_name
          EXCEPTIONS
            CNTL_ERROR                  = 1
            CNTL_SYSTEM_ERROR           = 2
            CREATE_ERROR                = 3
            LIFETIME_ERROR              = 4
            LIFETIME_DYNPRO_DYNPRO_LINK = 5
            others                      = 6
        IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
        CREATE OBJECT GR_ALVGRID
          EXPORTING
            I_PARENT          = gr_ccontainer
          EXCEPTIONS
            ERROR_CNTL_CREATE = 1
            ERROR_CNTL_INIT   = 2
            ERROR_CNTL_LINK   = 3
            ERROR_DP_CREATE   = 4
            others            = 5
        IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    *----Preparing field catalog
        PERFORM prepare_field_catalog CHANGING gt_fieldcat .
    *----Preparing layout structure
        PERFORM prepare_layout CHANGING gs_layout .
        CALL METHOD gr_alvgrid->SET_TABLE_FOR_FIRST_DISPLAY
          EXPORTING
    *        I_BUFFER_ACTIVE               =
    *        I_BYPASSING_BUFFER            =
    *        I_CONSISTENCY_CHECK           =
    *        I_STRUCTURE_NAME              = 'zprm2_material'
    *        IS_VARIANT                    =
    *        I_SAVE                        =
    *        I_DEFAULT                     = 'X'
            IS_LAYOUT                     = gs_layout
    *        IS_PRINT                      =
    *        IT_SPECIAL_GROUPS             =
    *        IT_TOOLBAR_EXCLUDING          =
    *        IT_HYPERLINK                  =
    *        IT_ALV_GRAPHICS               =
    *        IT_EXCEPT_QINFO               =
    *        IR_SALV_ADAPTER               =
          CHANGING
            IT_OUTTAB                     = gt_list[]
            IT_FIELDCATALOG               = gt_fieldcat
    *        IT_SORT                       =
    *        IT_FILTER                     =
          EXCEPTIONS
            INVALID_PARAMETER_COMBINATION = 1
            PROGRAM_ERROR                 = 2
            TOO_MANY_LINES                = 3
            others                        = 4
        IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF .
    ENDFORM .
    *&      Form  get_data
    *       GET data from prm2 tables.
    FORM get_data .
      select * from zprm2_material into gt_list .
        APPEND gt_list .
      ENDSELECT.
    ENDFORM .
    FORM prepare_field_catalog CHANGING pt_fieldcat TYPE lvc_t_fcat .
      DATA ls_fcat type lvc_s_fcat .
      CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
       EXPORTING
         I_STRUCTURE_NAME             = 'zprm2_material'
        CHANGING
          CT_FIELDCAT                  = pt_fieldcat[]
       EXCEPTIONS
         INCONSISTENT_INTERFACE       = 1
         PROGRAM_ERROR                = 2
         OTHERS                       = 3
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM .
    FORM prepare_layout CHANGING ps_layout TYPE lvc_s_layo .
      ps_layout-zebra = 'X' .
      ps_layout-grid_title = 'PRM2' .
      ps_layout-smalltitle = 'X'.
    ENDFORM .

    I made these changes:
    DATA gr_ccontainer TYPE REF TO cl_gui_dialogbox_container .
    so i changed the reference of the container to cl_gui_dialogbox_container, and...
        CREATE OBJECT GR_CCONTAINER
          EXPORTING
            width                       = 1000
           height                      = 250
            top                         = 50
            left                        = 50
            caption                     = 'TEST'
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5.
        IF SY-SUBRC <> 0.
         MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
    Changed this method. Now it says that the fieldcatalog is empty.
    I just want it to auto create the container. Is it a possibility?

  • Fields not getting displayed in Sapscript

    Hi Guyz,
    I have a customized Sapscript form ZPV_INVOICE and its print program RVADIN01. This form outputs the Sales Invoice. When the print preview is triggered, Material number (MATNR) is not getting displayed on the form. However, when the form is debugged, MATNR values are properly fetched and showed (while debugging only, not in output).
    Can somebody please let me know the reason, why the MATNR is not getting displayed on the output, even though it is showing values while debugging.
    Thanks in advance !

    Hi ,
    Then check matnr  field which is display  is same  what you are checking  in debugging  .
    COnfirm  the field   and check whether data stays till end of module   .
    regards
    Deepak.

  • How do you get the custom fields added to a address book to show up on Pages 09 when merging fields?

    I created some custom fields in the address book and want to get them merged into a Pages 09 document.  When using the merge fields feature in Pages, only the standard fields are displayed.  I am looking for a way to have the custom fields from the address book inserted into the document.

    I believe you will find them if you go to table - unhide all columns.  When you drag and drop card(s) into pages, it automatically shows default fields.  The others are there but hidden.  I hope this works for you!

  • SWF Won't Display in RoboHelp Project

    Hi,
    I have a RoboHelp 9 HTML project that has a number of SWF files embedded in a number of the pages. The problem is the SWF won't display on the HTML page. The SWF files are published to version 11.x. The HTML pages work fine on my computer but I have Robohelp and Flash Pro installed. When I take it to any other computer in my office, the HTML pages load with no problem but the SWF files will not load onto the pages. Any help is appreciated.
    Thanks

    So you are saying that the SWF *WAS* actually displaying but was somehow unable to present the text?
    For others that may wonder about what TLF is (as I did) I'll save you the Google step.
    Click here to view
    Cheers... Rick

Maybe you are looking for