Value is blank in Smartform display

Hello Friends,
I had to hide one variable on the form and display the rest of the fields on the window. I did added the condition to the field but now  I see that the field below the one I hided is not getting printed on the form. I have not changed any output condition or any other change to this text element still it is not printing.Surprising it does get printed on development but when I moved it to quality it is not printing there ,not even 0.00 is displayed, its just blank. I have checked the lenght and lenght of the window is not a issue.
Can anyone have a clue what I might be missing.
Thanks,
AShwini

Hi,
Please verify the datatype ...Whether you are using char or Integer.
If c ( char)----- it will display space
   i ( integer)---- it will display 0.00.
Regards
Arbind
Edited by: Arbind Prasad on Jan 27, 2010 12:03 PM

Similar Messages

  • Displaying all rows if value is blank

    Hi all trying I am trying to display all the rows from a
    database if the default value is blank
    I have tried to put a * or ? in the php code What could be
    wrong here?
    What do I need to put for the variable section for the
    correct syntax
    As it its
    Name = p
    Type = numeric
    Default value = -1
    Run-Time value $_Get[‘p’]
    Cat = is the Variable to select the rows if a value is
    present
    $p_Recordset_B = "-1";
    if (isset($_GET['p'])) {
    $p_Recordset_B = (get_magic_quotes_gpc()) ? $_GET['p'] :
    addslashes($_GET['p']);
    SELECT Company FROM Table WHERE Cat = %s <> 'NULL'
    ORDER BY RAND() LIMIT 70

    I am also having this problem, except I have a search form with a list that contains 3 options "Select Country", "Canada", and "U.S." and if a user leaves the field as "Select Country" I want the results page to show the records for both Canada and US, is there a value that can be entered into the Default Value field?
    All help is appreciated.

  • To set default value as blank  in drop down by index

    Hi Experts ,
    I'm using Adaptive RFC model to get data from SAP and I've to create DropDownByIndex  and populate it with the data.
    I am getting data in the drop down but when my screen is displayed , I contains one of the values from the Drop down as default . But I want default value as blank .
    How to set blank value as default.
    Thanks in advance

    Hi
    U shuld Make the Node that Is Bound to the DropDown By Index Ui Element Selection Property as 0..1 and Not 1-1 which says that that it can hold even zero instance
    oh Sorry Valery i did not check ur Post
    Wishes
    Krishna kanth
    Message was edited by: krishna  kanth

  • Result row shows min. value as Blank.

    Hi Guru,
    I have following scenario in query,
    Eg.
    1.Values in objects in column,                           10,000
                                                                            Blank (no value)
                                                                            2,000
                                                                            Blank(No value)                     
    Result Row  shows                                         Blank (instead of 2,000)
    2. Values in same object in same column           10,000    
                                                                            2,000
                                                                            3,000
                                                                            1,000
    Result row shows                                          1,000 (which is Correct one)
    If value in column is blank then it is showing me minimum value as blank but in real it has to display min of all row, second if row  is not blank then it is showing correct min. value in result row (As mentioned in second examlp)
    Please suggest me what i have to do to get exact min. of  all values in Result row.
    Thanks,
    Ganesh.

    hi all,
    Thanks for contribution.
    But i want min. values from all rows in my result row.if it is not suppresed by Zero then also it hase to display min value (I MEAN fIGURE LIKE 2,000) from row.
    if i do supress Zero then it is diplaying as Blank hense all resulti row is display blank but i dont want that i want if row value is Zero or Blank it will display as min. of all figure NOT ZERO OR BLANK LIKE ABOVE EXAMPLE IT IS 2,000.
    Thanks,
    Ganesh.

  • [ASK] popup return value only able to be displayed in disabled inputtext

    Hi,
    I'm using Jdev 10.1.3.
    I have an inputtext and a commandbutton that triggers its value by selecting it from a popup window.
    The problem is the inputtext will be able to display the returned value only when its "disabled" attribute
    set to true. I need this inputtext to be enabled. Am i doing something wrong?
    This is what I'm doing:
    <af:panelGroup layout="horizontal">
          <af:inputText value="#{processScope.glCode}" binding="#{productBean.glCodeInputText}" disabled="true"
                                   id="glCodeValue" partialTriggers="dialogPopUpGlCode"
                                   required="true" requiredMessageDetail="Select a GL Code for this Product"/>
          <af:commandButton text="..." shortDesc="GL Code List" action="dialog:glCodePopUp" id="dialogPopUpGlCode"
                                   partialSubmit="true" useWindow="true" immediate="true" windowHeight="300" windowWidth="300"
                                   returnListener="#{productBean.onReturnFromSelectGlCodeDialog}">               
          </af:commandButton>
    </af:panelGroup>Backing bean:
        public String onReturnFromSelectGlCodeDialog(ReturnEvent returnEvent){
            returnGlCodeId = returnEvent.getReturnValue().toString();
            if (returnGlCodeId != null) {         
                PolicyMaintenanceModuleImpl policyMaintenanceModuleImpl = null;
                try {
                    policyMaintenanceModuleImpl = getPolicyMaintenanceModuleImpl();
                    Product_ParamGlCodeViewImpl paramGlCodeVo = (Product_ParamGlCodeViewImpl)policyMaintenanceModuleImpl.getProduct_ParamGlCodeView();
                    paramGlCodeVo.setWhereClause("PARAM_GL_CODE_ID = '"+returnGlCodeId+"'");
                    paramGlCodeVo.executeQuery();
                    while (paramGlCodeVo.hasNext()) {
                        Product_ParamGlCodeViewRowImpl row = (Product_ParamGlCodeViewRowImpl)paramGlCodeVo.next();
                        returnGlCode = row.getGlCode().toString();
                finally {
                    releaseAM(policyMaintenanceModuleImpl);
                ((AttributeBinding)getBindings().getControlBinding("GlCode")).setInputValue(returnGlCode);
                JSFUtil.setProcessObj("glCode",returnGlCode);
            return null;
        }Please help..T_T
    Thanks a lot..

    Thanks Shay, I've followed your suggestion but with no luck..
    <af:selectInputText required="true" columns="#{bindings.GlCode.displayWidth}"
                                            windowHeight="300" windowWidth="300" simple="true"
                                            action="dialog:glCodePopUp" value=""
                                            binding="#{productBean.selInputTextGlCode}"
                                            returnListener="#{productBean.handleGlCodeReturn}"/>What do I should put in the "value" attribute? I've tried #{bindings.GlCode.inputValue} but if I do that then the selectinputtext will displayed in zero length (just a small vertical grey line) and with no such that green flash light image on the right. Because the main page is an add new form, so for the first time all the input is blank.
    This is the handling method in the add-new-page back bean:
        public void handleGlCodeReturn(ReturnEvent returnEvent) {
            GlCodePopUpBean glCodeBean = (GlCodePopUpBean)returnEvent.getReturnValue();
            if(glCodeBean == null)return;
             //setter lines
             String glCodeId = glCodeBean.getGlCodeId();
             String glCode = glCodeBean.getGlCode(); 
             getSelInputTextGlCode().setValue(glCode);
             getSelInputTextGlCode().setSubmittedValue(null);
             ((AttributeBinding)getBindings().getControlBinding("ParamGlCodeId")).setInputValue(glCodeId);
             AdfFacesContext afContext = AdfFacesContext.getCurrentInstance();
             afContext.addPartialTarget(getSelInputTextGlCode());
        }I've printed out glCodeId, glCode and getSelInputTextGlCode().getValue() after the setter lines, and all of them printed the right value, but it just not displayed in the inputtext!
    I've also tried using processScope - #{processScope.glCode} - and it also failed in displaying the value in the inputtext.
    I wonder what's wrong?

  • RoboHelp10 - If we click on 'Show' link(button), blank page get displayed

    I am using,
    RoboHelp10
    IE9
    MSVS2010
    Win7
    Tried with below option,
    Flash Help -> we are working with it and has problem for our desktop/standalone wcf application.
    Flash Help Pro - > We know that RH server is req. for this option
    Web Help Pro- > We know that RH server is req. for this option
    Trouble in (Flash Help),
    1. When we invoke Flash Help with respective topic ID, it will not show requested topic page along with TOC, it will show default topic/page, which we set at the time creating help. Also it will display "Allow Blocked Content" button at the bottom. If we click on "Allow Blocked Content" it will display the above requested topic page correctly, but without TOC pane. This time we can see 'Show' button(link) on the browser. If we click on 'Show', blank page get displayed.
    2. When we are displaying content with option 'OptionConstants.CSH_DISPLAY_CONTEXT' it only show topic and it won't show me the TOC along with current selected topic page.
    3. When we are displaying content with option 'OptionConstants.CSH_DISPLAY_CONTEXT' it only show topic with 'Show' link. When we click on 'Show' link, blank page get display.
    4. Tool gives us facitlity to publish the Flash help, where we can choose the folder. This means that it publishes folder structure. We are using this folder structure (the published one) and on the top of that we are not getting expected(blank page get display) result.
    5. Published content does not contain any mapid/mapfile, if so whow it works correctly with RH development studio.
    6. Skin we were using 'beautiful_vista_flash.fhs'
    7. We build RH after setting Mozilla as the statup browser. We tried with Mozilla and IE but still our application opens help in IE. So not able to test in Mozilla.
    Please assist to resolve it.
    Thanks in advance.

    Thank you for your input.
    Working with "FlashHelp"
    Our req is files pages are deployed along with desktop(WPF) application locally and not on webserver.
    Referred following link,
    http://blogs.msdn.com/b/ieinternals/archive/2012/06/20/loading-local-files-in-enhanced-pro tected-mode-in-internet-explorer-10.aspx
    http://msdn.microsoft.com/en-us/library/ms537628%28v=vs.85%29.aspx
    and added below one liner code,
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- saved from url=(0014)about:internet -->
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    in each pages in the 'ProjectManager''s Project Files. And published the content of "FlashHelp".
    Again the same problem("Allow Blocked Content" button apprears and blank page get displayed, as explained in option #1 of the first post) persist.
    If i choose page and do viewsource then it will show blank line in place of <!-- saved from url=(0014)about:internet -->
    Code is as given below,
    <?xml version="1.0" encoding="utf-8" ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    We need to know that how to implement 'Mark of the Web' using RH development studio?
    Your input are appreciated.

  • 0ic_c03 storage location wise - Valuated Stock Value is Blank

    Dear Gurus,
    I have successfully loaded Inventory data as per standard document.
    Stock Qty and Value both are matching correctly at Plant Level, Material Level. All scenarios tested okay.
    But as soon as I drill down further by Storage Location, It shows only Stock Qty. Stock Value becomes Blank.
    Please suggest if anything missing in transformation or any assignment or routine.
    10 marks will be given if suggestion works, for hints also I will give some marks.
    Regards,
    Sachin
    Edited by: Sachin Sawant on Jun 26, 2010 5:38 PM

    Hi,
    Please check :
    Reports in BW with storage location and stock type chars.
    SAP Note Number: 589024 
    -Vikram

  • How to Add a New Filter Value in BEx WAD to Display All Result

    Hi experts,
    I want to add a new filter value in BEx WAD to display all data records. The scenario is as follows:
    The status field can have two values: Active ("A) and Inactive ("I").
    But the requirement is to have a third value to display all the data records (Active + Inactive). E.g. the value can be "G". The purpose is to increase the understandability for report users.
    Does anyone have an idea?
    Regards,
    Joon

    Hi Vineet,
    thanks for your reply. The problem is that there are only 2 values available for this Characteristic: "A" or "I".
    The requirement is to have a third value "G" (instead of the default "All Value") due to historical reason, because all future report users have been working with R/3 reports for quite some time and they are accustomed to using "G" for displaying all values.
    Is there any possibility to realize this?
    Thanks,
    Joon

  • Oracle Forms from 6i to 10g -only blank screen is displaying after deployme

    I have converted oracle Forms from 6i to 10g (almost 10 forms). In the development environment all 10 forms are working fine without any problems. I have deployed the forms in the server. Now all the forms are working fine except one form. Only blank screen is displaying in this case. What could be the reason? How to resolve this issue? This form is also working fine in the development environment.
    Thanks for all your suggestions.

    some possibilities:
    1. check the java console of the plugin you use (Jinitiator, Sun-plugin) and see if there are any errors reported.
    2. Do a full recompile of the form (ctrl+Shift+K, at least in german version)
    3. Maybe a navigation problem (seems unlikely for it works in dev-environment, but give it a try):
    Create a new block, put a navigable textitem in it and show that textitem on your canvas, but that block as first navigatin block in the form-properties.
    4. Check other Pre-triggers(Pre-block, pre-textitem) if they are executed and may fail.
    hope this helps

  • Blank adobe form displayed in  web dynpro application

    Hi,
                 I have created an Interactive Adobe form using web dynpro Java. When I run the form (in IE), a blank page is displayed.
    If I keep the Adobe reader open and run the form on IE, the form is opened in reader and it's working.
    When I access the same form on a different system, there is no problem.
    Does this have anything to do with the IE settings or Adobe Reader version/ updates.
    I have checked the adobe reader version and it's the same on both the systems.
    Version:
    Adobe Reader Version : 8.1.2.
    Adobe Designer 7.1
    SAP NW 2004s - SP 15
    Thank you,
    Vasu

    Not sure what the problem could be, here are some suggessionsu2026
    Check whether you have enabled the option Display PDF in browser in the Adobe Reader.
    I should be under:   Edit > Preference > Internet
    Also, in your Web Dynpro Application, try to set the u201CdisplayTypeu201D property of your Interactive form to ActiveX
    Else, just try upgrading your Adobe Reader to latest version!
    Hope this helps,
    Harman

  • F-90. asset value date field is not displayed

    Dear all
    In asset acquisition posting through F-90. asset value date field is not displayed at the time of entering acquisition. It is in supress mode. so system is capturing the capitalisation date. But we can see this capitalisation date as asset value date in fb03 display. Now i want to display this field as optional field while creating the entry and also i want to change the field in display mode to change mode. kindly tell me the menu path to access the settings.
    Thanks With  Regards
    RSS.

    Hi,
    You can enter a diff asset value date for your acq posting, only thru transaction ABSO using TType 100.
    This will resolve your issue.
    Thanks,
    Srinu

  • PROCESS ON VALUE-REQUEST - my table to display

    Hi all,
    this is my question:
    on value request i want to display a window with my personal values of an internal table and  choose one of them (like an help).
    field11 | field11 | field13
    field21 | field22 | field23
    field31 | field32 | field33
    field41 | field42 | field43
    How to do this?
    thanks a lot
    Regards.
    Massimo

    hI,
    refer this sample e.g.:
    F4 help – using internal table example:
    DATA: BEGIN OF LI_FABGRP OCCURS 0,
    FABGRP LIKE ZAPO_FABGRP-FABGRP,
    BEGDA LIKE ZAPO_FABGRP-BEGDA,
    END OF LI_FABGRP.
    DATA : T_RETURN TYPE STANDARD TABLE OF DDSHRETVAL WITH HEADER LINE,
    L_RETFIELD TYPE DFIES-FIELDNAME.
    parameters : S_FABGR like ZAPO_FABGRP-FABGRP.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR S_FABGR.
    SELECT FABGRP BEGDA FROM ZAPO_FABGRP INTO table LI_FABGRP.
    SORT LI_FABGRP BY FABGRP ASCENDING BEGDA DESCENDING.
    * Henter de mulige fabriksgrupper med nyeste BEGDA *indenfor hver
    DELETE ADJACENT DUPLICATES FROM LI_FABGRP COMPARING FABGRP.
    L_RETFIELD = 'FABGRP'.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    RETFIELD = L_RETFIELD
    DYNPPROG = SY-REPID
    DYNPNR = '1000'
    DYNPROFIELD = 'S_FABGR'
    VALUE_ORG = 'S'
    MULTIPLE_CHOICE = ' '
    TABLES
    VALUE_TAB = LI_FABGRP
    RETURN_TAB = T_RETURN
    EXCEPTIONS
    PARAMETER_ERROR = 1
    NO_VALUES_FOUND = 2
    OTHERS = 3.
    Jogdand M B

  • I need to create a image using some numeric values and i want to display values in image,

    I need to create a image using some numeric values and i want to display values in image, Numeric values be enterd by text file, excel file or user input by dialog box,
    this is the sample if image.
    http://s17.postimg.org/5xvtzbztn/5_01_03_I.png
    128 x 16 Pixels , Back ground Black, Numbers in Red, Should be same as above picture.
    Because i have hundreds of images to create like this.
    If any one can make a script for this it is very good.
    Sorry about my English.
    Thank you.

    Have you checked out data driven graphics?
    https://helpx.adobe.com/photoshop/using/creating-data-driven-graphics.html

  • How to get and disply dynamic values on the fly and display in applet

    hello all ,
    i have a problem in refreshing a applet.
    i have a scrolling applet which will get the share values from the database and display in a scrolling applet in the browser . i am getting the values and displaying it.
    but the problem is , if i enter a new record in the database, until and unless i press refresh button of the browser, i am not getting the new values . please help me if anybody having the idea. please mail me to [email protected]
    thank you all.
    by
    samba

    You want a database update to trigger an applet refresh? Can't be done.
    However, you can have the applet periodically re-query the database and update its display with the information it retrieves. Just kick off a Thread that sleeps for a bit, wakes up, queries the db, updates the display, and goes back to sleep.

  • Transfer Rule Routine: Assign Date Value into Blank Field

    Can anyone help me with regards to writing some ABAP code in a transfer rule so that I can assign "99991231" value into a date characteristics if it is blank?
    Many thanks for advance.

    I would like to check if the value of EXPIRYDATE is blank in data source. If its value is blank, assign '99991231' to it. Otherwise, it will get the value of EXPIRYDATE in transfer rule. I have rewritten the routine as follows. But there is no effects on the result.
    if TRAN_STRUCTURE-EXPIRYDATE IS INITIAL.
      RESULT = '99991231'.
    else.
      RESULT = TRAN_STRUCTURE-EXPIRYDATE.
    endif.
    Many thanks in advance.

Maybe you are looking for

  • How to convert fractional decimal number to hex number?

    Hi, Can any one help me to convert the fractional decimal number to its equivalent hex number and vice versa ? if u have any code please share. thanks neethu

  • OPEN CURSOR FOR  DELETE ROWS

    This transaction will work properly? I know it work but I have feeling it may cause a problem To open a cursor and delete the row I have selected. CREATE OR REPLACE PROCEDURE PRC_MAIN_INTER IS BEGIN BEGIN FOR A IN (SELECT B.HIST_ID FROM MOBIDEO.MAIN_

  • Incomplete Export data--No FI document generated

    Hi, Sales order created with subsequent delivery. Picking/ PGI done. Billing document generated. But it does not generates any accounting document. Gives message The accounting document has not yet been created. What could be missing here ?? Thx in a

  • Billing for shipment cost

    hi all, can anyone tell me how will add the calculated shipmet cost in to my billing,so that i adds to hte net value in the billing. please do guide me if any configuration is required. thanks.

  • Help on control events

    hi all i am doing the report in which the purchase order is not the first field in internal table and i cant even make as it is restricted..but still user needs to have that same order number should not be displayed...i tried using at new or on chang