Popup with 1 entry field?

hi guys
im looking for a FM with 1 entry field with text and numbers.
this pop up must exist but i cant find it.
tks in advance.

Sure, check this out.
report zrich_0001.
  data: ivals  type table of sval.
  data: xvals  type sval.
  xvals-tabname   = 'VBAK'.
  xvals-fieldname = 'AUART'.
  append xvals to ivals.
  call function 'POPUP_GET_VALUES'
       exporting
            popup_title     = 'Choose Order Type'
       tables
            fields          = ivals
       exceptions
            error_in_fields = 1
            others          = 2.
read table ivals into xvals index 1.
write:/ xvals-value.
Regards,
RIch Heilman

Similar Messages

  • CRM70 Popup with Inputfield

    Hello all,
    again an interesting requirement from my users
    We require in an eventhandler (button_click) a popup with one inputfield from type dats.
    The date the user choose on the popup shall be used in the ON_POPUP_CLOSE event.
    I know that it is not possible with the standard reuse popup or decision popup.
    Has anybody already realised such a popup with input fields and could provide the steps?
    Thanks a lot.
    Kind regards
    Manfred

    Hi Manfred,
    Create a view with a context node, assume POPUP_CTXT and assign an input field (example DATE) to it. So the value entered in the input filed with be set in its collection wrapper.
    Call this view as a popup and in the on close event get the context node and read the value from DATE,
    sample coding in on_close_event,
    Data: lr_outputnode          TYPE REF TO cl_bsp_wd_context_node,
             lr_collection_wrapper  TYPE REF TO cl_bsp_wd_collection_wrapper,
            lr_current            TYPE REF TO if_bol_bo_property_access.
    lr_outputnode ?= popup_reference->get_context_node( 'POPUP_CTXT' ).
    lr_collection_wrapper = lr_outputnode->get_collection_wrapper( ).
    lr_current           = lr_collection_wrapper->get_current( ).
    CALL METHOD lr_current->get_property_as_value
              EXPORTING
                iv_attr_name = 'DATE'
              IMPORTING
                ev_result    = lv_date.
    The 'popup_reference' variable must be declared globally. The instance will be created while calling the popup.
    Regards,
    Arun

  • Suppress popups for "Fill in all required entry fields"

    I am trying to execute the standard CJ20n transaction on two different SAP systems and it is somehow behaving differently in both systems. I checked the configs on both system and they appear to be the same.
    When i run it in the first system, it throws the"Fill in all required entry fields" error once we press enter it moves ahead.
    while in the other system it throws the "Fill in all required entry fields" error and brings up a popup window to enter some information.
    How do i suppress this extra popup window?
    Is there any config setting.
    Any input is highly appreciated.

    Thanks rob for you reply. But it turns out my issue was not exactly resolved by that. Let me reframe my issue here.
    Where we installed support packs to upgrade ECC components some new code came in which altered the way in which a project is created in CJ20N. Sap introduced new logic to check for flexible screens during mandatory field check and if a screen exist the new SAP code popus up this screen for the user to enter all information.
    Now there are three problems with this:
    1. The users are accustomed to the old way of creating a project and they dont like the new popup screens which are somewhat redundant as they come up later also(in WBS element Level).
    2. Those screens are also used in other places so we cannot remove the screens either.
    3. For some reason due to the new flow of the screens the substitution step dont seem to be working properly.
    Is there a way to skip this flexible screen check during the start of project creation project creation.
    Any input is appreciated.
    Thanks.

  • Popup with generic ALV to display all fields of a structure

    Hello WebDynpro Experts,
    I have developed a WebDynpro application using an ALV control to display all the search results in a table.
    The number of columns shown in this table is reduced by a default view, that is preset for all users.
    In the SAP GUI there is a standard feature to show all the details of a record in a pop up window.
    E.g. in WE02 you see a few fields in the ALV table, and when you click on the details button, you get a popup with all the fields of the selected line.
    Is there something similar in the ALV table for WebDynpro?
    I want to show all the fields of the selected structure in a generic table with two columns: Field label and value.
    Can anybody help?
    Regards,
    Jürgen

    Hello Jurgen,
                    When you select a particular row in ALV table, you can get the data in that row by using ONLEADSELECT
            method from used component(SALV_WD_TABLE).
                   And i Guess you can get all the field names of that structure from DD03L table and you can display them
            in a generic table.
        Regards,
        Harry

  • Adobe InDesign CC 2014 Custom Panel Built With Extension Builder - Problem: Can't tab from one entry field to the next; Hitting tab instead hides all palettes; Is there a fix? This didn't happen in Adobe Indesign CC

    Adobe InDesign CC 2014 Custom Panel Built With Extension Builder - Problem: Can't tab from one entry field to the next; Hitting tab instead hides all palettes; Is there a fix? This didn't happen in Adobe Indesign CC

    This is planned to be fixed in the next release.

  • I want to create a mail merge for address labels into a table, but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address.

    ...but when I fill a table with merge fields, it ends up creating multiple entries for the same address, rather than one table full of each address. Please help.
    Thanks!

    That is a quirk of Pagesthat  it applies only one record per page.
    There is a way around this:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=245&highlight=labels &mforum=iworktipsntrick
    Peter

  • How to find in which table field "DDTEXT" with entry "xyz"

    How to find in which table field "DDTEXT" with entry "Item number in contract account document" exists.
    There are too many tables with field name "DDTEXT"

    Refer:
    Getting short text of data element

  • Popup with table entries

    hello,
    I am looking for a popup with data in internal tabkle  and with options continue and cancel.I tried with 
    'POPUP_WITH_TABLE_DISPLAY' but its no help for my requirement. please advise.
    Thanks
    Edited by: BrightSide on Jul 14, 2009 12:29 PM

    u can use the FM u have mentioned for ur case...
    giving u refrence code:
    concatenate 'Select the Contract for the material' ls_mepoitem-matnr into lv_titletext
                    separated by space.
                    CALL FUNCTION 'POPUP_WITH_TABLE_DISPLAY'
                      EXPORTING
                        ENDPOS_COL   = 136
                        ENDPOS_ROW   = 10
                        STARTPOS_COL = 50
                        STARTPOS_ROW = 4
                        TITLETEXT    = lv_titletext
                      IMPORTING
                        CHOISE       = lv_counts
                      TABLES
                        VALUETAB     = lt_ekpo
                      EXCEPTIONS
                        BREAK_OFF    = 1
                        OTHERS       = 2.
                    clear : lv_titletext.
                    IF lv_counts NE 0.
                      READ TABLE lt_ekpo assigning <ft_ekpo> INDEX lv_counts.
                      move <ft_ekpo>-ebeln to ls_mepoitem-konnr.
                      move <ft_ekpo>-ebelp to ls_mepoitem-ktpnr.
                      move <ft_ekpo>-lifnr to ls_mepoheader-lifnr.
                    else.
                      lv_message1 = 'Select atleast one of the available Contracts'.
                      gv_error_exists = 'X'.
                      mmpur_metafield mmmfd_cust_01.
                      mmpur_message_forced 'E' 'YMM' '000' lv_message1 '' '' ''..
                    endif.
                  else.
                    READ TABLE lt_ekpo assigning <ft_ekpo> INDEX 1.
                    move <ft_ekpo>-ebeln to ls_mepoitem-konnr.
                    move <ft_ekpo>-ebelp to ls_mepoitem-ktpnr.
                    move <ft_ekpo>-lifnr to ls_mepoheader-lifnr.
                  endif.

  • Maintenance View with Subset Fields

    Hi All,
    I have created a maintenance view based on a single DB table. Two key fields are defined to be as subset fields. No selection conditions are added to the view. I have used table maintenance genrator to define the screen (one step) along with the events.
    In SM30, i get the popup to fill the subset fields.
    I have created an event for AA (to replace default read). I am filling total attribute here.
    a) Is there some other attribute that i need to fill apart from total?
    I receive following dump
    " Exception condition "NO_VALUE_FOR_SUBSET_IDENT" is raised"
    When i set <status>-sbsid_rcvd = 'R' in read routine along with total, then the above exception doesn't appear.
    But filtering based on the subset values doesn't happen automatically.
    b) I also need have to have routines to perform insert, copy and validation.
    c) Would the contents displayed be automatically filtered based on the subset values or we need to process this in user routines for read and so on?
    As i find very limited documentation available for maintenance views with subset fields, could you suggest me some example to do the above?
    Thanks in Advance,
    Regards,
    Rekha

    Hello Rekha,
    Yes I've same idea, documentation for maintenance screens is inadequate.
    But there is way to find examples for all events,
    table TVIMF is storing the Table name - Event - Form name columns.
    For example when u want to  do something about  "creating a new entry"
    Just go se11 > Table maintenance generator and find related event : 05
    - Then go to TVIMF and display a record for event = 05
    - than go to function group of  maintenance screen of the TABLE in that record
    - find the subroutine form ( TVIMF-FORMNAME) in that function group
    This is a working example for that event, try or copy & use.
    I hope it helps you for the coding for all the events.
    Bulent
    Edited by: Bulent Balci on Aug 5, 2010 11:28 PM
    Edited by: Bulent Balci on Aug 5, 2010 11:29 PM

  • The length of the password entry field in the BEx Analyser

    Hi,
    The password is 8 characters in the BW system.
    When users changing their newly assigned passwords. When logging into the BEx Analyser, and prompted to change the password, a password entry box is displayed, with an entry field longer then 8 characters. Some users are therefore entering passwords longer then 8 characters. This is fine when they first login, but when they try come back to the system, their logon fails.
    Can something be done to restrict the length of the password entry field in the BEx Analyser?
    Many Thanks
    Jonathan

    Hi Jonathan
    we are having the same problem - did you find a way to resolve this?  I did not find any SAP notes referring to the issue.
    Regards
    Hayley

  • Create a Procedural ALV Report with editable fields and save the changes

    Hi,
    I am new to ABAP. I have created a Procedural ALV Report with 3 fields. I want to make 2 fields editable. When executed, if the fields are modified, I want to save the changes. All this I want to do without using OO concepts. Please help . Also, I checked out the forum and also the examples
    BCALV_TEST_GRID_EDIT_01
    BCALV_TEST_GRID_EDIT_02
    BCALV_TEST_GRID_EDIT_04_FORMS
    BCALV_TEST_GRID_EDITABLE
    BCALV_EDIT_01
    BCALV_EDIT_02
    BCALV_EDIT_03
    BCALV_EDIT_04
    BCALV_EDIT_05
    BCALV_EDIT_06
    BCALV_EDIT_07
    BCALV_EDIT_08
    BCALV_FULLSCREEN_GRID_EDIT
    But all these are using OO Concepts.
    Please help.
    Regards,
    Smruthi

    TABLES:     ekko.
    TYPE-POOLS: slis.                                 "ALV Declarations
    *Data Declaration
    TYPES: BEGIN OF t_ekko,
      ebeln TYPE ekpo-ebeln,
      ebelp TYPE ekpo-ebelp,
      statu TYPE ekpo-statu,
      aedat TYPE ekpo-aedat,
      matnr TYPE ekpo-matnr,
      menge TYPE ekpo-menge,
      meins TYPE ekpo-meins,
      netpr TYPE ekpo-netpr,
      peinh TYPE ekpo-peinh,
      line_color(4) TYPE c,     "Used to store row color attributes
    END OF t_ekko.
    DATA: it_ekko TYPE STANDARD TABLE OF t_ekko INITIAL SIZE 0,
          wa_ekko TYPE t_ekko.
    *ALV data declarations
    DATA: fieldcatalog TYPE slis_t_fieldcat_alv WITH HEADER LINE,
          gd_tab_group TYPE slis_t_sp_group_alv,
          gd_layout    TYPE slis_layout_alv,
          gd_repid     LIKE sy-repid.
    START-OF-SELECTION.
      PERFORM data_retrieval.
      PERFORM build_fieldcatalog.
      PERFORM build_layout.
      PERFORM display_alv_report.
    *&      Form  BUILD_FIELDCATALOG
          Build Fieldcatalog for ALV Report
    FORM build_fieldcatalog.
      fieldcatalog-fieldname   = 'EBELN'.
      fieldcatalog-seltext_m   = 'Purchase Order'.
      fieldcatalog-col_pos     = 0.
      fieldcatalog-outputlen   = 10.
      fieldcatalog-emphasize   = 'X'.
      fieldcatalog-key         = 'X'.
    fieldcatalog-do_sum      = 'X'.
    fieldcatalog-no_zero     = 'X'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'EBELP'.
      fieldcatalog-seltext_m   = 'PO Item'.
      fieldcatalog-col_pos     = 1.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'STATU'.
      fieldcatalog-seltext_m   = 'Status'.
      fieldcatalog-col_pos     = 2.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'AEDAT'.
      fieldcatalog-seltext_m   = 'Item change date'.
      fieldcatalog-col_pos     = 3.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MATNR'.
      fieldcatalog-seltext_m   = 'Material Number'.
      fieldcatalog-col_pos     = 4.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MENGE'.
      fieldcatalog-seltext_m   = 'PO quantity'.
    fieldcatalog-edit             = 'X'
      fieldcatalog-col_pos     = 5.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'MEINS'.
      fieldcatalog-seltext_m   = 'Order Unit'.
      fieldcatalog-col_pos     = 6.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'NETPR'.
      fieldcatalog-seltext_m   = 'Net Price'.
      fieldcatalog-col_pos     = 7.
      fieldcatalog-outputlen   = 15.
      fieldcatalog-datatype     = 'CURR'.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
      fieldcatalog-fieldname   = 'PEINH'.
      fieldcatalog-seltext_m   = 'Price Unit'.
      fieldcatalog-col_pos     = 8.
      APPEND fieldcatalog TO fieldcatalog.
      CLEAR  fieldcatalog.
    ENDFORM.                    " BUILD_FIELDCATALOG
    *&      Form  BUILD_LAYOUT
          Build layout for ALV grid report
    FORM build_layout.
      gd_layout-no_input          = 'X'.
      gd_layout-colwidth_optimize = 'X'.
      gd_layout-totals_text       = 'Totals'(201).
      gd_layout-info_fieldname =      'LINE_COLOR'.
    ENDFORM.                    " BUILD_LAYOUT
    *&      Form  DISPLAY_ALV_REPORT
          Display report using ALV grid
    FORM display_alv_report.
      gd_repid = sy-repid.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
           EXPORTING
                i_callback_program      = gd_repid
                i_callback_pf_status_set = 'STATUS'
                i_callback_top_of_page   = 'TOP-OF-PAGE'
               i_callback_user_command = 'USER_COMMAND'
               i_grid_title           = outtext
                is_layout               = gd_layout
                it_fieldcat             = fieldcatalog[]
               it_special_groups       = gd_tabgroup
               IT_EVENTS                = GT_XEVENTS
                i_save                  = 'X'
               is_variant              = z_template
           TABLES
                t_outtab                = it_ekko
           EXCEPTIONS
                program_error           = 1
                OTHERS                  = 2.
    ENDFORM.                    " DISPLAY_ALV_REPORT
    *&      Form  DATA_RETRIEVAL
          Retrieve data form EKPO table and populate itab it_ekko
    FORM data_retrieval.
      DATA: ld_color(1) TYPE c.
      SELECT ebeln ebelp statu aedat matnr menge meins netpr peinh
       UP TO 10 ROWS
        FROM ekpo
        INTO TABLE it_ekko.
      LOOP AT it_ekko INTO wa_ekko.
        ld_color = ld_color + 1.
        IF ld_color = 8.
          ld_color = 1.
        ENDIF.
        CONCATENATE 'C' ld_color '10' INTO wa_ekko-line_color.
        MODIFY it_ekko FROM wa_ekko.
      ENDLOOP.
    ENDFORM.                    " DATA_RETRIEVAL
          FORM top-of-page                                              *
    FORM top-of-page.
      WRITE:/ 'This is First Line of the Page'.
    ENDFORM.
          FORM status                                                   *
    FORM status USING rt_extab TYPE slis_t_extab.  .
      SET PF-STATUS 'ALV'.
    ENDFORM.
          FORM USER_COMMAND                                          *
    -->  RF_UCOMM                                                      *
    -->  RS                                                            *
    FORM user_command USING rf_ucomm LIKE sy-ucomm
                             rs TYPE slis_selfield.            
      DATA ref1 TYPE REF TO cl_gui_alv_grid.
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
        IMPORTING
          e_grid = ref1.
      CALL METHOD ref1->check_changed_data.
      CASE rf_ucomm.
    when 'SAVE'.
    get all the modified entries and store them in an internal table and udpate them in to the required transaction or your custom table.
    endcase.
    endform.
    ENDFORM.
    here u need to 2 performs for PF status and USER_COMMAND in the ALV parameters.
    create a custom PF status and create push buttons and assign your ok codes in your PF status.
    if the field has to be edited in the ALV then pass EDIT = 'X' for that field in the fieldcatlog preparation.
    Hope this will help you.
    Regards,
    phani.

  • Creation of HR infotype with repeated fields

    Hi,
       We have a requirement in our project where in we need to implement the repeat field screen structure.
    We have to create an info type with ‘96’ fields in which some of the fields are repeated more than once.
    We have tried to create a table control to represent the repeated fields, for this we have a standard way which SAP follows. We have done the same way but we are not able to get the table control in the info type screen.
    We have done the following steps using this link
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/4f/d52552575e11d189270000e8322f96/frameset.htm
    1) I have created a structure with the repeated fields of the info type
    2) created the entries in Mapping for Conversion of Repeat Structure/Tables (table T588AUTO_MAP) with the repeated fields
    3) For each type LINE screen structure to be used, a corresponding entry was defined in Mapping for Conversion of Repeat Structure/Tables (table T588AUTO_TABLE).
    4) I have created an info type with all these fields where in I should get the repeated fields in the table control format, but this was not happening.
    Is there any task to be done to link all these transactions before going for creation of the info type?
    Can any one suggest me how to get the table format on the screen with all these repeated fields.
    with regards,
    ramu mullapudi

    Hi Choudhury,
    Thanks for your reply. The infotype that you suggested solved my problem.
    Regards,
    RSS.

  • Replication error BP from CRM to R/3 - "Fill in all required entry Fields"

    Dear Folks
    I have maintained all steps mentioned in building block - C03. I have maintained separate account group approach. Made sure that number ranges are in sync in both the systems. Particularly in PIDE, mapping classification Consumer-Org 'A' to 'ZZ01' (Copy of 0001).
          I changed all required entry to optional entry in my 'ZZ01' field status using OVT0.
           But when i replicate using R3AS, i get an error 'Fill in all required entry Fields" - Error in receiving system (i.e R/3).
           I tried manually creating customer in R/3 with the account group ZZ01. Surprisingly it does not allows me to save unless i give the reconcillation account entry, even though it is not a required field.
       Please let me know for further details and Please help me to resolve this error. I am in real urgency.
    Thanks
    Keerthi
    Chicago IL
    507 401 1030

    Hi Karunakaran
            Your reply answered my question of creating customer with no 'recon' a/c required entry. Thanks awarded 2 points.
              My replication error is still hanging around. I found that It has no bearing on the 'Reconcillation A/c' required entry.
              Some other field is still restricting my BP Role- Consumer:Organization to replicate. The error still showing as "required fields are not entered in R/3", even after suppressing "Reconcillation Account".
           I think my reference customer master i created in R/3 using VD07 is not assigned in case of the account group Consumer:Organization.
       But i don't know how to verify my doubts and get rid of this error.
    Please help, in great urgency.

  • How to convert internal table with dynamic fields to XML

    Dear all,
    I met a problem like the following:
    The aim is to transform the following parameter to XML
    IT_FIELD stores the dynamic filed name of the internal table,with these fields, the dynamic internal can be created by cl_abap_tabledescr=>create(it_field)
    IT_VALUE stores the value of the internal table dynamically created with dynamic fields.
    For example
    IT_FIELD =>
    line1: FIELD1
    line2: FIELD2
    line3: FIELD3,
    three lines in this internal table.
    dynamically created internal table structure FIELD1 FIELD2 FIELD3
    And IT_VALUE=>
    1          2          3   (First line)
    11        22        33
    two lines of data.
    Do you have any idea about how to transform the IT_VALUE to XML here? And also the transformed XML to the IT_VALUE.( we may need remember IT_FIELD here for later XML to IT_VALUE.)
    Hope I describe the problem clearly.
    Any inputs will be appreciated.
    Edited by: Max Tang on Jan 12, 2009 3:46 PM
    Edited by: Max Tang on Jan 12, 2009 4:14 PM

    Hi,
    you need to implement a bit of coding for that.
    With the 'do varying' statement abap provides a loop over those fields. Within this loop you can build up a new internal table with one entry for each period and amount.
    kind regards
    Siggi
    PS: I am not very familiar with CO, but I guess there will be a standard extractor for that.

  • How to Generate sales orders with custom Fields using BAPI_BUSPROCESSND_CREATEMULTI

    Hi,
    I need to generate sales orders with custom fields on table CRMD_ORDERADM_H using BAPI_BUSPROCESSND_CREATEMULTI, after changing the structure BAPI_TE_CRMD_ORDERADM_H, and feed the  EXTENSIONIN table of the BAPI with data, the order is created, but any value on custom fields.
    After debuging, I saw that the BAPI search for structure conversion in table CRMC_OBJECTS_GEN, but we haven't entry with BAPI_TE_CRMD_ORDERADM_H in this table. is that the problem ?, Is there any way to fix it?
    Best Regards,
    Salah.

    That depends on where do you have the customer fields, check the table CRMD_CUSTOMER_H, if your custom fields are there, you need to use the changing parameter CUSTOMER_HEAD, I guess your already checked that one, right? but there's no custom fields, well...AET/EEWB doesn't enhance the strcuture of the BAPI, so you should do it manually, check the note following note for further details.
    988410 - FAQ: User-defined fields in the BAPI
    If you don't have access to the SAP Marketplace, in resume you should create an append on the structure BAPIBUS20001_CUSTOMER_H and include the following strcutrue CI_EEW_CUSTOMER_H
    Cheers!
    Luis

