Issue in populating input field

Hi all,
I have ceated a form view with an input field, Total overdue. Now I created a query whose output is just a number. I have placed that query on the iview and created a chart from that query and hide that chart. Now i create a formula for the input field on the form view and in the DATA Fields, I can see the field from that hidden chart and placed that field on the formula for the input field i.e.#ID[ACDMV]@Total_Overdue_Amount.
Now when i deploy the dashboard, form view field dispays as empty. Why it is so? It should be populated with the field "#ID[ACDMV]@Total_Overdue_Amount"
Can anyone pls help what is the issue?
Many Thanks.
Best Regards,
AI.

Hi
Just check, have you connected that form to the 'Output Port' of that chart? You need to connect that form either to the output of the 'Data Service (Query)' or to the chart output. Then only that formula will work.
Regards
Sandeep

Similar Messages

  • Issue of Text input field  in Where Tab of Migo During POST

    Hi Friend's,
    I m facing some issue In MIGO for Test Input field not showing in WHERE tabe during Display-Material  on POST it will showing during check but when i try to post it it will invisible text input field what will be issue..high preiority..
    Regard's,
    shaikh.khalid.

    ok .
    when i go migo and select GR and Purches order.after enter in below WHERE tab there is a text and input field of that when filling this i try to check it showin text and input field during check but once i press POST button and then go to where tab it not showing Text and input field both are invisible..
    1.In MIGO During GR-purchase order in Where tab Text and it’s input field are showing during CHeck tabe
    2.On POST it not showing Text Input Field both are invisible.

  • Issue with clear input field icons in IE10

    Hi,
    In IE10, every input field displays a clear icon (an "x").
    I need to remove these icons through CSS (if you delete the date field, an error is displayed).
    Following MS solutions are not working in ADF:
    input::-ms-clear { display: none; }
    or
    ::-ms-clear { display: none; }
    or
    input::-ms-clear { visibility: hidden; }
    or
    input::-ms-clear { width=0; height=0 }
    Thanks, kind regards,
    V
    jDeveloper version: 11.1.1.6.0

    It seems that a CSS solution should be removing height and line-height for the field and create a padding height:
    css - How to remove clear button ( 'X' button ) from IE10 textboxes in compatibility mode? - Stack Overf…
    Fir me it works (chaging accordingly the padding):
    .ie10f{
      height: 0px !important;
      line-height: 0px !important;
      padding-top: 22px !important;
      padding-bottom: 22px !important;

  • Issue with input field in table control

    Hi,
    I have an issue with field acgl_item-rstgr in the table control.
    I have created a screen program with a table control.
    In the control i have added a dictionary field as acgl_item-rstgr.
    When i execute, do f4 on the input field, select a value and press enter, then it is showing me
    error as 'Entry 'val' does not exist in T053R (check entry). Its really weird to understand this. I have selected the value
    from f4 and even then it says this. Its working for all other columns, but not working only for RSTGR.
    Plz help me on this regard.
    Code is like this.
    TYPES : BEGIN OF ty_rstgr,
              rstgr TYPE RSTGR,
             END OF ty_rstgr.
    TABLES : ACGL_ITEM.
    DATA : it_rstgr TYPE TABLE OF ty_rstgr.
    DATA : wa_rstgr TYPE  ty_rstgr.
    CONTROLS : table TYPE TABLEVIEW USING SCREEN 100.
    PROCESS BEFORE OUTPUT.
    MODULE STATUS_0100.
    LOOP AT it_rstgr INTO wa_rstgr WITH CONTROL TABLE.
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE USER_COMMAND_0100.
      LOOP AT it_rstgr.
      ENDLOOP.
    Thanks,

    Hi Navitha,
    Its Check Table concepts for the error u stated. Please check wht the Search help ur using...Because for this field there is no search help at value table level...Use search help that hold all master data or create a custom search field in SE11 level or in program level.
    Cheers,
    Naveen

  • Auto population of data to fields based on other input field.

    In overview screen, I have one input field "Business Partner" which contain search help.  As soon as business partner selected from dropdown, the other input fields like Name, Address, City, state should automatically populated without hit of 'ENTER' key.
    I verified with method DO_PREPARE_OUTPUT, but it is triggering only by hitting ENTER key. Is there any event or method which will trigger after business partner selected from dropdown? or any other option to achieve to auto populate the fields.
    Please find attached screen.
    Thanks in advance.

    Hi Narayana,
    You can use the get p method for setting up the values without pressing the enter.
    CASE iv_property.
        WHEN if_bsp_wd_model_setter_getter=>fp_fieldtype.
          rv_value = cl_bsp_dlc_view_descriptor=>field_type_picklist.
        WHEN if_bsp_wd_model_setter_getter=>fp_server_event.
          rv_value = 'AI_SELECT'.( you can give here the event name)
        WHEN OTHERS.
      ENDCASE.
    Define event with the same name above( AI_SELECT),
    You can set the value of fields based on the first field value within this event.
    Thanks,
    Dharmakasi.

  • EVS Input Field Issue in Production System.

    Dear Experts,
    In my WD Java application I'm Using Input Field and EVS to get the data as key value pair but the moment i click on input field to select the data entire back ground screen of portal iview getting blank, only EVS popup is visible.
    Same Application working fine on my test system, but it production its making portal backend screen blank.
    PS; My both Test and Porductoin Portal version is  NW 7.0 SP20.
    Any help would greatly appricated.
    Thanks
    AB

    Dear Experts,
    In my WD Java application I'm Using Input Field and EVS to get the data as key value pair but the moment i click on input field to select the data entire back ground screen of portal iview getting blank, only EVS popup is visible.
    Same Application working fine on my test system, but it production its making portal backend screen blank.
    PS; My both Test and Porductoin Portal version is  NW 7.0 SP20.
    Any help would greatly appricated.
    Thanks
    AB

  • Dynamic Input field creation - issue with bindValue in loop

    Hello,
    I am creating context node elements at runtime. My node looks like this -
    LocalNode
      Question
      Answer
    for(int i;i<wdContext.nodeLocalNode.size();i++)
    wdContext.nodeLocalNode().setLeadSelection(i);
      IWDTextView TV1 = (IWDTextView)view.createElement(IWDTextView.class,"TV"+i);
      TV1.setText(wdContext.currentLocalNodeElement().getQuestion());
       mainGrp.addChild(TV1);
       IWDInputField IP1 = (IWDInputField)view.createElement(IWDInputField.class,"TE"+i);                             
      IP1.bindValue("LocalNode.Answer");
       IP1.setValue(wdContext..currentLocalNodeElement().getAnswer());
       mainGrp.addChild(IP1);
    Please note: Question column is the textView and Answer column is the input field
    The output should be as follows-
    Question               Answer
    Header                  None
    How Many             7
    Comments             Maybe valid
    Do you agree        Yes
    Although the text view displays correctly, the input field only shows the last record value and the output currently displays as follows-
    Question               Answer
    Header                   Yes
    How Many             Yes
    Comments              Yes
    Do you agree         Yes
    What am I doing wrong here?
    How can I bind the corresponding values to the input field in a loop?
    Regards,
    Nisha

    Hi,
    Could you please provide the code .
    Regards,
    Sunil.

  • Digital signature and input fields issue

    Hello,
    I guess that I found some kind of BUG in forms. If you have a form with two text input fields, one as ID ot the field which is computed, read only (user can not change it) and regular value input text field, and digital signature field at the bottom.
    Once you sign the form, you can select on the signature field, what gets locked after signing. If I choose both text fields, they look like a label on the PDF after signing.
    What concerns me is once you remove the digital signature, the ID text field becomes edditable by the user, which is a bug in my opinion.
    Thanks for any suggestions.
    J

    I tried this and could not duplicate the behaviour that you reported.
    I created a form with two fields and a signature field.  The first field I set to "Calculated - Read Only", with the following script on the "Initialize" event,
    this.rawValue = "1234";
    I created a field collection that included the calculated field and associated it with the signature field. I opened the form, the calculated value appears and is read-only, I filled in the second field and signed the PDF. (Both fields were locked).  I cleared the signature field and the original Read Only calculated field remained locked, while the second field was editable again.
    I used Designer ES version 8.2.1
    Regards
    Steve

  • Not able to display the values in the input fields of the view

    Hi All.
    I am facing an unique issue.
    My custom element created in my custom node getting a null value
    from a Get Vendor Details RFC written in RFC.
    The values are getting populated in the custom element but not coming in the
    input field of the corresponding view.
    Then, I wrote this code
    wdContext.nodeCustom.setLeadSelection(1);
    and all the output came in the input field.
    Now, after a build it is not coming in the input fields of the view.
    All my custom nodes are Singleton and values are coming in the custom elements
    as I can print them by wdComponentApi.getMessageManager.reportSuccess(""+customnode.getField());
    All my nodes are Singleton.
    Please give your valuable inputs.
    Regards
    Kaushik Banerjee

    Hi
    Check the node property
    initializeLeadSelection     true
    if not make it true , I would suggest to make a value node of the same structure as in RFC after execuation of the RFC populate the value manually.Dont bind it directly to the UI element.
    BR
    Satish Kumar

  • How to use one pop up window for multiple buttons and input fields?

    Hi Experts,
    I have created a pop up window that will be opened from multiple buttons in the same view. There are input fields that the data will be populated from a pop up window.  How can I set up which button that a pop up window is opened from? I also would like to populate the data from a pop up window to the input field next to a clicked button. There are 6 buttons and 6 input fields that share the same pop up window. I would very appreciate your responses.
    Thank you,
    Don

    Hi,
    Try creating 2 context attributes, one in your component controller and the other in the pop-up view. Bind the attribute of pop-up view to the component controller attribute.
    In the main view, on click of every button set a unique code in the controller's context which helps you in identifying the button clicked. Since u have created a binding to the pop-up view attribute the value flows from the controller.
    In the init method of your pop-up view, check the value of the attribute and based on that display which ever UI elements are required.
    Eg:
    On Button 1 click set value "B1", Button 2  value "B2" etc. In the init() of pop-up view u can check the values and perform the required operation:
    if(("B1").wdContext().currentContextElement().getButtonIdentifier()){
    else...{
    Hope this helps you.
    Regards,
    Poojith MV

  • Input Field of Type Time Unable to Keep Input Value

    Hi,
    I am facing the following problem:
    I am using an input field of type time that initially its value comes from a BAPI call. I want though to be able to change its value and use the same field as import parameter for another BAPI. The value of the field is populated correctly from the first BAPI but when I try to change it, the value disappears and it does not keep what I type within the field i.e. the field remains empty.
    Could you please let me know how to resolve this problem?
    Thank you in advance.
    Kind Regards
    Michael

    which runtime do you use?
    which version of VC?

  • Assign a value from dropdownlist to input field value on BSP page

    Hi,
    I'm new to SAP and ABAP. We have a CRM project in which I have to maintain BSP pages.
    Now, coming to my problem: I have a input field with
    value = "//BTAdminH/HeaderInfo"
    This field is normally maintainable. The required function is now to set this field as not maintainable/readonly. Then, the value should be set automatically to an value, which will be selected from a dropdownListBox. After saving, the value HeaderInfo should have the same value like the selected value from the dropdownListBox.
    How can I now set the field as readonly (this should be the easier part) and
    how can I set the value for the HeaderInfo to the value of the selected value from the dropdownListBox?
    If I set it directly like this
    value = "//BTActivity/Priority"
    it is shown on the BSP page correclty, but it is not saved as HeaderInfo.
    Please help me.
    Enja

    Hello Gokul,
    test was only for test purposes! I am using as a separator the plus sign!
    But this is not the problem!
    In debugging, the local variable has the concatenated value! So, this is working!
    oncatenate ls_ddlb1-value ls_ddlb2-value ls_ddlb3-value into lv_headerinfo SEPARATED BY ' + '.
    But when I assign the value of my set_headerinfo to the local variable, then it is returning only the separator sign!!!
    if BTAdminH->GET_HEADERINFO( 'HEADERINFO' ) is initial.
        BTAdminH->SET_HEADERINFO( attribute_path = 'HEADERINFO' value = lv_headerinfo ).
      endif.
    If I declare the local variable as one of the dropdown values, then it is getting populated also for set_headerinfo
    lv_headerinfo  =ls_ddlb1-value.
    So, the assigning is also working! But it is not working, when the local variable equals more than one value! I hope that I could explained it in the right way for you!!!!
    So. why is the value for set_headerinfo not the same as the one for the local variable! The local variable has the correct value after the concatination.
    Regards
    Enja

  • How to make numbers in message text input  fields left aligned?

    Hi Friends
    I have completed one of my task .but getting result right side of the field.
    how to make numbers in message text input  fields left aligned?
    Thanks
    Aravinda

    Hi ,
    Sorry for late replay i am trying this alos not set that page....
    pageContext.forwardImmediatelyToCurrentPage(null, true, null);
    and one more that kff field working is fine for ex display any text pled displayed properly and only problem is not set the value and HrSitKeyFlex6 and HrSitKeyFlex7 fields are perfectly get the values but not pront HrSitKeyFlex8 that only my issue....
    Regards,
    Srini

  • Input fields vanishing with mouseover

    This bug seems to have started around FF14 and still persists to the latest version.
    In forms, all input fields will show as expected on page load. Then, when you move your mouse across the fields, some (but not all) will vanish and reappear, seemingly randomly. This occurs with both input text and select form elements. You can still type in the text field or select options from the drop-down but it is challenging to do so as the elements do not appear properly.
    Some possible, but inconsistent, fixes are applying styles with specific pixel font sizes, and setting background colours on the form elements.

    I'm having the same issue as JennyWren. I've tried the suggestions by cor-el, unfortunately nothing has worked for me either.
    Are there any other suggestions out there?
    I will keep on working on this and update this thread when I come across some sort of solution... I have this strange suspicion that the answer lies in some dark CSS.

  • Limitation on the number of characters in an input field

    Hi All,
    We are on EP 7.0 SP12.
    When I select an input field/text editor and map it to a field in a BAPI it truncates the value to 80 characters and thus I get the truncated value in the result.
    When I pass a value larger than 80 characters in length while doing test data service, it works fine and I face this issue only while passing the data from the screen. Is this a bug in VC? Or if any one has a solution to this?
    Regards,
    Murtuza

    Hi Ganesh,
    Following are the Answers regaring your queries:
    Query : 1
    There is no limitation on the number of components (objects, classes, tables, joins, hierarchies, lov's, etc) in a universe. But of course as the number of components increases, you could run into problems  related to performance.
    This depends on available RAM and the processing speed.
    Query 2:
    There is NO such option to select the number of table to be automatically inserted in to the universe because Suppose if you have 22000 tables in DB and you want only 1000 table ,you entered 1000 tables as the value to insert tables in Universe then How Designer will come to know which tables you want to take in Schema to build the Universe?
    It all depends on the DBA and Universe Designer which tables are important for organizations reporting needs.
    When you  create connection to the DB then Connection will fetch all table from the database and we canu2019t limit  DB data retrieval.
    I hope this Helps...
    Thanks...
    Pratik

Maybe you are looking for

  • Index and Alpha transparencies

    This is a multi-part message in MIME format. ------=_NextPart_000_0008_01C73F09.CBD4E090 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable I am saving images in Gif with a transparent background and it gives m

  • Using a username and password to access the network

    Dear gents, i am trying to make the access to the network via 2 things : SSID's key first , then using a username and password to connect, or at least username and password. i have aironet 1130ag , and 40 users. Any suggestions..

  • Data change Event for Information Broadcasting

    Hello Forum This is regarding problem with "Data change Event for Information Broadcasting". We have integrated the evening in a separate chain which is scheduled after the transaction data load. In the settings for the event we have mentioned the in

  • HT4623 Greyed out sync to phone button

    Hi I have an iphone 4, which used to be synced with my Mothers itunes, but with my own username and password etc, I have now got itunes of my own and made a purchase tonight on itunes, however this tune will not go on to my phone for some reason...I

  • Add custom long text in MM01/02/03

    Hii ,  expert ? I need to add custom long text  in MM beside existing basic data text, inspection text, internal comment , purchasing text ,sales text , How to do it ? Thanks ads