F4 for 'LAUFD' and 'LAUFI' in my selection screen.

Hello experts,
I have selecion screen like this:
DATA:    BEGIN OF tlaufk OCCURS 1.
        INCLUDE STRUCTURE ilaufk.
DATA:    END OF tlaufk.
SELECTION-SCREEN: BEGIN OF BLOCK blk WITH FRAME TITLE text-001.
PARAMETERS:     p_zbukr TYPE reguh-zbukr OBLIGATORY,
                p_laufd TYPE reguh-laufd OBLIGATORY,
                p_laufi TYPE reguh-laufi OBLIGATORY.
I want to apply f4 for  p_laufd  and  p_laufi , like that exist in  'F110' TCODE,
When i use this F.M.: 'F4_ZAHLLAUF' i gave this message: 'The system cannot display possible entries here'.
What can be the problem?
I use F.M like this:
for laufi:
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_laufi.
REFRESH tlaufk.
  tlaufk-laufk = space.
  tlaufk-sign  = 'I'.
  APPEND tlaufk.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'I'
      f2nme = 'P_LAUFD'     
    IMPORTING
      laufd = p_laufd
      laufi = p_laufi
    TABLES
      laufk = tlaufk.
for laufd:
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_laufd
REFRESH tlaufk.
  tlaufk-laufk = space.
  tlaufk-sign  = 'I'.
  APPEND tlaufk.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'D'
      f2nme = 'P_LAUFI'
    IMPORTING
      laufd = p_laufd
      laufi = p_laufi
    TABLES
      laufk = tlaufk.
Thanks for the help,
Avi.
Edited by: avi azulay on Aug 22, 2010 11:43 AM
Edited by: avi azulay on Aug 22, 2010 11:45 AM
Edited by: avi azulay on Aug 22, 2010 11:47 AM

Hello experts,
I have selecion screen like this:
DATA:    BEGIN OF tlaufk OCCURS 1.
        INCLUDE STRUCTURE ilaufk.
DATA:    END OF tlaufk.
SELECTION-SCREEN: BEGIN OF BLOCK blk WITH FRAME TITLE text-001.
PARAMETERS:     p_zbukr TYPE reguh-zbukr OBLIGATORY,
                p_laufd TYPE reguh-laufd OBLIGATORY,
                p_laufi TYPE reguh-laufi OBLIGATORY.
I want to apply f4 for  p_laufd  and  p_laufi , like that exist in  'F110' TCODE,
When i use this F.M.: 'F4_ZAHLLAUF' i gave this message: 'The system cannot display possible entries here'.
What can be the problem?
I use F.M like this:
for laufi:
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_laufi.
REFRESH tlaufk.
  tlaufk-laufk = space.
  tlaufk-sign  = 'I'.
  APPEND tlaufk.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'I'
      f2nme = 'P_LAUFD'     
    IMPORTING
      laufd = p_laufd
      laufi = p_laufi
    TABLES
      laufk = tlaufk.
for laufd:
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_laufd
REFRESH tlaufk.
  tlaufk-laufk = space.
  tlaufk-sign  = 'I'.
  APPEND tlaufk.
  CALL FUNCTION 'F4_ZAHLLAUF'
    EXPORTING
      f1typ = 'D'
      f2nme = 'P_LAUFI'
    IMPORTING
      laufd = p_laufd
      laufi = p_laufi
    TABLES
      laufk = tlaufk.
Thanks for the help,
Avi.
Edited by: avi azulay on Aug 22, 2010 11:43 AM
Edited by: avi azulay on Aug 22, 2010 11:45 AM
Edited by: avi azulay on Aug 22, 2010 11:47 AM

