BSP MVC app -- debug issue

Hello,
I have an BSP MVC stateless app. It has 4 views: Initial, Start, REsult and Detail. Initial view encompasses the other 3 views. When a value is entered in the Start view and on hitting 'Get results' I want to debugger to stop. I assign an external breakpoint there -- but it still doesn't stop their on the DO_HANDLE_EVENT event. The debugger on other events like DO_INIT stops BUT not on handle event method.
I do have other app similar to the one above but the type is of stateful and the debugger on the same event works fine.  Please advise on how to make it work in BSP MVC stateless apps on certain events.
Thank you.
Kshitij

Hello,
Yes I do have dispatch_input() in the DO_REQUEST method of view Initial. But still the debugger doesn't stop at the DO_HANDLE_EVENT method.
method DO_REQUEST.
*CALL METHOD SUPER->DO_REQUEST
  data start_view TYPE REF TO if_bsp_page.
  dispatch_input( ).
  start_view = create_view( view_name = 'start.htm' ).
  start_view->set_attribute( name = 'pernr_low' value = me->pernr_low ).
  start_view->set_attribute( name = 'pernr_high' value = me->pernr_high ).
  call_view( start_view ).
endmethod.
Thank you.
Kshitij

Similar Messages

  • Call webdynpro from BSP (MVC)

    Hi, gurus!
    I have simple bsp created using MVC. I have my own component which includes MainWindow with controller class by default and a view with controller class and model class. Everything was created using Wizard.
    I need to call webdynpro app from this BSP in WEB UI. I have a code that get WD url, then I'm trying to use navigation in DO_REQUEST method whih I redefine for a view controller class:
      data: l_wd_url type string.
      call method cl_wd_utilities=>construct_wd_url
        exporting application_name = 'Z_XR_BP_COURCES'
        importing out_absolute_url = l_wd_url .
        navigation->goto_page( l_wd_url ).
    In test mode it's working fine, but when I call this BSP through WEB UI I recieve an error message:
    "Business Server Page (BSP) error
    What happened?
    Calling the BSP page was terminated due to an error."
    Sorry, if my question a little bit stupid =), but i'm new in BSP.
    Could anyone help me?

    Hi,
    Please check in SDN before posting the questions.
    Check with the following link [Webdynpro from BSP (MVC)|Call Webdynpro Application from BSP Application;
    Hope this helps you.
    Regards,
    Rajani

  • Problem with BSP MVC

    Hi all,
    I had a bsp application which is now running live in the organization. Recently, I got a problem report back from user, which is causing data loss.
    After the support team check the problem and found out the source of the problem. Let me briefly state the problem here. The application is using bsp mvc and it is stateful.
    First, when a user open the application in IE, it is a timesheet entry application, first page will display the time entry of that user for current month. let say the default selected month is September. then if the user wan to compare the entry with previous month, then he will open a new window (ctrl + N) or new tab (ctrl + T), then open the application again. Because of using SSO, the application will not prompt user to login again and will directly lead user to the time entry page. then the user change the month to August for the second new page.
    after the user change the month to august, it will refresh the model that hold the data of the month. means the model now carry August calendar. then the user go back to the first window or the first tab with september time entry, he try to add in new data into that time entry, and save. when it is saved, the september data will go into the August data not go into the September data. this causing data loss in September.
    If I tried this again with not using (ctrl + N) or (ctrl + T) but is open another new IE broswer instance, then it wont give this problem at all. because it create another new model to hold the calendar data. It work fine as long as the user not open two or more windows or tab in a same IE instances.
    Does anyone here meet this problem before or could provide any suggestion to solve this kind of problem? I cant simply changed the application to stateless because it already using worldwide and it will cause a lot of problem. Sorry if my question here was not clear enough.
    Thanks you. (reward point will be given for helpful answer.)

    Is there anyone can understand my problem?
    Thanks you.

  • Error deploying a Mvc app to Window Azure

    I am trying to deploy a MVC app to Azure but I am receiving this error
    Error 1
    Web deployment task failed. ('Microsoft.Web.Deployment.DeploymentBaseOptions' does not contain a definition for 'UserAgent')
    0 0
    Alter_Consult_mvc
    Will appreciate any help to fix it.
    thanks

    hi,
    Which version of VS and .netframework? I suggest you could update your software and components. And you could see this same thread :http://social.technet.microsoft.com/Forums/en-US/4955269e-23fc-4f22-aa7a-6975b02dd078/web-deployment-task-failed-deploymentbaseoptions-does-not-contain-a-definition-for-useragent?forum=windowsazureconnectivity&prof=required
    Please try it.
    Regards,
    Will
    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.

  • BSP-MVC download to excel

    Hello experts,
    I know there are many threads on this topic in the forum. I tried using method cl_bsp_utility=>download
    but nothing happens. Here is the scenario -
    1. I have BSP
    2. From Do_handle_event in controller class I am calling model method which handles downloading to excel.
    Please help as this is real showstopper for the application, I am developing.
    Thanks, in advance.
    Trupti

    Hi Gopal,
    Thanks for your reply.
    Tried the code you sent me. As I am using BSP-MVC, I am building method in controller class and with event handling calling the method that handles download to excel. But it is not doing anything at all.
    Thank you.
    Trupti

  • Uploaded text file has a new line added at the top using BSP MVC applicatio

    I have a BSP MVC application that uploads data on to the application server. When I open the uploaded text file, the very first line on the file looks like the line below. ->
    htmlb:button:click:nullhtmlb_form_1UploadUpload0htmlbdfsdf
    But the rest of the file looks okay. This is causing other than .txt files to get corrupted.
    Here is the code from my DO_HANDLE_EVENT.
    data: entity   type ref to if_http_entity,
          name     type string,
          content  type xstring,
          content_type type string,
          idx      type i value 1,
          v_root(26) value '
    houappl131\SRM_Download\',
          v_unxfile(100),
          v_transfer type xstring,
          v_type(6),
          v_len type i,
          v_dirfile type zfileinfo,
          v_ofile(80),
          v_guid type guid_32.
      class cl_htmlb_manager definition load.
      data:        v_asn(10) type n.
      data: fu        type ref to cl_htmlb_fileupload,
                       file_id   type string value 'batchfile'.
      data: o_page_context type ref to if_bsp_page_context.
      data: parent type ref to cl_bsp_controller2,
            lo_model                       type ref to cl_sus_m_asn_detail.
      o_page_context = me->get_page_context( ).
      cl_htmlb_manager=>dispatch_event_ex( request = request
      page_context = o_page_context
      event_handler = me ).
      refresh z_batch->message.
      if htmlb_event->server_event = 'Upload'.
        fu ?= cl_htmlb_manager=>get_data( request = request id = file_id name
                                             = 'fileUpload' ).
        if fu->file_name gt space.
              z_batch->parameters-fpath = fu->file_name.
              v_len = strlen( z_batch->parameters-fpath ).
              if v_len gt 4.
                v_len = v_len - 3.
              endif.
              v_type = z_batch->parameters-fpath+v_len(3).
              search z_batch->parameters-fpath for '.'.
              if sy-fdpos gt 0 and v_len gt 0.
                v_len = v_len - sy-fdpos.
                v_type = z_batch->parameters-fpath+sy-fdpos(v_len).
              endif.
              clear v_asn.
              v_asn = z_batch->parameters-asnhdr.
              concatenate v_asn
                          z_batch->parameters-asnitem
                          z_batch->parameters-batch
                          v_type
                          into v_unxfile separated by '.'.
              concatenate v_root v_unxfile into v_unxfile.
              condense v_unxfile no-gaps.
              open dataset v_unxfile for output in binary mode.
                while idx <= request->num_multiparts( ).
                  entity = request->get_multipart( idx ).
                  name = fu->file_name .
                  if name is not initial.
                    content_type = entity->get_header_field( 'Content-Type' ).
                    clear content.
                    content      = entity->get_data( ).
                    v_transfer = content.
                    transfer content to v_unxfile.
                    append content to z_batch->filetab.
                  endif.
                  idx = idx + 1.
                endwhile.
                close dataset v_unxfile.
            endif.
      endif.
    Here is my fileupload button in the view
    <htmlb:page title="File Upload " >
        <htmlb:form method       = "post"
                    encodingType = "multipart/form-data" >
          <htmlb:label id     = "Batchnum"
                       design = "Label"
                       for    = "Batchnumber"
                       text   = "Batch" />
          <htmlb:inputField id    = "Batchinput"
                            value = "//zbatch/parameters.batch" />
          <htmlb:fileUpload id="batchfile" />
          <htmlb:button id      = "Upload"
                        text    = "Upload"
                        onClick = "Upload" />
          <htmlb:button id      = "Close"
                        text    = "Close window"
                        onClick = "Close" />
    Any of you gurus know why this is happening?

    I solved it myself

  • Debugging issue on establishing connection

    Hi,
    after reading all the comments on debugging issues using sql developer i am no step further. It seems i have a different problem.
    I'm using sql developer 1.5.1 on a windows client.
    <ul><li>connection to server is establihed via basic configuration (server, port, sid)</li>
    <li>the code is comiled for debug</li>
    <li>i do no remote debugging</li>
    </ul>
    When the debugging is startet i get the following log:
    connecting to the database XXX.
    Executing PL/SQL: ALTER SESSION SET PLSQL_DEBUG=TRUE
    Executing PL/SQL: ALTER SESSION SET PLSQL_COMPILER_FLAGS=INTERPRETED
    Executing PL/SQL: CALL DBMS_DEBUG_JDWP.CONNECT_TCP( 'xxx.xxx.xxx.xxx', '4283' )
    ORA-30683: Fehler beim Herstellen von Verbindung zu Debugger
    ORA-12570: TNS: Fehler beim Paket-Leser
    ORA-06512: in "SYS.DBMS_DEBUG_JDWP", Zeile 68
    ORA-06512: in Zeile 1
    Process exited.
    Disconnecting from the database XXX.
    (its german, sorry)
    The point is, there is a debug service listening at the named port. If i start al telnet session at the ip and port i get the response: JDWP-Handshake
    It seems the debugging process is not able to reach the db on the server? But why - since the client does?
    Any help is welcome!
    Thanx,
    Cmder

    The way debugging works is that the database session which is running your code, connects back to the debugger running within sqldeveloper. So for debugging to work, the database server needs to be able to connect to your PC.
    Is the IP address in the error message the IP address of you PC? I assume so, since you can telnet to it. If not, try checking the preference "Prompt for debugger host for database debugging" in Tools | Preferences| Debugger.
    If you have access to the database server can you connect back to your PC using telnet?

  • Reg:bsp(mvc)

    hi to all,
    i had developed a stateful BSP application using MVC .
    in the first view iam entering a material number.
    in the second view iam displaying the records from a table based on material number.again when i make the application to stateless it is displaying the second
    view.with writing a code for a stateless application.i.e server side cookies.
    could any one help me out.
    with regards.
    gangadhar.

    Hi,
    To set data using cookies,
    call method cl_bsp_server_side_cookie=>set_server_cookie
              exporting
                name                  = 'ZF0707'
                application_namespace = str_app_ns
                application_name      = str_app_na
                username              = 'shtml'
                session_id            = str_ses_id
                data_name             = 'EMP_DATA'
                data_value            = itl_delview_tab
                expiry_time_rel       = 7200.
    To get the data using cookies,
    call method cl_bsp_server_side_cookie=>get_server_cookie
        exporting
          name                  = 'ZF0707'
          application_namespace = str_app_ns
          application_name      = str_app_na
          username              = 'shtml'
          session_id            = str_ses_id
          data_name             = 'EMP_DATA'
        changing
          data_value            = itl_delview_tab.
    here itl_delview_tab is an internal table.
    Also go through the below link,
    http://help.sap.com/saphelp_nw04s/helpdata/en/bd/4cd23a09313b37e10000000a11405a/content.htm
    Please close ur earlier thread and award points if u have got the solution,
    Re: REG:BSP(MVC)
    Regards,
    Sachidanand.B

  • How to clear the variables before closing a BSP MVC application

    I am calling a custom stateful BSP MVC application to display additional PO information as a popup window inside SAP BSP. When I close this popup window and open it later on a different PO, it still displays the old PO information. I am clearing the variables in the DO_HANDLE_EVENT. 
    I am using the javascript
    <htmlb:button id      = "Close"
                        text    = "Close window"
                        onClientClick="javascript:window.close()"  />
    to close the window.
    Could someone tell me what do I need to do before closing so that I can clear all the variables.

    Hi Krishana,
    Other neater way could be..
    instead of calling java script.. raise a server event.. in DO_HANDLE_EVENT set a flag <b>lv_close_window</b> to 'X'.
    on the page call the script to close the window if flag <b>lv_close_window</b> is set to 'X'.
    just before setting rhe flag to 'X' you can clear all unnecessary data.
    rememebr: javascript wont take you to DO_HANDLE_EVENT.
    <htmlb:button id = "Close"
    text = "Close window"
    onClick="close_window" />
    i would to this way if i am willing to go to DO_HANDLE_EVENT.
    A.

  • BSP/MVC: Naming of Class Atributes

    Hi there
    developing BSP/MVC applications, I wonder which is a good naming standard for new class attributes of a controller or model class. saw in the examples that most attributes start with "M_" not only the inherited ones but also newly added.
    as far as I remember, attributes starting with "M_" have a special meaning, can't fracking remember which one, though
    So my questions:
    1. what kind of attributes start or shout start with "M_"
    2. what's a useful naming standard for attributes in classes
    thanks in advance
    Gerald

    you just create a constructor method for this class and pass the column definition from your application to this class while instantiating the same .
    sample.
      CALL FUNCTION 'TR_NAMETAB_GET'
        EXPORTING
          iv_tabname                 = 'SFLIGHT'
          iv_get_lengths_in_charmode = ' '
          iv_get_texts               = 'X'
        IMPORTING
          et_dfies                   = lt_dfies
        EXCEPTIONS
          not_found                  = 1
          OTHERS                     = 2.
      IF sy-subrc <> 0.
    *--- Do nothing in this particular case
      ENDIF.
      LOOP AT lt_dfies INTO ls_dfies.
        wa_pers_tab-field_name = ls_dfies-fieldname.
        wa_pers_tab-text       = ls_dfies-reptext.
        wa_pers_tab-colpos     = sy-tabix.
        wa_pers_tab-invisible  = ' ' .
        APPEND wa_pers_tab TO pers_tab.
      ENDLOOP.
    ENDIF .
    SORT pers_tab BY colpos .
    CREATE OBJECT iterator TYPE ycl_tv_iterator
      EXPORTING
        col_def = pers_tab .
    and in the column definition method you can use this to build the columns
    LOOP AT m_col_def INTO wa_col_def  .
        APPEND INITIAL LINE TO p_column_definitions ASSIGNING <def>.
        <def>-columnname = wa_col_def-field_name.
        <def>-title      = wa_col_def-text .
      ENDLOOP .

  • Current app compatibility issues on iPod Touch!

    I have a 2nd Generation iPod Touch which I've had for a couple of years and I've never experienced any problems with it until the most recent update on the version of software it's running. Since the 4.2.1 update I am no longer able to run some apps on my device and I can't understand why. The two apps in question that won't run are...
    djay for iPhone & iPod touch (Version 1.2)
    The 7th Guest (Version 7.2)
    Everytime I attempt to sync either of these two apps it comes up with an error message stating "The app was not installed on the iPod because it is not compatible with this iPod". Now I've looked around at other problems with app compatibility issues and most people say that you should simply update the iPod. My device is currently up to date so I can't understand why these apps aren't working. Is it because the hardware itself on the 2nd Gen iPod is simply out of date? Any help or insight into this matter would be greatly appreciated.
    Cheers.

    Your iPod's hardware is insufficient. djay for iPhone & iPod touch requires an iPod touch 3rd generation or later (per the developer's web site), and The 7th Guest requires iOS 4.3 or later which will only run on a 3rd-gen iPod touch. If you want to run these two apps, you'll need to get a new, or at least newer, iPod.
    Regards.

  • Any charge for free app and issues at Apple Store?

    In case we need to create free issues or even apps for iPad (from a non-profit organization), what will the incurred costs be through the whole process?
    i.e. From the time of development of issues and the app in which the issues may work - is there any registration or license fees involved, till it reaches all customers - provided the package is for free?
    Any charge for free app and issues at Apple Store for iOS apps for iPad?

    You must pay the USD$99 fee to join the Individual Developer Program.
    After that, there is no fee to put free apps into the iOS App Store.

  • Visual Studio opening files when dragged and dropped in WPF app debugging session

    I'm working on a WPF app (using VS2013 CE) which is intended to manage media files (TV Shows, movies, etc) and as part of this I am enabling the user to drag and drop media files on to the running app (by adding AllowDrop="True" and PreviewDragEnter="Window_PreviewDragEnter"
    to my Window definition).
    The problem I have is that when I drag files onto the app in a debugging session Visual Studio then opens the file(s) when I stop debugging... this is seriously annoying as when I am testing with large media files (> 1GB) it just locks up VS for minutes
    at a time while it tries to open the file or files. When I run the app outside the debugger this does not happen - it's only when I'm in a VS debugging session.  The only way I can stop this happening is to kill VS completely from Task Manager then restart
    it - this is also very annoying but often I need to do this as it will freeze up for 5-10 minutes while it insists on loading the files in VS.
    I understand the app, whilst debugging, is running in the context of VS but why does VS then have to try to open the files when debugging is finished?   I have looked through the options but can't see anything to switch this off and no amount of searching
    has turned up anything - can anyone put me out of my misery with a solution to this annoying issue?

    Hello nzmike,
    Does Visual Studio behaves like the following image shows and just hangs when opening your media file?
    Do you have any other computer which installs Visual Studio? Can you reproduce this on it?
    In order to troubleshoot this issue I think we need to locate the root reason of your issue. The problem can related to the following:
    1. Your project is corrupt and VS then trys to load that file when debug finished.
    2. Your VS is corrupt and caused this problem.
    So please do something below:
    1. Try clean and rebuild your project.
    2. Switch to some other PCs and use VS and your project there, check if the problem can be reproduced.
    3. You can backup your VS setting and try some commands: devenv /resetsettings and devenv /resetuserdata
    Details about VS command:https://msdn.microsoft.com/en-us/library/xee0c8y7.aspx
    And based on th research of the above second step, if you can reproduce this issue on more than one PC, the problem is pending on your project and I need you to share a simple sample which can reproduce this issue. We will need to investigate the project
    in detail.
    Best regards,
    Barry
    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.

  • Post Processing Error - how to debug issue?

    I copied a vanilla report and slightly modified it. the data definition is a vanilla oracle object that is un-changed.
    i copied the data to my desktop and the report runs fine (from the Desktop). However the report fails to produce output when run from the application. I get the following in the log file
    Beginning post-processing of request 15980025 on node RADON17 at 22-MAY-2008 09:07:49.
    Post-processing of request 15980025 failed at 22-MAY-2008 09:07:49 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    The OPP log does not provide any details.
    [5/22/08 9:07:49 AM] [24053:RT15980025] Executing post-processing actions for request 15980025.
    [5/22/08 9:07:49 AM] [24053:RT15980025] Starting XML Publisher post-processing action.
    [5/22/08 9:07:49 AM] [24053:RT15980025]
    Template code: XXEAMWOREPORT
    Template app: XX
    Language: en
    Territory: US
    Output type: RTF
    [5/22/08 9:07:49 AM] [UNEXPECTED] [24053:RT15980025] java.lang.reflect.InvocationTargetException
         at sun.reflect.GeneratedMethodAccessor33.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:624)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:421)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:233)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997)
         at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212)
         at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1659)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:969)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5916)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3452)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3541)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:244)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:172)
    Caused by: java.lang.NullPointerException
         at oracle.xdo.parser.v2.PagedNodeList.readPage(PagedNodeList.java:324)
         at oracle.xdo.parser.v2.PagedNodeList.start(PagedNodeList.java:312)
         at oracle.xdo.parser.v2.XPathFunctionCall.evaluate(XPathFunctionCall.java:540)
         at oracle.xdo.parser.v2.PathExpr.evaluate(XSLNodeSetExpr.java:851)
         at oracle.xdo.parser.v2.XSLForEach.processAction(XSLForEach.java:113)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLForEachGroup.processLazy(XSLForEachGroup.java:622)
         at oracle.xdo.parser.v2.XSLForEachGroup.processAction(XSLForEachGroup.java:97)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLForEach.processAction(XSLForEach.java:147)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLResultElement.processAction(XSLResultElement.java:180)
         at oracle.xdo.parser.v2.XSLNode.processChildren(XSLNode.java:417)
         at oracle.xdo.parser.v2.XSLTemplate.processAction(XSLTemplate.java:191)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:512)
         at oracle.xdo.parser.v2.XSLStylesheet.execute(XSLStylesheet.java:489)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:271)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:155)
         at oracle.xdo.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:192)
         ... 17 more
    [5/22/08 9:07:49 AM] [24053:RT15980025] Completed post-processing actions for request 15980025.
    Any other tools I can use to debug the error??? I'm stuck

    1. Is it possible to get more debug information from the Crystal Engine to help determine which fields/formulae are causing the issue?
    Unfortunately that is it as far as errors.
    2. Does anyone have any initial ideas as to why this might be failing?
    a) Apply the latest Service pack:
    https://smpdl.sap-ag.de/~sapidp/012002523100009038092009E/cr2008win_sp2.exe
    b) In the CR designer, enable Verify on First Refresh and Verify Stored procedures on First Refresh
    c) If the above does not help, as a test create a new win app. All you should need is just the one line of code, no db code. Let the report prompt for the db logon. If the win app works, it's probably a permission issue.
    Ludek

  • Desktop AIR app debug build running from cache?

    I'm new to flash builder (using 4.5 for os x) and I've been working on a desktop AIR app for the last week.  I've been running into a strange issue when deugging my app.  Every once and a while (maybe 4-5 times a day) after I make changes to my code and I make a new debug build, a much older version of the app runs when I run the app with or without the debugger, or even if I export for release.  It's as though its running (or building) from the cache, except I'm building a desktop app and I'm not testing the swf on a browser.  I've turned off "Build Automatically", cleaned the project and build again but no changes are reflected.  I can't figure out how, but after cleaning, quitting flash builder, restarting, cleaning, building again, etc.. numerous times suddenly I will see the current version of the app back up and running.  I cannot for the life of me figure out how to quickly resolve the issue, or what exactly is fixing it. Every time it seems like something else triggers FB to refresh the build.  I can even run the debugger and step through my current code while seeing completely different results on the screen.
    Has anyone else run into this issue?  Anyone know what I may be missing?  Are there settings I need to change besides "Build Automatically"?  Thanks for your help,
    Nick

    Thanks for the answer.  How exactly Flash Builder is running is a little clearer to me now.  I checked and the timestamps were indeed being updated correctly.
    This helped me to look elsewhere for the issue.  I actually now think it may have to do with mobile home sync that I have going through OS X.  Whenever the sync runs, FB seems to launch an outdated (as in hours ago) version of the app.  Despite the fact that the sync is not pulling in new files, it seems to be the issue.  If i stop the sync I start seeing the current version of the app again when I run the debugger.  So I think its just the OS causing my problem (although I still don't completely understand why exactly the issue would manifest itself in FB).  Fortunately I can recreate the issue every time I run the sync, so the problem is consistent at least!
    Thanks again for your help.

Maybe you are looking for

  • Is there a way to change the color of your calendars in the calendar app when it has been synced with multiple calendars?

    I have just purchased an iPad 2 and I have gotten it setup to sync with my multiple calendars on Google Calendar.  But the colors I have chosen for displaying my calendars in Google Calendar are not being used when the info comes over to the iPad.  T

  • Tax line items not accumulating together in Miro

    Hi I am creating PO with more than one material Ex. for 5 different material. when i do MIRO , i am getting five Material and tax lines each seperately . It is not auumulating together. I need to add all together in one line item in MIRO for the post

  • "SELECT" problem

    Hi everybody, select s012matnr sum( s012menge ) sum( s012wemgm ) from s012 into corresponding fields of table it1 group by s012matnr. i am having problem with the query mentioned above. grouping by matnr is successful but summing of menge and wemge d

  • MacBook Pro 17 - Light from the right ...

    Brand new MacBook Pro 17. When i dim the screen brightness with F1 until complete darkness and then press F2 the light "starts" in the right of the screen and flows to the left. You can watch it move. It looks like a curtain is drawn to the left. Is

  • IDVD 5.01 Crash at Start-up

    I'm on a dual 1.4 GHz G4 with 2 GB of RAM running OS 10.4.11. I have been using iDVD 5.01 for years, but lately it refuses to work. It boots, but when I try to create a file it crashes every time.  I've deleted the preference files and re-updated 5.0