Maybe you are looking for

  • XML file not getting transferred to archive folder once upload is done!!

    Hi all,         I am working on a scenario where SAP R/3 sends data to SAP MDM 5.5 (SP04 PATCH 2) with XI as middleware.The XML file sent by XI is getting uploaded from the FTP folder using Manual Import (Import Manager). But after importing for the

  • MacBook Pro Errors

    I'm having the following issues with my MacBook Pro: "-10810" Error - when opening some apps. This usually occurs after the computer has been on for a few minutes and after the start-up apps have launched. The error is intermittent...as it only happe

  • ITunes won't sync my contacts and calendar

    When I try to sync my iPad or iPhone, it says "syncing contacts with ipad" or, if I disable that, "syncing calendar with ipad" for 30 minutes to an hour. When it finally stops, I find that it never actually synced anything. I don't see any other topi

  • Did not recieve IOS 8 update : iPhone 5 user

    My iPhone 5 did not receive the IOS 8 software update and when I went to check it in the settings, it said my software was IOS 7.1.2 and is up to date. Why is that so? I am connected to WiFi  and although IOS 8 was realeased yesterday, I still could

  • What mac os 10.8 - 10.10 would you recommend for an iMac from mid 2007

    I have a mid 2007 iMac stock 2 Gb ram. What OS would give me the best performance for this older model? I am running 10.7.5 and am planning a clean install.