CUF display or input

Hi,
In BBP_CUF_BADI_2, how to code that a CUF field is to be displayed or hidden ?
We try
wa_fields-xdisplay = 'X'.
or
wa_fields-xinput = 'X'.
without any success ?
Did anybody already succeed in doing this ?
Kind regards,
Yann

Hi Yann,
How are you doing ?
<b>Inside Method Modify_screen of BBP_CUF_BADI_2 Implementation, please use this sample code, which will definitely help -></b>
METHOD if_ex_bbp_cuf_badi_2~modify_screen.
  DATA                ls_et_fields TYPE bbps_cuf_display.
  LOOP AT et_fields INTO ls_et_fields.
    CASE ls_et_fields-fieldname.
*--- The z field is displayed & input enabled
      WHEN 'ZZFIELDNAME'.
        ls_et_fields-xdisplay = 'X'.
        ls_et_fields-xinput   = 'X'.
        MODIFY et_fields FROM ls_et_fields
               TRANSPORTING xdisplay xinput.
        CLEAR ls_et_fields.
      WHEN OTHERS.
*--- do nothing
    ENDCASE.
  ENDLOOP.
ENDMETHOD.
Do let me know.
Regards
- Atul

Similar Messages

  • Problem in displaying variable input screen

    Hi,
    I am trying to execute the query. I created Characteristic with User entry variable on some characteristics. But at the time of execution it is not displaying variable input boxes for inserting the input. It is giving blanck white in colour. It is strucking this process. Even I am opening other queries also it is giving the same problem. So please give me appropriate solution for this.

    Dear Purushottam,
    Check the variable again...in the Details tab
    Check the VARIABLE IS READY for INPUT check box.
    Regards,
    Ram.

  • How to display my input history values on Filename filed (selection screen)

    Hi All,
    Please let me know how to display my input history values under the field of selection screen.
    I created Zprogram as below.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
      PARAMETERS: P_FILE  TYPE RLGRAP-FILENAME OBLIGATORY.
    SELECTION-SCREEN END OF BLOCK B1.
    I displayed a selection screen of my Zprogram, my cursor put on P_FILE field, and enter BACKSPACE key,
    so it doesn't display my input history values.
    Of course I've selected Local Data History 'ON' of my GUI option,
    so it's displayed my input history values on any other fields.
    If you know why, please let me know.
    Regards,
    Rie.

    In the GUI options, there is also a setting for the maximum length of fields for storing the history, maybe it is set to small, as your selection field is length 128.
    Alternatively you can switch to a STRING, I have observed that the history is displayed after the first letter is being entered (maybe dependent on GUI version, who knows...)
    Thomas

  • Displaying user input

    Hi all,
    Does anyone know how to display user input on a different panel, acitivated by a button press.
    For example in panel a, a textfield is declared to collect user input
    addForenametf = new JTextField(20);
              addForenametf.setFont(userInput);
              addForenametf.addActionListener(this);
              //postion button on grid bag
              c.gridx = 1;
              c.gridy = 1;
              addScreen.add(addForenametf, c);..then a button is pressed to take in the data (there are numerous textfields). When this happens the next screen, panel b appears and displays the values of the text field. Thus in the actionlistener...
    ...     else if(c.equals(confirmButton))
                               String forenameS = myContactMel6.getForename();
                             middle.removeAll();
                    middle.add(confirmScreen);
             }..then in the panel confirmScreen i try to display the string forenameS
         JLabel displayForename = new JLabel("");
              displayForename.setText(forenameS);
              //position button on grid bag
              c.gridx = 0;
              c.gridy = 2;
              confirmScreen.add(displayForename , c);     ...have also tried instead directly accessing the textfield as below but still doesn't print anything
         JLabel displayForename = new JLabel("");
              displayForename.setText(addForenametf.getText());
              //position button on grid bag
              c.gridx = 0;
              c.gridy = 2;
              confirmScreen.add(displayForename , c);Thank you ver much in advance!

    You need to pass in the information to your confirmation panel. One option would be to create a new instance of the confirmation panel each time the user selected the button. In this case you should pass in each value to be displayed to the constructor. Otherwise, you could have a method that accepts all the data needed and it fills the correct text fields. I am assuming that panel a has access to an instance of panel b so that it can pass the data in.

  • Want the data store values to be displayed in input field of form

    Hi,
    I wanted to know wether is there possibility of displaying the data in a input field instead of expression field.
    In our model i have used a form which has material type,plant and Vendor connected to data service1 in turn gives the out put in chart and i also have the second input form which has To(0CALMONTH) combo box which is connected to Data service2 and gives the data in table.
    But what i wanted is to i also want to use the input fields of first form to second Data service2 and get the data based on on inputs of form1 and form2i.e also To field.
    We can connect the port from form1 to DS2 but problem is we need to click the submit of form1 and form2 and it doesnt gives the output according the input of form1 and form2 as it gives the output of that form when we click that submit button.
    I have followed help.sap for data tore procdure.
    So i have used a datstore where i will store the values of form1 and call it in expression field which i will add and hide it in form2(hide because user should not see that input fields).
    Formula used in data store for expression field.
    IF(CONTAINS(STORE@matltype,@Material_Type),STORE@matltype,STORE@matltype &(IF(LEN(STORE@matltype)>0,'; ',''))&@Material_Type)
    But whats happening is the value is getting concatenated when i goon change the values in input field, so i wanted to get the values to be replaced as soon as i change input field of form1(if  use replace function its not working) and also it would be more preferrable if we use input field instead of expression field.
    I would also like to know is there any alternate solution for the above requirement instead of datastore.
    Thank You
    K.Srinivas

    Hi,
          I have Form1 connected to Data service1 displays the data in a Chart and i have another Form2 connected to Dataservice2 displays the data in table.
    In form1 there are Material Type,plant, and Vendor and form2 i have To (0CALMONTH)SO now i want also Form1 inputs for Table which gets teh data from Dataservice2.
    What i have said earlier is connecting Form1 to Dataservice doesnt fetch the data correectly,its because if i click submit in form1 i get the data of those 3 inputs and i need to click the submit button in form2 after giving input which shows the data accordingly where it doesnt fulfill the requirement.
    So i wanted some solution for that.For that reason i have used the data store and the procedure i have followed the help.sap as i said in my above mesage.
    If Data store is also suggestable than i want to display the data in Text input Field  instead of Expression field which should replace the previous values as soon as values change in data store.
    Hope i have tried to be clear if still it is not i am ready to explain again.
    Thank You
    K.Srinivas

  • How do I use my iPad as the display and input device for my Mac Mini?

    I plan to have the following stereo configuration:
    Integrated amplifier with USB input that supports up to 24/192 audio, the Peachtree Nova 125
    Mac Mini with USB connection to amp, wifi to the Internet, housed in the equipment cabinet with the integrated amp, no other music source.  No display or keyboard connected to the Mac Mini.
    I would like to use my iPad as the display and to control the Mac Mini to run Pandora, iTunes, Spotify, podcasts, etc.
    Anyone have success with this general configuration?

    You need a set of apps (one for iPad and another for computer) like Team viewer or Go to my PC

  • Capturing and displaying user input in Crystal Reports

    Hi all,
    Iu2019m creating a crystal report with SAP as data-source and want to capture user input and display it on the report.  I have defined parameters to capture the input and added them to the report header.   I have then created formula fields to capture user input using the JOIN statement to accommodate multiple values.   Everything works well when users enter values for all the parameters, but when they leave some blank I get an error message u201CParameter value is nullu201D.
    Has anyone encountered this type of problem;  Anyone knows how to resolve this?

    Hi
    In parameter window make the Optional prompt to True.  And change make change in your record selection formula like this :
    (not HasValue({?PrjMgr@SELECT Firstname,lastname FROM OHEM}) OR
    ISNULL({?PrjMgr@SELECT Firstname,lastname FROM OHEM}) OR
    ({?PrjMgr@SELECT Firstname,lastname FROM OHEM} = '') OR
    {OHEM.firstName} = {?PrjMgr@SELECT Firstname,lastname FROM OHEM})
    Regards

  • TEXT EDIT EXPANDING DOESN'T DISPLAY THE INPUT CORRECTLY

    Hi everybody,
    i have a dynamic form and a text-edit-field within, which i want to expand with the user input. if the input forces the field to go over to the next page, the text will be splitted, as i expected. So far so good! Removing and resetting the focus on the field (on the last page, where the last part of the input text is) causes the text to be displayed in a 'strange' way. The text jumps upwards and the last part of it can't be seen any longer. I have, for instance, to go with 'str+end' to correctly catch the ending and redisplay this returned part of the input again.
    Does anybody have a clue of what can be done to force the text in the field to stay stady?
    Thanks a lot,
    Valerio

    Sorry, i didn't mean to hurt your esthetic sense ;-)
    This must be the normal behaviour of a Text-Edit-Field. I've noticed this many times.
    Please gimme some hints...at least, whether it's possible to avoid this text jumping phenomenon or not.
    Thank you all,
    Valerio

  • Application exe not displaying analog input measurements

    i am using the compactDAQ cDAQ 9172, after building the exe all the other digital and analog output ports are working properly whereas the analog input section is displaying the value as Zero, if i read read this channel from the max, it reads the values without any  errors.what might be the issues.

    Hi Kodeeswar:
    I have a couple suggestions first try to create your analog input application with no digital or analog output task just "analog input" and then build the executable and try it again; second if it is possible for you please try updating to the new drivers of (NI DAQmx), and third reinstalling the last version of the “labview run time engine”. Also the 9172 is the chassis so which module are you using to handle the Analog Input application? To synchronize multiple modules or chassis if this is your case these links might be able to help you so please take a look at:  NI CompactDAQ Module Synchronization,  Synchronized Continuous Analog Input Across. I hope I was able to help you.
    Jaime Hoffiz
    National Instruments
    Product Expert
    Digital Multimeters and LCR Meters

  • Zwaygi font not displaying in input fields (fine everywhere else)

    I am working on a two language website www.eprpinformation.org. The Myanmar version automatically changes the font family for body text to Zwaygi-One which work wonderfully well on IE, Chrome and Firefox.
    Except, that is, for input fields. For some reason these display the unknown font characters even though looking at the css for the input, the correct font family is being applied. Please see screenshot >> http://eprpinformation.org/images/firefox-zwaygi-font-issue.jpg.
    Any help would be appreciate.
    Mark

    If I paste some text in the search bar and text fields on the Help Desk page then a right-click and Inspect shows that the Zawgyi-One is used for Myanmar text (I pasted the Zawygi Font text: တိုင္းရင္းသား).
    I haven't made changes to the default font as that shouldn't be necessary.
    At least on Linux where I am it shows that for input field font-family: -moz-use-system-font; is used, so it is possible that the selected system font doesn't work properly with Myanmar characters.

  • Thunderbolt display : Video input into thunderbolt port?

    Hi,
    I've got two major questions about the Apple thunderbolt Display :
    - Can the thunderbolt port located on the back of the display be used as an video input?
      . Is it possible to plug a second mac equiped with a thunderbolt port to this port?
      . If it's possible, how does the display manage to switch between the two macs?
    - Is it possible to plug an external HDMI source such as Blueray reader, Play station, etc. with an "hdmi - mini display port" cable?
    Thank you very much for your answers !

    I can confirm that the Thunderbolt Display will work when plugged in to the 2011 MacBook Pro 15" and a 2011 Mac Mini Server connected via Apple's Thunderbolt cable.  When both systems are connected to the monitor, the display will always prefer the system connected to its display port,  when it sleeps or is powered down, the other system detects the available display and connects to it automatically.  I can't imagine a more ideal sinerio!
    Thank you Apple!
    Jason
    Nerds Limited

  • Using iMac Display as input

    So I have a 21.5 inch late 2012, Is it possible to use it as a Monitor to take input from other devices (DVD player , Gaming consoles ,etc) via thunderbolt port (as mini display port is not availabe in 2012 model) ?

    Check into using Target Display Mode- Frequently Asked Questions (FAQ), Mac notebooks- How to use your computer in closed clamshell (display closed) mode with an external display, iMac- How to use your iMac as a Target Display Mode display, and Target Display Mode 2011 & Later iMacs.

  • Where does one manage date formats for display and input

    the user specification is that dates be displayed as YYYY-MON-DD. Is there a config or properties file which contains the date format for display? Is there a calendar drop-down that can be positioned next to a date input field for a question on a screen?
    Thanks,
    Allan

    Hi Allan,
    Curious why the rule project wasn't created with "English (Canada)" initially? If your project is English (UK) with the default configurations for that locale, then I assume your currency values are appearing in OWD with the GBP symbol (£) instead of a dollar sign ($)?
    As for the impact of switching… I highly recommend getting confirmation from the OPA Dev team before doing it, but in the meantime, if you wanted to experiment on your own with a separate test rulebase (as opposed to whatever formal rulebase you're working on), here are my observations from an initial look… (FYI, I'm an experienced OPA rulie, but I'm non-technical and not in the Dev team, so best to check with them!)
    I poked around the language parser files and saw that English (UK) has an English (UK) verb list, whereas English (Canada) uses the English (US) verb list. The vast majority of verbs are identical in all the variations of English, however, there are a couple which differ. So if you've used any verbs which have a different spelling between the 2 lists, there may be some attribute text to tweak, e.g.
    - English (UK): the person travelled to Australia
    - English (US): the person traveled to Australia
    - English (UK): the person cancelled the reservation
    - English (US): the person canceled the reservation
    I saw some other different files between English (Canada) vs English (UK), but didn't notice anything in them which I'd expect to impact the rulebase.
    As for how it might impact other components:
    * screens file and the properties file – May be some tweaking depending on how you addressed the verb spelling issue above.
    * regression test files – May be some tweaking depending on how you addressed the verb spelling issue above.
    * messages.(locale).properties – The default messages.(locale).properties file appears to be based on the Language setting of the Project. I just tested this and OWD used a different messages.(locale).properties file when I changed the Project Language (OPM | File menu | Project Properties | Common Properties | General | Language).
    * Siebel Connector – don't know what the impact would be.
    OPA Dev team – Can you review what I've said here? And add any relevant further detail?
    Cheers,
    Jasmine

  • When press Enter i want to display the input in Report calling Smartform

    Hello Masters,
    I am new in to abap and i want to know that how can we display data on the same screen when we enter the value and press enter , for example when i enter a employee code in input field and when i press enter before executing my report i want to see the name of the employee for which i have enter in the field before execution. i am developing a Report which is calling a smartform for print.
    tables sscrfields.
    parameters: p_pernr type pa0001-pernr obligatory.
    at selection-screen.
      if sscrfields-ucomm eq space.
        sscrfields-ucomm = 'p_pernr'.
      endif.
    I thought that this code could have worked for me but its no use , can any one please help me with my issue

    here is some code what i have used in my report program , i will still like to remind that its an Logical database program (PNP) for ABAP-HR , right now i tried the code mentioned above but not getting any result.
    TABLES: pernr,sscrfields,pa0001.
    *& Declaring Type-pools
    TYPE-POOLS : slis.
    *& Declaring Infotypes
    INFOTYPES: 0000,          " Action
                         0001.          " Org. Assignment
    *& Selection Screen
    SELECTION-SCREEN BEGIN OF BLOCK n1 WITH FRAME TITLE t1.
    PARAMETER : p_despat TYPE zhr_transfer-despt OBLIGATORY,              " Despatch Number
                r_pernr  TYPE pa0001-pernr OBLIGATORY,                                    " Reporting to
                re_pernr TYPE pa0001-pernr OBLIGATORY,                                   " Relieving Authority
                a_pernr  TYPE pa0001-pernr OBLIGATORY MODIF ID one.             " Authorize Person
    SELECTION-SCREEN END OF BLOCK n1.
    INITIALIZATION.
      t1 = 'Transfer Records'.
      LOOP AT SCREEN.
        IF screen-name = 'PNPPERNR-LOW'.                                  " Personnel Number (Mandatory)
          screen-required = 1.
            MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    AT SELECTION-SCREEN OUTPUT.
      IF a_pernr IS INITIAL.
        a_pernr = pa0001-ename.
      ENDIF.
    END-OF-SELECTION.

  • Unposted values are not display in input-ready queries - BRAIN 485

    Hi experts,
    After installing the support package level from "7.00 SP16" to "7.00 SP21" we meet an issue in our input-ready queries.
    When we use the setting "Access Type for Result Values" according to master data in a query with time characteristics in columns, the system error BRAIN 485 occurs & no cells are not displayed.
    Any idea ?
    Thanks in advance,
    Laurent

    Hi raj,
    Thanks for your reply.
    Please tell me with which BEx patch you have faced this issue.
    We are on BI7.0 SP 19.
    Thanks.
    Regards,
    Rik

Maybe you are looking for

  • Cannot log back into a disconnected RD session

    I have a 2012 R2 domain server that I RD into frequently. None of the GPO's I have are effecting RD. I need to have the ability to disconnect a RD session and reconnect to the same session. It seems like after about 20min the disconnected session jus

  • Receiver determination Vs Interface determination

    Hi Experts,       What is the difference between Receiver determination and Interface determination? In both the case we specify sender -> outbound interface -> Receiver Service -> Interface mapping Can't we use only interface mapping? Why SAP is pro

  • Office 2010 Outlook hung problem

    Dear SIR, I used office 2010 outlook, My outlook configured with 'GOOGLE APPS'. But suddenly I am getting issue with outlook 2010. When I click home or send & received tab then outlook hang approx. 1 or 2 minutes. I installed aslo office SP1 & SP2 ge

  • Can I tell Premiere NOT to drop frames for 25fps 24 fps?

    I've got some 25 fps clips (which have undergone PAL speedup from the original 24 fps), excerpts from which are in a 24 fps sequence.  I want to tell Premiere to forget about dropping one frame each second (which is what it does to conform 25 fps to

  • [SOLVED] What are Git-type AUR packages?

    I read the ArchWiki Entry on Git, but I still don't really understand what it is in terms of Aur packages. I've seen this a couple of times, where there's a second git version of a package in AUR. For example, when I type 'prey' into Yaourt, I get a