Similar Messages

  • Maintaing a default value for a particular field in the selection screen

    Hi all,
    How to maintain a default value for a particular field in the Selection Screen of a Standard report
    Regards
    Ajay

    >
    ajay babu wrote:
    > Hi all,
    >
    > How to maintain a default value for a particular field in the Selection Screen of a Standard report
    >
    > Regards
    > Ajay
    Create a variant for your standard program and assign this variant to the field 'Start with variant' while creating transaction code for the standard program in the transaction 'SE93'.
    Regards
    Rajesh.

  • How to dynamically deactivate and activate parameters on selection screen?

    Hi,
    I need to deactivate/activate a parameter in my selection screen whenever i clicked on a particular radiobutton. I could deactivate the parameter when the screen is first loaded using the following code,
    <i>AT SELECTION SCREEN OUTPUT.
    LOOP AT SCREEN.
      IF SCREEN-NAME = 'P_DATE'.
         SCREEN-INPUT = '0'.
         MODIFY SCREEN.
      ENDIF.
    ENDLOOP.</i>
    But I have problems capturing the event when the user click on the radiobutton, so i could activate the parameter. I did not create any screen.
    Is there a way to solve this problem w/o creating a screen. If none, how do I go about it after I have created a screen for selection.
    Thanks for any suggestions.

    Hi CK,
    The following code might help,
    *-- Status of Screen Field (Ready/Not Ready for Input)
        fld_status   LIKE screen-input,
    PARAMETERS: rbut01  TYPE char01
                        RADIOBUTTON GROUP g1
                        USER-COMMAND ucomm1     "event for radio button click
                        DEFAULT 'X'.
                rbut02  TYPE char01
                        RADIOBUTTON GROUP btyp.
    Event Handler for Change of Budget Type *
    AT SELECTION-SCREEN.
    *-- In case user command is a budget type change (Radio Button Change)
      IF sscrfields-ucomm =  'UCOMM1'.
        IF rbut01 = 'X'.
          fld_status = '0'.
        ELSEIF rbut2 = 'X'.
          fld_status = '1'.
        ENDIF.
      ENDIF.
    At Selection Screen Output *
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        CASE screen-name(4).
          WHEN 'FLD01' OR 'FLD02'.
    *---    Changing Status of Fld01 and Fld02 Fields on Change of Radio Button
            screen-input = fld_status.
            MODIFY SCREEN.
        ENDCASE.
      ENDLOOP.

  • Select-Options and check box on Selection Screen

    Hi Guru's,
    I have to develop a webdynpro report(static). I have a combination of select options and checkboxes on the selection screen. Can you please help me how to design this static selection screen.
    Thanks,
    Pradeep

    Hi Pradeep,
    WDP ABAP does not directly provide the selection screen options as in ABAP programming.
    You can achieve the selection screen functionality using the WDR_SELECT_OPTIONS component usage. Go through the WDP component WDR_TEST_SELECT_OPTIONS.
    Regards
    Wenonah

  • Change public share access to read only for public and full access to selected users

    Hi, new to the community just purchased a recertified WDMyCloud 2TB after my 2 years old MyBookLive 2TB HD died due to accidental power cable unplugging. I've got everything setup including MiniDLNA by following instructions on this forum and everything is working  exactly as I want it to except public share. I want public share to be set to read only access for public and full access to certain users (just myself at the moment) and having a "upload" folder within this share with full public access to everything in this folder would be a bonus. I tried login in to ftp with root user and removing write permission for public but that blocks me out as well. I'm sure it's possible by doing some majic on SSH but I wouldn't have a clue so hoping someone here would be able to help me out.

    Mr_Khan wrote:
    What i want is public to have read only access to file server. Public as in users who do not have a user account on mycloud. E.g someone who connects to to my home network for the first time and is able to browse and download content from public share. I'm aware of being able to set indivual access to shares for users like full access, read only and no access but public users won't have a user account.Through the My Cloud UI interface what you seek to do is not possible. The public share like all other share folders are an all or nothing affair when using the adminstration UI. When using the administration UI you do not have granular control on shared folders to limit non users to read only access or set permission levels for subfolders. The workaround to do what you seek and have the public folder set for read only is to change the folder settings via SSH. It may take some work to set the folder security so that users can read/write to the public folder while the guests only have read access. However, if you reboot the WD My Cloud or update the WD My Cloud firmware those settings may be reset back to the default settings where the entire public folder is read/write for all. There are way to prevent this but again it will take a bit of coding to do so via SSH. See this link (even though its for the WD My Book Live) for a starting point on how to use SSH to change the permission levels on the public folder. Another option if one doesn't go the SSH route is to turn off public sharing for the public folder then create a "guest" user account and give that "guest" account read only access to the public folder while all other user accounts have full read/write access.

  • Personalization and Default values in selection screen variables

    Hi everyone,
    I have certain questions regarding Front end part:-
    1)     Can we have multiple personalizations for a single user in Web templates; I know it is quite possible in BEx using Variants. Is there any such approach or any other solutions regarding it?
    2)     In our project we had a range selection screen customer exit variable on 0CALMONTH, which is showing a default value of 07.2007 to 09.2007, although we have removed the default values from the query variable and also checked the customer exits where it is used, but still it’s showing the value. We can’t delete and recreate the variable as such, as it is used in number of function module. Also these values are also transported to Quality system, where also it’s showing the same value.
    Did anyone face such a situation before?
    Eagerly waiting for a solution.....
    Thanks in advance

    Hi Chiran,
    Please try with following approach for multiple   personalizations for a single user in Web templates.
    While Defining Variable Choose the Option Copy personalization data from variable .
    The Features  of above approach is as follows.
    1)It will personalize variable values for Input Variables for each user.
    2)These values are saved for each variable as well as for user.
    3) At the time of defining variable it will allow us to enter one or more default values.All these values are appear in the variable screen when u execute the query or Web Application.
    So you can see the variable values in web also.Just try with this approach.
    May be it will resove u r issue some extent.
    Regarding u r Second Query Just try with Some tables, all the default values entries were saved in those tables. Delete default values from those entries.
    Thanks & Regards,
    Chandu.

  • Dynamically Changing the Name and length of the Selection Screen Fileld

    Dear Friends,
    I want to incorporate a filtering option in my program,when the user selects the
    column of a table control and clicks on filter option it has to open up a
    new selection screen in which the selection option would be the selected
    column.
    for e-g if the user selects material the selection option would have the
    characteristics of mara-matnr.
    answers will be rewarded.
    Thx.
    Sreeni

    Hi,
    Check this link, very useful and good one too.
    http://sap.ittoolbox.com/code/archives.asp?i=10&d=2919&a=s
    this will help you i guess.
    Feel free to revert back.
    --Ragu

  • Display key and text in variable selection screen.

    Hi:
    I have a variable in the Var.selection screen. and I cannot have the text displaying. Only the key is coming.
    - I have checked "Provider-Specific Properties" in RSA1 and is ok. and display attributes in Query Designer as well.
    Infio: The Characteristic is used in the same query as a Free Char. and there is displaying Key+Text correctly...
    any idea in what else to check.?
    Regards.

    Hi,
    Do you mean that the value help of that variable is not showing the Text values in the selection screen.It shows only the values in "Key"
    If this is the case,then invoke the value help of that variable->Click "Settings"->"General Display" tab->Select "Default(Text)" and click OK.The values will be listed in "Text" rather than "Key"
    Rgds,
    Murali

  • Add a custom field in IH01 and IH03 standard report selection screen

    Hi All,
    I tried to find any implicit enhancement to achieve but am unable to find any. My requirement is to add a check box at Explosion block in the standard selection screen of IH01 and IH03 report. Please help me with enhancement options available to achieve this requirement.
    Thanks in Advance.
    Thanks,
    Manesh.R

    Hi Manesh,
    I see the below implicit enhancment point provided at the end of report program.
    I think we can mention our custom code here, but I doubt whether we can edit or add fields to the standard selction screen block created.
    Please try this and share the results with us so that you also would be adding knowledge to others.
    I have attached the screen shot at which I am talking about the implicit enhancement.
    please let us know in case of any concerns.
    Thanks,
    Bhaskar

  • Just upgraded to QT Pro for Windows and cant find the "new screen recording" option

    I've only ever used QT Pro for Mac. Son got a Windows laptop and would like to do screen recording so I upgraded his QT Player to Pro version.
    I had a chat with Apple Store support but they didnt know. Are there differences in Mac and Windows versions? How to get a refund if so? Thanks.

    Try these (free) utilities or search for paid versions:
    http://www.top5freeware.com/screen-recording-software-for-windows
    Peter

  • HT1551 Apple TV searches for date and time settings, then the screen goes completely black and I get no response from the remote. Any suggestions?

    I've moved to Sweden from Canada, and when I plug my Apple TV in, I get the LED light and the Apple logo, followed by the Setting Date and Time message. After that, everything goes black and I can't make any selections. The LED lgiht is still on however.
    Any help would be appreciated.

    Welcome to the Apple Community.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Source list, and then click Restore.

  • When using Facetime, ot works fine at the beginning but it starts to blink for awhile and just turns to black screen. Does anyone else have this problem?

    When i'm using facetime or skype video chat, the camera would work just fine for about 5-10mins and then it starts to blink and then just turns into a black screen. Does anyone else have this problem? HELP!

    Try Resetting the PRAM

  • F4 Help in BSP for a input field in the Selection Screen...Urgent

    Hi ,
    Can anyone possible tell me how to put F4 help in a BSP
    Regards...

    Hi Pavan,
    It's a reccurring question in BSP forum that cannot be solved that easily...
    You will find some examples of how it can be handled in demo BSP :
    <b>bsp_valuehelp</b>
    <b>bsp_vhelp</b>     (this one is MVC-oriented)
    To go further, you should have a look at the following blog :
    /people/thomas.jung3/blog/2004/09/17/bsp-150-a-developer146s-journal-part-xii-150-value-input-help-popups
    /people/thomas.jung3/blog/2004/11/01/bsp-value-input-help-popups-version-20-part-1
    Hope it helps.
    Best regards,
    Guillaume

  • Need Different Selection screen for different Queries in a Workbook

    Hi,
    I have created a workbook with Multiple tabs in BI 7.0.  Each Tab has different Queries and each query has different Selection screens (Variable Selections).
    When i open the workbook and refresh it, the selection screen is appearing only for one query.  All the queries are refreshed by this single selection screen, though each query has different Variable selections.  What i need is a seperate selection screen i.e seperate Variable selection appearing for each queries, when i refresh each one of them.
    Is it possible to do this?  If anybody has tried this, help me in solving this issue.  Thanks for ur time.
    Regards,
    Murali

    Murali,
    If you un-check the 'Display Duplicate Variables Only Once' this WILL solve your problem.
    When you Refresh, you should be presented with a single variable selection dialog box, but it should contain an area for each Query (DataProvider) that is embedded in the Workbook.
    This is the case if the queries are all on the same tab, or on different tabs.
    However, if you have multiple tabs each with a query on it, each query must have it's own DataProvider. If all queries are based on the same DataProvider, it will not work as the Workbook only 'sees' one Query for which it needs variable input.
    If you REALLY want multiple variable selection dialog boxes, then maybe the best way to do this is to have the queries in separate Workbooks.
    If you don't want the User to have to open 5 queries manually, you could use a Macro in each Workbook that runs on opening, to open the next Workbook in the sequence.
    I hope this makes sense!
    Regards
    Steve

  • Help Needed for selection screen

    Hi Experts
    I'm doing one report of pm module using one standard program called me RIQMEL10
                 my query is if u execute this stand.prog u'll get one selection screen ,and having three selction-screen blocks.  first sel-scr block name is Notification status this selection screen is calling dynamically by using sap stand.prog SAPDBQMI
                    SCR NO : 1000
    can any one send me the default code of this selection screen block ( Notification status ) which sap is providing .

    INCLUDE DBQMISEL
    It will be automatically included into the database program.
    If the source code is automatically generated,
    please perform the following steps:
    1. Replace ? by suitable names (at most 8 characters).
    2. Activate SELECT-OPTIONS and PARAMTERS (delete stars).
    3. Save source code.
    4. Edit database program
    Hint: Syntax-Check is not possible within this Include!
    It will be checked during syntax-check of database program.
    SELECTION-SCREEN BEGIN OF BLOCK block1 WITH FRAME TITLE text-011.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS dy_ofn LIKE rihea-dy_ofn FOR TABLE diqmel.
    SELECTION-SCREEN COMMENT 3(11) text-001
                                          FOR FIELD dy_ofn ID 001.
    PARAMETERS dy_rst LIKE rihea-dy_rst FOR TABLE diqmel.
    SELECTION-SCREEN COMMENT 16(10) text-002
                                           FOR FIELD dy_rst ID 002.
    PARAMETERS dy_iar LIKE rihea-dy_iar FOR TABLE diqmel.
    SELECTION-SCREEN COMMENT 29(10) text-003
                                           FOR FIELD dy_iar ID 003.
    PARAMETERS dy_mab LIKE rihea-dy_mab FOR TABLE diqmel.
    SELECTION-SCREEN COMMENT 42(10) text-004
                                           FOR FIELD dy_mab ID 004.
    SELECTION-SCREEN COMMENT 52(10) text-005
                                           FOR FIELD selschem ID 005.
    PARAMETERS: selschem LIKE tj48t-selid FOR TABLE diqmel.
    SELECTION-SCREEN PUSHBUTTON 73(5) p_addr USER-COMMAND addr
    FOR TABLE diqmel ID 006.
    PARAMETERS dy_adrfl NO-DISPLAY FOR TABLE diqmel.
    SELECTION-SCREEN COMMENT 79(30) ad_icon FOR TABLE diqmel ID ic1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK block1.
    SELECTION-SCREEN BEGIN OF BLOCK block2 WITH FRAME TITLE text-012.
    SELECT-OPTIONS:
      qmnum                  FOR diqmel-qmnum MATCHCODE OBJECT qmeg,
      qmart                  FOR diqmel-qmart,
      tplnr                  FOR diqmel-tplnr NO-DISPLAY,
      strno                  FOR diqmel-strno MATCHCODE OBJECT iflm,
      equnr                  FOR diqmel-equnr MATCHCODE OBJECT equi,
      matnr                  FOR diqmel-matnr MATCHCODE OBJECT mat1,
      serialnr               FOR diqmel-serialnr,
      deviceid               FOR diqmel-deviceid,
      aufnr                  FOR diqmel-aufnr MATCHCODE OBJECT orde.
    *--- date from - until
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(28) text-009 FOR FIELD datuv.
    SELECTION-SCREEN POSITION 33 FOR TABLE diqmel.
    PARAMETERS datuv LIKE rihea-termab FOR TABLE diqmel DEFAULT sy-datum.
    SELECTION-SCREEN COMMENT 51(6) text-010 FOR FIELD datub.
    PARAMETERS datub LIKE rihea-termbi FOR TABLE diqmel DEFAULT sy-datum.
    SELECTION-SCREEN END OF LINE.
    *--- partner function, partner
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(9) text-006 FOR FIELD dy_parvw.
    SELECTION-SCREEN POSITION 10 FOR TABLE diqmel.
    PARAMETERS  dy_parvw LIKE ihpa-parvw FOR TABLE diqmel
                AS LISTBOX VISIBLE LENGTH 22.
    SELECTION-SCREEN POSITION 33 FOR TABLE diqmel.
    PARAMETERS  dy_parnr LIKE ihpa-parnr FOR TABLE diqmel VALUE-REQUEST.
    *--- button classification
    SELECTION-SCREEN PUSHBUTTON 73(5) text-013 USER-COMMAND clse
    FOR TABLE diqmel.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK block2.
    *--- freie Abgrenzungen für log.Datenbankselektion -
    SELECTION-SCREEN DYNAMIC SELECTIONS FOR TABLE diqmel ID 010.
    SELECTION-SCREEN BEGIN OF VERSION 001 text-v01.
    SELECTION-SCREEN EXCLUDE PARAMETERS: dy_mab, dy_ofn, dy_rst, dy_iar,
                                         selschem, dy_adrfl.
    SELECTION-SCREEN EXCLUDE IDS: 001, 002, 003, 004, 005, 006, 010, ic1.
    SELECTION-SCREEN END   OF VERSION 001.
    SELECTION-SCREEN BEGIN OF VERSION 002 text-v02.
    SELECTION-SCREEN EXCLUDE IDS: 010.
    SELECTION-SCREEN END   OF VERSION 002.
    *--- Parameter für Selektionssteuerung -> es sollen nicht     -
    *--- automatisch alle Segmente der log.DB selektiert werden   -
    *--- neu mit P30K047900                                       -
    PARAMETERS: ldb_ihpa NO-DISPLAY DEFAULT 'X' FOR TABLE diihpa,
                ldb_iflo NO-DISPLAY DEFAULT 'X' FOR TABLE diiflo,
                ldb_equi NO-DISPLAY DEFAULT 'X' FOR TABLE diequi,
                ldb_qmfe NO-DISPLAY DEFAULT 'X' FOR TABLE diqmfe,
                ldb_qmma NO-DISPLAY DEFAULT 'X' FOR TABLE diqmma,
                ldb_qmmx NO-DISPLAY DEFAULT 'X' FOR TABLE diqmmax,
                ldb_clas NO-DISPLAY DEFAULT 'X' FOR TABLE diclass,
                ldb_clda NO-DISPLAY DEFAULT 'X' FOR TABLE dicldat,
                ldb_qmsm NO-DISPLAY DEFAULT 'X' FOR TABLE diqmsm,
                ldb_qmsx NO-DISPLAY DEFAULT 'X' FOR TABLE diqmsmx,
                ldb_aufk NO-DISPLAY DEFAULT 'X' FOR TABLE diaufk.
    regards
    vinod

