Screen doesn't display any data.

Hi experts,
In the program there are two screen.  In the first screen-Screen5000- there are four buttons and when user pushes these buttons the second screen-Screen250- displays. But problem starts here. Second secreen does not show any data from the itab.
Code:
INCLUDE ZFC_PROJE1TOP                            .    " global Data
INCLUDE ZFC_PROJE1PBO                           .  " PBO-Modules
INCLUDE ZFC_PROJE1PAI                             .  " PAI-Modules
INCLUDE ZFC_PROJE1FRM                           .  " FORM-Routines
PROGRAM  ZFC_PROJE1.
TABLES : ZFC_CDTP_MESLEK, ZFC_CDTP_MUSTERI.
DATA   : ITAB LIKE ZFC_CDTP_MUSTERI OCCURS 0 WITH HEADER LINE.
DATA   : ITAB2 LIKE ZFC_CDTP_MESLEK.
DATA   : BEGIN OF ITAB3 OCCURS 10,
             MUSKD LIKE ZFC_CDTP_MUSTERI-MUSKD,
             END OF ITAB3.
DATA   : SUREC(1).
DATA   : ISLEM TYPE I.
START-OF-SELECTION.
SELECT * FROM ZFC_CDTP_MUSTERI INTO TABLE ITAB.
CALL SCREEN 5000.
END-OF-SELECTION.
*&  Include           ZFC_PROJE1PBO
*&      Module  STATUS_5000  OUTPUT
      text
MODULE STATUS_5000 OUTPUT.
  SET PF-STATUS 'GUI'.
  SET TITLEBAR 'BASLIK'.
  LOOP AT SCREEN.
    SCREEN-INPUT = 0.
    MODIFY SCREEN.
  ENDLOOP.
ENDMODULE.                 " STATUS_5000  OUTPUT
*&      Module  STATUS_0250  OUTPUT
      text
MODULE STATUS_0250 OUTPUT.
  SET PF-STATUS 'GUI2'.
  SET TITLEBAR 'BASLIK2'.
  IF SUREC EQ 'S'.
    LOOP AT SCREEN.
      SCREEN-INPUT = 0.
      MODIFY SCREEN.
    ENDLOOP.
  ELSEIF SUREC EQ 'U'.
    LOOP AT SCREEN.
      IF SCREEN-NAME EQ 'ITAB-MUSKD'.
        SCREEN-INPUT = 0.
        MODIFY SCREEN.
      ELSE.
        SCREEN-INPUT = 1.
      ENDIF.
      MODIFY SCREEN.
    ENDLOOP.
  ELSEIF SUREC EQ 'N'.
    LOOP AT SCREEN.
      SCREEN-INPUT = 1.
    MODIFY SCREEN.
  ENDLOOP.
ENDIF.
ENDMODULE.                 " STATUS_0250  OUTPUT
*&  Include           ZFC_PROJE1PAI
*&      Module  USER_COMMAND_5000  INPUT
      text
MODULE USER_COMMAND_5000 INPUT.
CASE SY-UCOMM.
WHEN 'YENI'.      PERFORM YENI.
WHEN 'DEGISTIR'.  PERFORM DEGISTIR.
WHEN 'GORUNTULE'. PERFORM GORUNTULE.
WHEN 'SIL'.       PERFORM SIL.
ENDCASE.
ENDMODULE.                 " USER_COMMAND_5000  INPUT
*&      Module  USER_COMMAND_0250  INPUT
      text
MODULE USER_COMMAND_0250 INPUT.
CASE SY-UCOMM.
WHEN 'ONCEKI'.   PERFORM ONCEKI.
WHEN 'SONRAKI'.  PERFORM SONRAKI.
WHEN 'KAYDET'.   PERFORM KAYDET.
WHEN 'GERI'.     PERFORM GERI.
ENDCASE.
ENDMODULE.                 " USER_COMMAND_0250  INPUT
*&  Include           ZFC_PROJE1FRM
*&      Form  YENI
      text
-->  p1        text
<--  p2        text
FORM YENI .
SET SCREEN 250.
SUREC = 'N'.
ENDFORM.                    " YENI
*&      Form  KAYDET
      text
