PC hang after launch the ABAP Webdynpro

Dear All,
i do the SFLIGHT tutorial that provide by SAP. When I launch it in http://venture.imedea.int:8000/sap/bc/webdynpro/sap/zz_00_sflight
then it need me to login. After i login then it will display the tutorial output. But i cannot select anything from the button there because it make my computer hang. Is there any configuration that i need to set so i can access it without make my CPU load become 100%?
Thank you

Dear Abir,
Thank you fro your reply. I didnt change anything inside the component. And what do is just follow the tutorial from : Web Dynpro for ABAP: Tutorials for Beginners [original link is broken]
Or maybe i need to change anything in SICF or maybe something wrong with the tutorial. Or else is there any configuration that i miss out?
Thanks

Similar Messages

  • After the update, Photoshop CC hangs after launch and can't be used. How do I fix this?

    After the update, Photoshop CC hangs after launch and can't be used. How do I fix this?

    Please try to perform the steps given the following help article.
    http://helpx.adobe.com/photoshop/kb/cc-applications-crash-immediately-launch.html
    If it does not worked then try to reset the preference of Photoshop CC application.
    Please check http://helpx.adobe.com/photoshop/kb/preference-file-functions-names-locations.html in order to reset Photoshop preferences.

  • Hi, we are using mac mini's for our developement purpose. connecting the same through using Real VNC. Mac mini's are late 2009 and 2010. Now we have upgraded them to 10.8.5. after upgrading having display issues after launching the simulators

    hi, we are using mac mini's for our developement purpose. connecting the same through using Real VNC. Mac mini's are late 2009 and 2010. Now we have upgraded them to 10.8.5. after upgrading having display issues after launching the simulators, we are unable to view the icons we need to move the simulator (into different places) to view the icons.
    Also we are having Mac book pro's (Late 2009 & 2010) after upgrading them to 10.8.5. Unable to launch the mac, getting only white screen with apple icon.
    Let me know is there any specific Hardware (Graphic Cards) we need to use for the same.
    Please provide me the early solutions.
    Regards,
    Suresh.

    Hi, try this first...
    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.

  • Creating a Bug after Launching the Project into Production Environment

    Hello My Friends;
    As I'm New in Implementing TFS 2013, would U advise me How to open a new Bug - after Launching The Project in to Production Environment which has already conducted more than a year ago before implementing TFS. So, a Bug has come from the Business Colleagues.
    I'd like to open a new Bug on TFS ?!
    What Repro Steps Mean ?!
    Thanks for your supportRegards;
    EB

    Hi EB,
    Thanks for your post.
    After you connected to team project using your VS, you can open a new Bug work item in VS, please refer to the steps in this document:
    https://msdn.microsoft.com/en-us/library/dd293538.aspx.
    The Repro Steps mean: provide the detailed reproduce steps there, then developer can follow the detailed steps to reproduce this bug and try fix it.
    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.

  • Database is Hanging after executing the Procedure ...

    Dear All i am using 10G.
    I Have a procedure . After executing the Procedure when i try to call that procedure it is hanging ...
    it is creating Locks .. As our DBA told..And told to check the code ...
    Can any one tell me how can i put mu codes with formatting ? When i copy paste my code it is showing properly but after POST MESSAGE it is showing like i have written history ...--*
    I am Executing the procedure like this ...
    EXEC simulator_validation ('0|BP-V1|20101004|01|1|2430962.89|27|2430962.89|MUR|20100928120106','04-SEP-2010',27,2430962.89,'MUR','000111111111');
    And my code is :-
    {Create Or Replace Procedure simulator_validation (lstring varchar2,ldate date,lno_item number,ltotal number,lcur varchar2,lac_no Varchar2)
    IS
      l_swift_code_acno number;
      l_ACno_Valid number;
      l_swift_code_others Number;
      lpcode varchar2(5);
      lCcode Varchar2(4);
      lval number;
      lacno varchar2(16);
      v_file varchar2(20);
      v_path varchar2(50);
      LToken   VARCHAR2(100) ;
      i        PLS_INTEGER := 2 ;
      lfirst_char  number;
      lvalue  Varchar2(100) ; 
      lcol number:= 1;
    Begin
      lfirst_char := Substr(lstring,0,1);
      Dbms_output.put_line(lfirst_char);
          IF lfirst_char  = '0' Then ------------------- For the 1st Line - Should be start from 0
                Loop
                  LToken := mcb_simulator_pkg.Split( lstring, i , '|') ;  
                  lvalue := LToken;
                      IF lcol=1 then
                             If lvalue='BP-V1' THEN
                                   Dbms_output.put_line('1');
                             Else
                                 Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0003','Invalid file type and version number');
                                Dbms_output.put_line('2');
                            End if;
                      Elsif lcol=2 then
                              If lvalue=To_Char(ldate,'YYYYMMDD') THEN
                                 Dbms_output.put_line('3');                                                                                                                                                                                                                                       
                            Else
                                 Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0004','Due date differs from the value inputted in the loading screen');
                                 Dbms_output.put_line('4');
                            End if;
                      Elsif lcol=3 then
                                   Begin
                                         Select PAYMENT_PURPOSE_CODE into lpcode
                                         From MU_PURPOSE_CODE
                                         Where PAYMENT_PURPOSE_CODE = lvalue;
                                     IF lpcode = lvalue Then
                                           Dbms_output.put_line('5');
                                     Else
                                          Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0006','Invalid payment purpose code');
                                          Dbms_output.put_line('6');
                                     End If;
                                Exception
                                    When No_data_found Then
                                    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0006','Invalid payment purpose code');
                                End;
                      Elsif lcol=4 then
                                    If lvalue='1' THEN
                                         Dbms_output.put_line('7');
                                    Else
                                       Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0008','Total number of debit records in header does not tally with number                   debit records in the file.');
                                      Dbms_output.put_line('8');
                                   End if;
                      Elsif lcol=5 then
                                    If lvalue=ltotal THEN
                                          Dbms_output.put_line('9');
                                    Else
                                        Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0010','Total debit transaction amount in header does not tally with the sum of debit transaction amount in the file');
                                       Dbms_output.put_line('10');
                                  End if;
                     Elsif lcol=6 then
                                    If lvalue=lno_item THEN
                                         Dbms_output.put_line('11');
                                    Else
                                        Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0025','Number of credit records does not tally with credit records in the file.');
                                    End if;
                     Elsif lcol=7 then
                                    If lvalue=ltotal THEN
                                         Dbms_output.put_line('12');
                                    Else
                                         Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0026','Sum of credit records does not tally with total transaction amount as inputted in the loading screen');
                                    End if;
                    Elsif lcol=8 then                
                                    If lvalue=lcur  THEN
                                          Begin
                                                    Select Cur_CODE into lCcode
                                                      From Mu_currency_Code
                                                    Where Cur_CODE = lvalue;
                                                    Dbms_output.put_line('13');
                                          Exception
                                              When No_data_found Then--------------------
                                                 Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0014','Invalid Currency');
                                          End;
                                    Else
                                          Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0013','Currency differs from the value inputted in the loading screen');
                                   End if;
                     Elsif lcol=9 then
                                    If lvalue=Null  THEN
                                          Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0015','Timestamp should not be null');
                                    Elsif lvalue <> lvalue Then
                                         Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0046','Timestamp in header should be in the format YYYYMMDDHHMMSS');
                                    End if;
                       End IF;
                      EXIT WHEN LToken IS NULL ;
                         i := i + 1 ;
                         lcol:=lcol+1;
                       End LOOP;
              Else
                                      Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (9999,'0002','First line should always start with 0');
              End if ;}
    -------------------- For the 2nd Line , should be start from 9 .-----------------------------
    {  lfirst_char := Substr(lstring,0,1);
    IF lfirst_char = '9' Then
    LOOP
    LToken := mcb_simulator_pkg.Split( lstring, i , '|') ;
    lvalue := LToken;
    IF lcol=1 then
    If lvalue < 0 THEN
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0017','Amount should be greater than zero');
    Elsif lvalue = ltotal THEN
    Dbms_output.put_line('20');
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0018','Transaction amount differs from the value inputted in the loading screen');
    End if;
    ELSIF lcol = 2 THEN
    If lvalue = Substr(lac_no,4,9) THEN
    mcb_simulator_pkg.Acct_no_Validator(lvalue,1111,l_ACno_Valid);
    mcb_simulator_pkg.Swift_code_validator_for_ac_no(lvalue,1111,l_swift_code_acno);
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0020','Account number differs from the account number inputted in the loading screen');
    End if;
    ELSIF lcol = 3 THEN
    If lvalue is not null THEN
    mcb_simulator_pkg.Swift_code_validator_for_other(lvalue,1111,l_swift_code_others);
    Else
    Dbms_output.put_line('21');
    End if;
    END IF;
    EXIT WHEN LToken IS NULL ;
    i := i + 1 ;
    lcol:=lcol+1;
    End Loop;
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (8888,'0016','Second line should start with 9');
    End IF; }
    -------------------- For the 3rd Line Should be start from 1.--------------------------
    { LOOP
    lfirst_char := Substr(lstring,0,1);
    IF lfirst_char = '1' Then
    Loop
    LToken := mcb_simulator_pkg.Split( lstring, i , '|') ;
    lvalue := LToken;
    IF lcol=1 then
    If lvalue > 0 THEN
    Dbms_output.put_line('24');
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0017','Amount should be greater than zero'); End if;
    ELSIF lcol=2 then
    Mcb_simulator_pkg.Acct_no_Validator(lvalue,1111,l_ACno_Valid);
    Mcb_simulator_pkg.Swift_code_validator_for_ac_no(lvalue,1111,l_swift_code_acno);
    ELSIF lcol = 3 THEN
    If lvalue is not null THEN
    mcb_simulator_pkg.Swift_code_validator_for_other(lvalue,1111,l_swift_code_others);
    Else
    Dbms_output.put_line('26');
    End
    END IF;
    EXIT WHEN LToken IS NULL ;
    i := i + 1 ;
    lcol:=lcol+1;
    End Loop;
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (7777,'0022','The third line onward should start with 1');
    End if;
    END LOOP;
    Commit;
    End;}
    Edited by: LuKKa on Oct 4, 2010 9:20 PM
    Edited by: LuKKa on Oct 4, 2010 9:25 PM

    Yes i gave {} but it is also coming like this ...Yes, since you should use {noformat}{noformat} before and after your example, and not putting your example between a '{' and a '}'.
    So, when you post/type/copypaste:
    {noformat}select *
    from emp;{noformat}
    on this forum, it will appear as:select *
    from emp;See the FAQ for more tags/tips:
    http://forums.oracle.com/forums/help.jspa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to find the ABAP Webdynpro Component Name in the Portal IView(WDA)

    Hi All
    I got one ABAP Webdynpro IView in portal , when i opened the Iview i got the Application name of ABAP Webdynpro in the properties of the Iview but i could not able to find the component name .
    Please let me know how to find the component name of WDA , as i already got the Application name of component  from Iview i.e WDA_ED_RDF ( this is applicaiton name found in the portal Iview for ABAP Webdynpro)
    Please get back to me on the same , it would be great help to me.
    Thanks,
    PortalUser100
    Edited by: PortalUser100 on Mar 24, 2011 11:51 PM

    Hi
    Right Click on any UI Element in Portal->Go to more field help->TEchical Information. You can see all the information about component, application, ui elements etc.
    Please check this... may helps more
    http://wiki.sdn.sap.com/wiki/display/WDABAP/GeneralTechnicalAspects
    Thanks,
    Venkat.

  • Is the ABAP Webdynpro CATS available in both ESS and MSS?

    Hi experts,
    We are in the process of implementing the WDA CATS application for ESS (ECC 6 EHP5) but our scenario is actually for managers to enter in time in CATS on behalf of their employees. I can't find any information on this scenario using the WDA CATS. I have linked the application to the related activities iView in MSS but it seems to be launching the CATS application for the manager instead of the employee.
    The standard MSS role (1.5) seems to launch the Java CATS when doing it on behalf of an employee. I just want to find out if it's possible to use the WDA CATS application for on behalf scenarios as it used to be with the Java CATS?
    Thanks!!
    Jo

    Hey Jo
    how are you? here goes some background info on cats and ess/mss:
    In ehp5 - ess there are 5 application configurations delivered by sap in wd-abap one of which is the approval view for managers its called  hrmss_ac_cats_approval. the remaining 4 configs are for employees to enter cats data.
    Now the point of issue is the 'ess in mss' or 'on behalf of' functionality....
    MSS at ehp5 cats is still on wd-java I guess,... I am not 100% sure so what needs to be done holistically is:
    1. Select one of the employee cats appication configurations.
    2. include it into the mss-related activity space.
    3. now this has a known issue: passing of the employee number from within wd-java to wd-abap application sap has a couple of notes for them --> 1577099 & 1578965 chk them out....
    4. what those notes say is you can put in any wd-abap service into related activity space which is still wd-java,... and get the manager to book time on behalf of employees...
    I have personally not done the above yet,... but I did some r&d last year on the above......
    ahh before I forget you may want to chk out the note 1513325
    finally to be able to call the employee cats service in related activities could mean you have to:
    1. create an iview of type wd-abap caling the ess-cats wda service.
    2. include it within the related activities wdj page...
    3. have the aforementioned notes applied..
    4. ready to go...
    tell me if this worked for you or not. if it does you owe me a coffee.
    cheers
    shree.

  • ESS E-leave : which is the ABAP Webdynpro component ?

    Hi Gurus,
    I have a few questions regarding ABAP-Webdynpro.
    1. Which is the corresponding ABAP Webdynpro component for ESS E-Leave application ?
    I need to add a new report to the Leave Request page but unable to find the ABAP WD component for the same !
    2. Just by looking at the portal web-page, is it possible to find out if the page is based on Java WD or ABAP WD ? And if ABAP WD, how to find the corresponding component ?
    Any hints will be greatly appreciated and rewarded.
    Regards,
    Sandip.

    Just right click on empty space on leave application and select "more field help" then you will get technical information of the component.
    But some times, this option will be disabled by portal administrators.
    Regards
    Srinivas

  • System hangs after launching P2P

    Hi,
    I have just installed a K7N2 Delta MB with a 2500+ Athlon and a 3200 DDR (PQI) of 512 Mo. My OS is WinXP SP1.
    Everything works very fine until I load a P2P (emule).
    I had not this problem with my defunct Elite MB (with a 1800 Athlon and a 2100 DDR).
    I have an ADSL connection via an ECI USB modem.
    WinXP and the MB Bios and drivers are updated (using Win update and MSI Live monitor). I have also updated the VIA chipsets with VIAHyperion4in1446vp6 and updated the NVidia drivers/programs SINCE the USB host controller is an NVIDIA one (therefore the VIA USB 1.1 cannot be installed)
    I have uninstalled/re-installed all my USB ports and also closed the LPT port.
    The ADSL modem is connected to an hub while I have connected my optical mouse to a separate USB port (since MSI writes that the mouse consumes a lot of energy).
    I have aloso enabled the USB in the Bios and even the KB USB whereas I do not have an USB KB (I had the same problem when the KB USB was not enabled).
    The BIOS indicates an 100 FSB.
    What should I do?
    Thank you in advance.
    (pardon my approximate English and technical languages).

    Sharp,
    I have re-installed WinXP, installed the Nvidia updates (and the MSI and Win XP ones) and installed a more recent and more efficient ADSL connection driver.
    However, eMule hangs after less than 1 minute with a 166 mHz as well as with a 133 mHz FSB (this means: I cannot close it with the Task Manager and I am obliged to re-boot WinXP.
    Moreover, the CPU temperature climbs quickly to 60°C at 166 mHz.
    I know that I could solve the temperature problem by installing a new fan. However, I am not certain that this would solve the hanging one (although one may think that it's the temperature that leads to the hanging.
    I have discovered in the eMule forum that other people with other configurations encounter the same difficulties as me. Therefore, their solutions will probably not be found on this site.
    Thank you for your availability.

  • Include Java script in the abap webdynpro

    Dear expert,
    Anyone know how can i include a java script in the abap web dynpro.
    Thanks
    Regards,
    Bryan

    Hi
    There is no way you can include Java Script in Web Dynpro ABAP. You can navigate to a BSP application and run your JavaScript.
    Abhi

  • IPhoto 09 hangs after launch...

    Not sure why, but this started happening about a week ago. No real changes to anything in the way I use iPhoto and no system changes. I am not using a network drive, or USB storage. All photos are in the default library.
    When I launch iPhoto, it loads, shows the events screen and then hangs (beach ball). I have left it this way overnight with no resolution. Only way to get it going again seems to be a reboot and then launching iPhoto before any other app.
    Any ideas?

    WMC Bruce
    Welcome to the Apple user to user assistance forums
    1 - quit iPhoto and delete your iPhoto preference file - "your username" ==> library ==> preferences ==> com.apple.iPhoto.plist - when you launch iPhoto it will create a new, default preference file - reset any user preferences you have changed and if you have changed the location of the iPhoto library re-point iPhoto to its new location
    If this does not resolve your problem then
    2 - Launch iPhoto while depressing the option (alt) and command (apple) keys and use the last rebuild option - rebuild from last automatic database backup
    Rebuilding often will resolve this
    LN

  • MDB is hanging after processing the request for sometime

    Hi,
    We have a MDB deployed in Weblogic 10.0 and the application is processing for few hours, after which it hangs. It processes around five to six hundred messages and after that stops consuming the incoming messages. We have enabled the redelivery option for the queues.
    Is there any limitation if lot of messages are there in pending state?
    The thread dump analysis did not help us in resolving the issue.
    Is there any known issue with weblogic or please let me know if any fine tuning can be done to resolve this issue.
    Thanks in Advance.

    Hi,
    There is very less information to find the exact root cause. I think you can provide the thread dumps taken during the time the issue occurs and involve Oracle-BEA support. The weblogic server log file(check for any rollbacks) could also reveal anything that is unusual.
    You can monitor the following :-
    1. Number of MDB instances in pool. (Increase them if required).
    2. JVM Heap. This could be memory related issue. Increase the heap and test.
    Regards.

  • Hang after upgrading the Mac OS (10.6.7) last nite

    Hi, I just updated the Mac OS last night. Before that, I uploaded lots of photos in iPhotos. After uploading and software update in the Mac and restarted, the iPhoto was hanged and did not respond.
    Any ideas to resolve it??
    Pls kindly advise.

    Hi j,
    An SMC Reset can fix some SIL issues. If everything is working fine . . . ? Anyway, it shouldn't hurt anything to try it if you want: http://support.apple.com/kb/HT3964

  • Satellite L750 system hangs after disconnecting the WLan

    I bought Satellite L750 series laptop on that i connected Wifi. if i disconnect Wifi then system get hanging. I cant do anything in that. I updated driver software and i checked all the possibilities as my knowledge.

    >if i disconnect Wifi then system get hanging.
    I assume you are using Fn + F8 to enable/disable the WLan.
    Right?
    Did you try to recover the system in order to check if this is a system problem?
    I think you should do that and should recover the notebook using HDD recovery procedure
    Power up the unit, press F8, choose Repair my Computer, choose HDD recovery and follow the instruction on the screen then you will get the system with factory settings.
    Then test the WLan.

  • Couldnt upgrade the  java stack  after upgrading the abap to ehp1

    Hi
    I have upgarded the  system to ehp1 but i couldnt continue to upgarde the java stack  to 18th patch.The reason is it coudlnt find the  file JSPM02P-2-20002796.SCA. I couldnt find this file .   i couldnt find only this file   JSPM02P_4-20002796.SCA . I tried to put this file in inbox and tried to run the jspm but it is not recognizing this as a valid file and its expecting   JSPM02P-2-20002796.SCA. I couldnt find this file can anyone suggest me where i could find this file.
    Thanks and Regards
    MA.Sreenivasan

    When you download the files, be sure to select "Save As File", which next to the "Add to Download Basket" button. Copy that SPStab.xml file to your EPS/in directory. Without that, it won't recognize the files even if they are there.

Maybe you are looking for