Maybe you are looking for

  • I am running a TRIAL VERSION of Adobe Photoshop CS6 Extended and Bridge does not open.  Help?

    I am running a TRIAL VERSION of Adobe Photoshop CS6 Extended on MAC and Bridge does not open.  It did open when I first downloaded it - but now a black question mark is over the BR icon and it does not open up.  Any ideas from anyone? 

  • Apple cinema display and newer G5

    do i need a special adaptor to hook up this monitor to a G5/dual 2.3 ghz with a GeForce 6600 video card, the IT guy is dragging his feet on getting these 2 to work together... http://arstechnica.com/reviews/4q00/g4cube_cd/images/cd-big.jpg G5 dual/2.

  • QUERY EXPLAIN_PLAN

    Hello GURUS I am on 10.2.0.2.0. I am sorry for big query. It is running really slow. Also please look at the explain plan I am trying to fix the problem but still the same, runnig slow. THE SS_SKU_STORE_WEEK is big table with aroundf 1 million rows,

  • Database prepared statements Flooding

    Hi Friends, Need your help to fix this prolonging problem in one of our applications. We observe that the following queries are declared as prepared statements but have dynamic value ROWID in each. SELECT ROWID, C. * FROM Table1 C WHERE C.VENDORLOGIN

  • Saving v8.2 .lvlib files in v8.6

    I have a large project that was created in LabVIEW 8.2.  If I save the .lvlib files from LabVIEW 8.6 (which is currently installed on my machine), I get multiple "Not a Path" errors when running the application.  The problem is that the .lvlib file i