-->  p1        text
<--  p2        text
FORM KAYDET .
check SUREC eq 'U' or SUREC eq 'N'.
  if SUREC eq 'N'.
    select count( * ) from zFC_CDTP_MUSTERI into sy-tfill
      where MUSKD = itab-MUSKD.
    if sy-tfill ne 0.
      message s004(ZSG_CL_MESAJ) with 'Bu Kod Zaten Kay&#305;tl&#305;d&#305;r'.
      exit.
    else.
      clear zFC_CDTP_MUSTERI.
      move-corresponding itab to zFC_CDTP_MUSTERI.
      insert zFC_CDTP_MUSTERI.
      append itab.
      describe table itab lines islem.
    endif.
  elseif surec eq 'U'.
      clear zFC_CDTP_MUSTERI.
      move-corresponding itab to zFC_CDTP_MUSTERI.
      modify zFC_CDTP_MUSTERI.
      modify itab index islem.
  endif.
surec = 'S'.
ENDFORM.                    " KAYDET
*&      Form  GERI
      text
-->  p1        text
<--  p2        text
FORM GERI .
LEAVE TO SCREEN 5000.
ENDFORM.                    " GERI
*&      Form  DEGISTIR
      text
-->  p1        text
<--  p2        text
FORM DEGISTIR .
if SUREC EQ 'S'.
    SUREC = 'U'.
  elseif SUREC eq 'U' or SUREC eq 'N'.
    SUREC = 'S'.
    ENDIF.
SET SCREEN 250.
ENDFORM.                    " DEGISTIR
*&      Form  ONCEKI
      text
-->  p1        text
<--  p2        text
FORM ONCEKI .
check SUREC eq 'S'.
  check ISLEM ne 1.
  ISLEM = ISLEM - 1.
ENDFORM.                    " ONCEKI
*&      Form  SONRAKI
      text
-->  p1        text
<--  p2        text
FORM SONRAKI .
check SUREC eq 'S'.
  check ISLEM ne 1.
  ISLEM = ISLEM + 1.
describe table itab lines ISLEM.
ENDFORM.                    " SONRAKI
*&      Form  GORUNTULE
      text
-->  p1        text
<--  p2        text
FORM GORUNTULE .
SUREC = 'S'.
SET SCREEN 250.
ENDFORM.                    " GORUNTULE
*&      Form  SIL
      text
-->  p1        text
<--  p2        text
FORM SIL .
DATA : ans(1).
CALL FUNCTION 'POPUP_TO_CONFIRM_STEP'
  EXPORTING
   DEFAULTOPTION        = 'N'
    TEXTLINE1            = 'KAYIT SILINECEK?'
  TEXTLINE2            = ' '
    TITEL                = 'SIL'
  START_COLUMN         = 25
  START_ROW            = 6
   CANCEL_DISPLAY       = 'X'
IMPORTING
   ANSWER               = ans.
if ans = 'J'.
    delete from zfc_cdtp_musteri where muskd = itab-muskd.
    describe table itab lines sy-tfill.
    if islem eq sy-tfill.
      delete itab index islem.
      islem = islem - 1.
    else.
      delete itab index islem.
    endif.
  endif.
ENDFORM.                    " SIL

Hi,
Remove the statement CALL SCREEN 5000 from Start-of-selection event and place it in the <b>end-of-selection</b> event.
START-OF-SELECTION.
SELECT * FROM ZFC_CDTP_MUSTERI INTO TABLE ITAB.
END-OF-SELECTION.
CALL SCREEN 5000.
Try this.
regards,
Saumya

Similar Messages

  • SQL Developer 1.5.4.59.40 doesn't display any data or only nulls

    Hi All,
    I've got a problem with SQL Developer after I downloaded the latest version *1.5.4.59.40*. SQLDev doesn't display any data or displays only few lines of nulls within information tabs: Column, DATA, Constraints, Grants, Stats, triggers and so on....
    Please see below screen shoots for details:
    !http://www.emarcel.com/%7Eemarcelc/emarcel/SQLDEV1.gif!
    And exception scratch:
    !http://www.emarcel.com/%7Eemarcelc/emarcel/exception1.gif!
    Note:
    When I'm using an old version 1.5.0.51 everything works fine. But you know I would like to upgrade to the latest build.
    Many Thanks for any help.
    Cheers!!

    The problem is solved by upgrading an oracle client_1 to 11g version,
    Apparently these are the files which have caused the problem in old version of the oracle client (10.2.0..):
    SQL Developer is using client's libs by default when it's installed for ex.:
    jdbc.driver.home     /D:/oracle/product/10.2.0/client_1/
    jdbc.library     /D:/oracle/product/10.2.0/client_1/jdbc/lib/ojdbc5.jar
    AND:
    orai18n.library     /D:/oracle/product/10.2.0/client_1/jlib/orai18n.jar
    above libs are not compatible with the latest version of SQLDeveloper.
    That's why the problem occurs.
    Jim,
    thanks for pointing me in the right direction. Cheers mate!!

  • IPhoto 9.6 doesn´t display any pictures from library, upgraded

    iPhoto 9.6 doesn´t display any pictures from library. I have upgraded from an old iPhoto. I upgraded the Library also.
    Everything is inside the Library I can see but when I run iPhoto I get only a yellow note on the screen and no pictures?

    Everything is inside the Library I can see
    Do you mean by looking into the library using the Finder?
    but when I run iPhoto I get only a yellow note on the screen and no pictures?
    Then iPhoto has probably opened a new, empty library, because it could not find or access your iPhoto library. What happens, whiny double-click the Library to open it directly?
    Where is your iPhoto library stored? Is it in the Pictures folder or on an external drive?

  • When logging into iCloud in Safari, Calendar doesn't display any events. They are displayed on the iPad, iPhone on even the iCal. What is wrong ?

    When logging into iCloud in Safari, Calendar doesn't display any events. They are displayed on the iPad, iPhone on even the iCal. What is wrong ?

    :S,
    Sorry, missed that fact. My memory is good, but short.
    Try moving the "Calendar Cache" file to your Desktop. Quit iCal, and find the "Calendar Cache" file in your Macintosh HD/Users/yourusername/Library/Calendars. Move that file to your Desktop. After that, (I remember that I recommended this before), as long as you are moving files to the Desktop, repeat the plist removal procedure once again, log out/in or restart.
    You should also consider removing the "To Do's" from Mail before restarting iCal. When you open iCal turn off "Show Birthdays calendar" in iCal>Preferences...>General.
    Are you syncing any data? If so, what method(s) are you using?
    ;~)

  • TS3274 dropped ipad now screen doesn't display

    My daughter dropped her ipad and now the screen doesn't display anything.  We can see some light changes but nothing else.  It appears that the screen can still be touched to use apps because we are able to play music.  Any suggestions on what we should do?

    Not sure if you've fixed this, but it really works.  After reading similar advice, I banged it on the corner of my couch and the display totally came back clear as day.  Could not read it before.

  • S_ALR_87013611 is not displaying any data for GL

    Hi,
    THe report S_ALR_87013611 is not displaying any data for GL. How to go about this
    Regards
    SM

    Hi,
    S_alr_87013611 is a report where we can see the  planned and actual costs  in cost elements in cost center wise  for a specific controlling are for a given period.
    Please check if your GL accounts are assigned with the cost elements in FS00.
    If not create them.
    You can assing all cost elements to many GL  at a time using
    OKb2_ Give the range and the cost element for each range eg, expenses range - cost element 1, incomeange _Cost element as 11 etc.
    OKb3 _Create the batch input session
    SM30_ Run the batch input session created
    Also please check if you have given the cost center group costt senter range while you entered the ranges in the selection screen in this report.
    Similarly please check the cost elements and cost elements group also.
    Thanks,
    Shilpa.

  • Product Revenue Bookings and Backlog Dashboard does not display any data

    Product Revenue Bookings and Backlog Dashboard does not display any data even though the load completed successfully.
    They are able to see just the parameters.
    Not sure if the upgrade of the database from 9.2.0.6 to 10.2.0.3 is a factor.
    What can I check?
    Is there some table to verify that the data exists for display in the Product Revenue Bookings and Backlog Dashboard?
    Screenshot is at:
    https://gtcr.oracle.com/gtcr-dir/gtcr_5637/6415786.993/Product_Revenue_Bookings_Backlog_Dashboard.doc
    Support suggested to create a new request set and run the initial load with load all summaries option; but there was no change in the Product Revenue Bookings and Backlog Dashboard.
    Any ideas?

    hi
    We have faced the similar problem after the upgrade to 10G
    What we did was
    Ran the initial load of time dimension, Item setup request set, and the request set of all the dash board in the clear and initial load mode..
    we were able to get the data once the clear and load is completed successfully
    Regards
    Ramesh Kumar S

  • Appraisal iview is not displaying any data

    Hi gurus,
    We are using MSS 1.0 ,ECC 6.0 and ep 7 .
    We are having some problem with the appraisal iview in MSS general information.The employee has data in the back end but in portal it is showing as no data available.Are there any settings to be made to display the appraisals.
    Please it's very urgent.

    I  am using below code but it doesnot display any data, Please let me know what I am doing wrong
                    Dim PLT
    As New ADODB.Connection
    Dim MyRecSet As New ADODB.Recordset
    Set PLT = New ADODB.Connection
                    PLT.ConnectionString
    = "xyz"
                    PLT.Open
    Set MyRecSet = New ADODB.Recordset
    Set MyRecSet = PLT.Execute("SELECT * FROM Action_item")
    If Not MyRecSet Is
    Nothing Then
    If MyRecSet.State Then
                    MyRecSet.Close
    End If
    End If
                 MyRecSet.CursorLocation
    = adUseClient
                 Set DataGrid1.DataSource
    = MyRecSet
                 DataGrid1.Refresh
    Hi,
    Based on the title of this thread and these lines like the following one which is not supported in vb.net.
    Set MyRecSet = New ADODB.Recordset
    I am afraid that issues related to VB6 are not supported in these forums any more, you could check
    Where to post your VB 6 questions
    You could consider posting this issue in these forums below:
    These forums do not support Visual Basic 6, however there are many third-party support sites that do. If you have a VB6-related question please visit these popular forums:
    VB Forums
    VB City
    Thanks for your understanding.
    Regards.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I tired to restore my IPhone Backup but it doesn't download any data!

    I tried to restore my IPhone Backup from ICloud but it doesn't download any data.
    Starts with some pictures and then stop.
    I went to Apple store, change my IPhone, tired to restore again and problem persists.
    I waited several hours, change WiFi conection, change for my IPad Backup, but problem persists.
    What else can I do?

    I have this same issue, can anybody help??

  • Views not displaying any data

    Hi,
    We are experiencing a strange issue with views in production server.
    Views created off of one query is not working where it is displaying "NO Data Available" ,
    When the view is executed we fill in the company code and date and leve the remaining 10 selections with out filling, and we are getting "No Applicable data" ,but there is data for that selection.
    When we go and try to refresh the variable screen it is filled with date in all selections which are not date fields, and that is causing the problem. " Not sure why the date is filled in all the selections"
    Views on different query are working fine.
    But the views on same repot are working fine in Development server. But not in Production. We didnt make any changes to that query. We also regenerated the query.We have bounce the java server.  We have retransported the query and nothing worked.
    We are on SAP BI 7.0 SP 22
    Please suggest
    Thanks,
    Kiran
    Edited by: Kumar on Aug 17, 2010 4:04 PM
    Edited by: Kumar on Aug 17, 2010 4:13 PM

    Amer,
    Thank you for your reply,  based on your suggestion i have been trying to look for the OSS note untill now there is no success.
    I will still look for the note.
    Just in case if any one come across this oss note please let me know.
    Thanks,
    Kiran

  • ReportViewer control used with a remote report does not display any data.

    Hi there,
    I have this .rdl report that runs just fine on our reporting server (I can see that when I try to run the report by accessing its URL in a browser). However, when I run it in my Windows-based application, I do not see any data. My report has two input parameters
    and it needs to impersonate the caller's identity because the database uses Windows Authentication.
    Here is the code I use:
    var reportViewer = new ReportViewer();
    // Set Processing Mode
    reportViewer.ProcessingMode = ProcessingMode.Remote;
    // Set report server and report path
    reportViewer.ServerReport.ReportServerUrl = new Uri("http://MySsrsServer/reportserver");
    reportViewer.ServerReport.ReportPath = "/Reports/MyReport";
    // set the credentials
    reportViewer.ServerReport.ReportServerCredentials.ImpersonationUser = WindowsIdentity.GetCurrent();
    // create report parameters and set them in the report
    var param1 = new ReportParameter("First_Param", "Some string");
    var param2 = new ReportParameter("Second_Param", "Some other string");
    reportViewer.ServerReport.SetParameters(new ReportParameter[] { param1, param2 });
    using (var reportForm = new ReportForm(reportViewer))
    reportForm.ShowDialog();
    The ReportForm is just a regular Form that has a member of type ReportViewer. In the class' constructor, I assign the member:
    public ReportForm(ReportViewer reportViewer)
    InitializeComponent();
    try
    this.reportViewer = reportViewer;
    reportViewer.SetDisplayMode(DisplayMode.PrintLayout);
    reportViewer.Dock = DockStyle.Fill;
    reportViewer.ZoomMode = ZoomMode.Percent;
    reportViewer.ZoomPercent = 100;
    reportViewer.RefreshReport();
    catch (Exception exception)
    MessageBox.Show(exception.Message);
    Using database level tracing, we were able to confirm that the two Stored Procedures used by the report are called and they return correct and valid records. However, in the form nothing shows up:
    Any suggestions?
    TIA,
    Ed

    Good to know CR doesn't like joins of Stored Procedures to something else.
    But in my testcase, I finally dropped the link between the ttx file and the stored procedure. Doing so, I was able to run the report from the designer with the stored procedure as datasource instead of the ttx file. At that moment, I still had missing data in my report, while the resultset of the stored procedure returns me all the correct data !
    In the mean time, I changed the layout a bit, especially the text fields containing name, address, country and postal code and city of the customer, by just adding some spaces between those seperate databasefields. In fact, there is one text box with all those database fields concatenated one to the other.
    And by just adding some spaces in between, my report works fine again ?!
    Strange, strange, strange,....

  • Youtube video screen doesn't display with firefox 3.6.15 and adobe flash plug-in 10,2,152,32 installed.

    The video screen (and its controls) doesn't display. All the other parts of the screen display correctly.

    Yep, looks that way to me, too. There's (right this second) '''147''' folks on this thread: ->https://support.mozilla.com/en-US/questions/789534 and
    '''504''' on this thread: ->https://support.mozilla.com/en-US/questions/776670?page=2#answer-143849, not counting our''' 7 '''on this one (my screen's white, too). There's indications that it's a Google/Adobe thing, or a Google/YouTube thing. (That one's after linking Goggle Acct with YouTube.
    And yes, it was still messed up in Safe Mode.
    My take on it is to removing/disallowing cookie setting on YouTube for now, till '''whoever '''finally gets it fixed.
    I hope they'll send a email telling all of us when it's fixed. Heaven knows they have our addresses...
    OOPS--and another '''93'''on this thread: ->https://support.mozilla.com/en-US/questions/789443 And '''117''' on this one:->https://support.mozilla.com/en-US/questions/789576

  • Satellite M30X-111 screen doesn't display anything but external monitor works

    My laptop screen just doesn't display anything (look like when the computer is off) but when I connect the external monitor, then the desktop will be displayed on that monitor. I tried to recover the laptop using the recovery disk and it worked again, but today, it stopped working again.
    I again have to plug in the external monitor, and after I tried to reboot, I keep pressing F8 but the start up mode doesn't come up, only the sound of when you keep pressing a button for too long beeps, however, the laptop monitor works again.
    How do I fix this problem?

    Hi
    According to your first posting I presume that LCD display on your notebook is defective. If you can not see BIOS settings or Toshiba welcome screen there must be some display problem.
    Experiment with external display is to be sure that graphic card is not responsible for that. In your case it works with external display and graphic card can not be responsible.
    Like I said try to enter bios settings and report if you can see Toshiba welcome screen.

  • New user created doesn't see any data in reports

    Hello Everyone,
    I am using Hyperion Planning 11.1.2.1. I have a problem when i created a new user in the system via Shared Services. The reports are Reporting and Analysis reports.
    I duplicated a current user in the system and applied the same groups and provisions. However, the new user cannot view any data in the reports. The current user however is able to do so. I am quite literally puzzled.
    The existing user has been given the "Planner" provision. Further, the existing user has dimension security applied as well. This works fine with the existing user, as when i log in as the existing user, the data is available only to the groups and dimensions he has been assigned to. But when I apply the same groups and provisions to the newly created user, I get absolutely no data though i can see the report.
    But if I apply the Essbase Cluster: Administrator provision to the new user, all the data is viewable in the reports irrespective of the dimension security.
    I would appreciate some help urgently to get this matter resolved.
    Regards

    Hi John,
    Though the problem was solved last time, it returned. Users aren't able to view any web analysis reports.
    I dropped all users from SS and deleted all the security filters from EAS. (made a backup of course). Then I created all the users once again with relevant access to groups and the provision of "Planner" in the relevant planning application.
    Then in planning (Administration > Manage Security Filters > UserName > Create) created the filter for the user.
    When I did that, the default filter for the user was as follows.
    Access - None
    Member - @IDES("Accounts"),@IDES("Scenarios"),@IDES("Versions"),@IDES("ABCGroup")
    I want the user to have access to the Cost Center (Branch) L103. So I added the following.
    Access - Read
    Member - "Final","Draft 1","L103","Budget","Actual","Final Forecast",@IDES("Input Assumptions"),@IDES("Balance Sheet"), @IDES("Profit and Loss Account"),@IDES("Financials Ratio"),@IDES("Report Assumptions")
    This used to work, but for somewhat reason, it doesn't. The story is the same for all users. When i log in as a user and try to view a report, i get the "Database Login" - No data available error.
    Pls help.

  • After rendering a movie, the DVD project screen doesn't display

    Q. After rendering a movie, my DVD project screen won't display?

    Hi and welcome to the forums!
    Sorry to hear about your mishap.
    Do you have a backup using desktop manager? If so, your data is in there. Had you recently sync'd with outlook?
    Did water get into your BB? If so, place your BB in an open container of UNCOOKED white rice and set in a warm place for a few days. Rice should absorb the water.
    Let us know!
    IrwinII
    Please remember to "Accept as Solution" the post which solved your thread. If I or someone else have helped you, please tell us you "Like" what we had to say at the bottom right of the post.

Maybe you are looking for

  • IPhoto 9.4.3-keyword "" not working correctly in smart albums

    Every May I work on the 5th Grade recognition slideshow (using Keynote) for our 5th grade students.  In iPhoto, I always give photos the checkmark keyword after I've placed that photo so that I know it's been added/used.  I have many smart photo albu

  • "Error 1603. A fatal error occurred during installation"

    Ive been trying to install Adobe Photoshop CS4 trial for the past 3 days. The only reason I want to try it is because of its ability to create textures directly on models. But whenever I try to install, I get this error "Adobe Drive CS4 Error: Error

  • Black bars above/below flv

    Using Corel, I am coverting wmv's to flv's for import to Captivate 6. The videos play just fine but I have black bars above and below the video. I've tried changing the aspect ratio when converting the videos but I can't seem to get rid of the black

  • Alternate INBOX transaction for UWL application for SRM 7

    Hi, We are on SRM 7.1 ECS with EP 7.0 The issue we are fcaing is with the UWL application.This does not have the END DATE availabel to be set for aubstitutes.On checking further I found OSS notes 1552793 which talks about INBOX transction instead of

  • Trusted Authentication - Preferences

    I have trusted authetication working very well with the Infoview and all supporting application (Voyager, QaaWs/Xcelsius) but when I go to set the preferences I am sometimes getting with Windows authentication screen looking for parameters. I run a p