Error when pressing a navigation button to another form

Hi,
I created a navigation button in a form based on a table by adding the following code in Additional PL/SQL code:
htp.formopen ('PORTAL30.wwa_app_module.new_instance?p_moduleid=1226442050');
htp.formsubmit (null,'Form1');
htp.formclose;
The button is created, but whenever I press that button I get the following error:
An unexpected error occurred: ORA-01403: no data found (WWV-16016)
The Run Link seems to be the problem, however, I don't understand, for I checked it (a couple of times) and it is the correct Run Link.
Any help would be greatly appreciated.
Kees Broess

Hi,
You should put this code in the "after displaying the page" plsql section. If you put it before this section this error
will occur.
Thanks,
Sharmila

Similar Messages

  • In IPhone Apps crash when press back buton . When press back back button Last class is appeared slightly slighly ash, with no error or warning .

    Hi,
    I am developing apps on for 4.1 and on Xcode3.2. My Apps crash when press back buton . When press back back button Last class is appeared slightly than crash, with no error or warning ....Here are the code....crash on Back Funtion
    #import "TransactionSummaryDetailViewController.h"
    #import "TransactionSummaryData.h"
    #import "Constant.h"
    #import "DataBase.h";
    #import "Common.h"
    #import "YPCardHolderServiceService.h"
    #import "SelectionScreenViewController.h"
    @implementation TransactionSummaryDetailViewController
    @synthesize table,cardReference;
    @synthesize waitIndicator,transactionsummary,keyArray,valueArray,isSummaryAvailable;
    @synthesize startDate,endDate;
    // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
        if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
            // Custom initialization
        return self;
    -(void)getrowcount{
        if(transactionsummary.cardholdernmae !=nil){
            [keyArray addObject:@"Card Holder Name: "];
            [valueArray addObject:transactionsummary.cardholdernmae];
        if(transactionsummary.cardnumber!=nil){
            [keyArray addObject:@"Card Number: "];
            [valueArray addObject:transactionsummary.cardnumber];
        if(transactionsummary.debittransactioncount != nil){
            [keyArray addObject:@"Debit Tx. Count: "];
            [valueArray addObject:transactionsummary.debittransactioncount];
        if(transactionsummary.debittransactionvalue!=nil){
            [keyArray addObject:@"Debit Tx. Value"];
            [valueArray addObject:transactionsummary.debittransactionvalue];
        if(transactionsummary.credittransactioncount!=nil){
            [keyArray addObject:@"Credit Tx. Count: "];
            [valueArray addObject:transactionsummary.credittransactioncount];
        if(transactionsummary.credittransactionvalue!=nil){
            [keyArray addObject:@"Credit Tx. Value: "];
            [valueArray addObject:transactionsummary.credittransactionvalue];
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
        appDelegate = [[UIApplication sharedApplication]delegate];
        keyArray = [[NSMutableArray alloc]init];
        valueArray = [[NSMutableArray alloc]init];
        [self getrowcount];
        NSLog(@"Key Array Count is %d",[keyArray count]);
        [table setBackgroundColor:[UIColor clearColor]];
        [table setSeparatorColor:TableViewCellSeperatorColor];
        [waitIndicator setHidden:YES];
        [self setTitle:@"Summary Details"];
        UIButton *button =  [UIButton buttonWithType:UIButtonTypeCustom];
        [button setImage:[UIImage imageNamed:@"list.png"] forState:UIControlStateNormal];
        [button addTarget:self action:@selector(BacktoView) forControlEvents:UIControlEventTouchUpInside];
        [button setFrame:CGRectMake(0, 0, 76, 44)];
        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc] initWithCustomView:button];
        if(!isSummaryAvailable)
            if([Common isNetworkAvailable])
                [waitIndicator startAnimating];
                YPCardHolderServiceService *services = [[YPCardHolderServiceService alloc] init];
                YPTransactionsSummaryRequest *summaryRequest = [[YPTransactionsSummaryRequest alloc] init];
                summaryRequest.SC = appDelegate.SC;
                summaryRequest.userName = appDelegate.userName;
                summaryRequest.valid =TRUE;
                summaryRequest.cardReference =[NSString stringWithFormat:@"%@",cardReference];
                NSLog(@"Start Date Is %@ and End Date is %@",startDate,endDate);
                summaryRequest.startDate = startDate;
                summaryRequest.endDate = endDate;
                summaryRequest.applicationType = @"M";
                [services getTransactionsSummary:self action:@selector(getTransactionsSummaryHandlers:) transactionsSummaryRequest:summaryRequest];
                [summaryRequest release];
                [services release];
        [super viewDidLoad];
    //Handle the Response of getTransactionsSummary
    -(void)getTransactionsSummaryHandlers:(id) value
        [waitIndicator stopAnimating];
        // Handle errors
        if([value isKindOfClass:[NSError class]]) {
            NSLog(@"%@", value);
            return;
        // Handle faults
        if([value isKindOfClass:[SoapFault class]]) {
            NSLog(@"%@", value);
            return;
        // Do something with the YPLoginResponse* result
        YPTransactionsSummaryResponse* result = (YPTransactionsSummaryResponse*)value;
        if(result.statusCode == 0)
            NSLog(@"Number of Transaction is =%d",[result.transactionSummaryList count]);
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            NSString *deleteQuery = @"delete from TransactionSummary where userid = ";
            NSLog(@"Step 1 ='%@'",appDelegate.userID);
            deleteQuery = [deleteQuery stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"delete query= '%@'",deleteQuery);
            [DataBase deleteDataFromTable:deleteQuery];
            NSLog(@"delete query= '%@'",deleteQuery);
            //for (int i =0; i< [result.transactionSummaryList count]; i++)
            for (int i =0; i< [result.transactionSummaryList count] -2; i++)
                NSLog(@"for loop= %d",i);
                YPTransactionSummaryDetails *transactionSummary = (YPTransactionSummaryDetails*)[result.transactionSummaryList objectAtIndex:i];
                NSLog(@"cardholdername= '%@'",transactionSummary.cardholderName);
                /*NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','xxxx xxxx xxxx %@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,
                                                                   appDelegate.userID]];*/
                //Add by sarvesh
                NSString *insertQuery = @"Insert into TransactionSummary(cardholdername,cardnumber,debittransactioncount,debittransac tionvalue,credittransactioncount,credittransactionvalue,cardreference,userid) values(";
                insertQuery =[insertQuery stringByAppendingString:[NSString stringWithFormat:@"'%@','%@',%d,%d,%d,%d,'%@',%@)",
                                                                   transactionSummary.cardholderName,transactionSummary.cardNumber,transactionSumm ary.debitTransactionCount,
                                                                   transactionSummary.debitTransactionValue,transactionSummary.creditTransactionCo unt,transactionSummary.creditTransactionValue,cardReference,
                                                                   appDelegate.userID]];
                NSLog(@"Insert Query for Transaction Summary is %@",insertQuery);
                [DataBase InsertIntoTable:insertQuery];
            //Read Update Data From DataBase and Refresh Table
                NSString *query = @"Select * from TransactionSummary where userid = ";
                query = [query stringByAppendingString:[NSString stringWithFormat:@"%@ and cardreference = '%@'",appDelegate.userID,cardReference]];
            NSLog(@"select query= %@",query);
                NSMutableArray *temp=[DataBase getTransactionSummaryTableData:query];
                if([temp count] > 0)
                    transactionsummary = (TransactionSummaryData*)[temp objectAtIndex:0];
                    [keyArray removeAllObjects];
                    [valueArray removeAllObjects];
                [self getrowcount];
                [table reloadData];
    -(void)viewDidAppear:(BOOL)animated
        CGFloat navBarHeight = 50.0f;   
        CGRect frame = CGRectMake(0.0f, 20.0f, 320.0f, navBarHeight);
        [self.navigationController.navigationBar setFrame:frame];
        [super viewDidAppear:animated];
    -(IBAction)BacktoView
        NSLog(@"in back function..TrasactionSummaryDetail");
        SelectionScreenViewController *screenView=[[SelectionScreenViewController alloc] initWithNibName:@"SelectionScreenViewController" bundle:nil];
        [self.navigationController popViewControllerAnimated:YES];
        [screenView release];
    - (UITableViewCellEditingStyle)tableView:(UITableView *)tableView editingStyleForRowAtIndexPath:(NSIndexPath *)indexPath{
        return UITableViewCellEditingStyleNone;
    - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
        return 1;
    - (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
        return cellHeightForGroupedTable;
    - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
        if(section == 0)
            return [keyArray count];
        else       
            return 0;
    - (NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section{
        NSString *title = nil;
        switch (section){
            case 0:{
                //title = @"Summary Details";
                break;
        return title;
    - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
        if ([self tableView:tableView titleForHeaderInSection:section] != nil) {
            return tableHeaderHeight;
        else {
            // If no section header title, no section header needed
            return 0;
    - (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
        NSString *sectionTitle = [self tableView:tableView titleForHeaderInSection:section];
        if (sectionTitle == nil) {
            return nil;
        // Create label with section title
        UILabel *label = [[[UILabel alloc] init] autorelease];
        label.frame = CGRectMake(20, 6, 300, 30);
        label.backgroundColor = [UIColor clearColor];
        label.textColor = HeaderTextColor;
        label.shadowColor = HeaderTextShadowColor;
        label.shadowOffset = CGSizeMake(0.0, 1.0);
        label.font = HeaderTextFontSize;
        label.text = sectionTitle;
        // Create header view and add label as a subview
        UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320,60)];
        [view autorelease];
        [view addSubview:label];
        return view;
    - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
        UITableViewCell *cell = nil;
        NSString *cellIdentifier;
        cellIdentifier = @"SectionsTableIdentifier";
        int row = [indexPath row];
        CGRect nameLabelRect = CGRectMake(19 , 8, 240, 29);
        CGRect cardlabelRect = CGRectMake(19,31,240,15);
        UILabel *nameLabel = [[UILabel alloc] initWithFrame:nameLabelRect];
        UILabel *cardnumber = [[UILabel alloc] initWithFrame:cardlabelRect];
        cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
        if(cell == nil){
            cell = [[[UITableViewCell alloc] initWithFrame:CGRectZero reuseIdentifier:cellIdentifier] autorelease];
        // Remove all subview from cell content view
        for (UIView *view in cell.contentView.subviews){
            [view removeFromSuperview];
         [cell setAccessoryType:UITableViewCellAccessoryNone];
        [nameLabel setTextColor:firstLabelFontColor];
        [nameLabel setFont:firstLabelFont];
        [nameLabel setFont:firstLabelFontSize];
         nameLabel.textAlignment = UITextAlignmentLeft;
         nameLabel.text = [NSString stringWithFormat:@"%@ : %@",[keyArray objectAtIndex:row],[valueArray objectAtIndex:row]];
         [cell.contentView addSubview: nameLabel];
         cell.selectionStyle = UITableViewCellSelectionStyleNone;
        [cell setBackgroundColor:[UIColor clearColor]];
        [cell setBackgroundColor:TableViewCellColor];
        [nameLabel setBackgroundColor:[UIColor clearColor]];
        [cardnumber setBackgroundColor:[UIColor clearColor]];
        [cardnumber release];
        [nameLabel release];
        return cell;
    // Override to allow orientations other than the default portrait orientation.
    - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation {
        // Return YES for supported orientations
        return (interfaceOrientation == UIInterfaceOrientationPortrait);
    - (void)didReceiveMemoryWarning {
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
        // Release any cached data, images, etc that aren't in use.
    - (void)viewDidUnload {
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    - (void)dealloc {
        [table release];
        [waitIndicator release];
        [keyArray release];
        [valueArray release];
        [transactionsummary release];
        [super dealloc];
    @end

    This is the user-to-user tech support site.  For carrier issues go to the Dev forums.
    You might want to note that the current iOS is 4.3.3, and the current SDK is 4.3 and XCode 4.0.2

  • How to Commit before Insert Row when Press Create Insert Button ?

    Hi all;
    I'm Using JDev 11.1.1.2.0
    How to Commit before Insert Row when Press Create Insert Button in ADF11g?
    <af:commandButton actionListener="#{bindings.CreateInsert.execute}"
    text="CreateInsert"
    disabled="#{!bindings.CreateInsert.enabled}"
    id="cb8" />
    best regards;

    You need to do a custom method eather in managed bean or in Application module to do that.
    in managed bean it would be something like:
    public void CommitAndInsert(ActionEvent actionEvent) {
    OperationBinding opCommit = ADFUtils.findOperation("Commit");
    opCommit.execute();
    OperationBinding opCreateInsert = ADFUtils.findOperation("CreateInsert");
    opCreateInsert.execute();
    In page bindings Commit and CreateInsert must exist
    then the button actionListener will be
    <af:commandButton actionListener="#{backing.CommitAndInsert}"

  • Hear sound when press the home button, as if there is a gap underneath !!

    Hear sound when press the home button, as if there is a gap underneath !!

    Take it back to Apple if you think there's a problem with it.

  • My iPhone 5 C doesn't respond when pressing the Home Button, do I need to go to a Apple store or is there another way to fix this problem?

    I bought my iPhone 5 C last week and is still all brand new. My phone was alright thses days but suddendly when i pressed the Home button to get out of an app, it didn't respond and also when i want to see the time I press the Home button but it doesn't show the lock screen. Do I need to go to an Apple Store or is there another way to fix this problem? I have read the Helping Center in the Apple Web but still it didn't help to solve my problem. Can someone please help me?

        Getting your notifications is definitely important and we understand not wanting to miss anything katieb373. You have reached the right place for assistance in getting this working for you again. Has your phone completed any recent software updates right before this happened? You can reset the network settings to see if that will resolve the issue by following the steps http://vz.to/1uO6qTU in the link. Please try this and let us know the results.
    CandiceH_VZW
    Follow us on Twitter at @VZWSupport

  • Error when selecting detailed navigation menu item

    Hi,
    Usually on selection of a menu item from detailed navigation an iview appears which contains values from an R/3 system, but now when i select any item for the detailed navigation i get a download pop up window
    which  ask me to save the page. When i press the save button the download stops.
    Is this a problem with the SAP GUI ? please give me a solution ?
    Regards
    Christina Dove

    hi
    GUI Properties
    Description -
    > New ECC 6.0
    AppServer -
    > here application Server
    SysID       -
    > here System ID
    System Number -
    >
    SAP System  ---> R/3

  • Error when clicking on open button of UI element Network (JNet API)

    Hi,
    I use the UI element Network (JNet API). It allows you to define a user interface. I use the predefined command "OPEN" in my user interface. But when running the application and pressing the open button in the user interface of the Network UI Element no file chooser appears. Instead there is this error message:
    Resource '<native>' not found.
    And this message is in the Java console:
    network: Cache entry not found [url: http://w2kidm:50000/webdynpro/dispatcher/local/WelcomeApp/%3Cnative%3E, Version: null]
    network: establishing connection of http://w2kidm:50000/webdynpro/dispatcher/local/WelcomeApp/%3Cnative%3E with Proxy=DIRECT
    network: establishing connection of socket://w2kidm:50000 with Proxy=DIRECT
    network: connection http://w2kidm:50000/webdynpro/dispatcher/local/WelcomeApp/%3Cnative%3E with Cookie "saplb_*=(J2EE6997820)6997850; JSESSIONID=JLcM5rS0r0APPJbt1zZHQAqhHywzcdivHgFax2oA_SAP"
    Remark: The original error message is in German, I translated it to English.
    Can anyone help me?
    Thanks and best regards,
    Albert

    Hi,
    does other predefined commands work, such as SAVE?
    Which java version do you have?
    Regards,
    Ladislav

  • Report is not starting an adobe window when pressing the print button

    When ever I press the print button on my report and I get the box that asks you which page to print.  I choose all and then press the ok button.  Nothing happens when I press the ok button.  I'm I missing something on the server that is running the application.  It works locally but not on my test server.
    Thank you

    Well, in order to print using PDF, you must have adobe installed...
    I understand that you have some CR Service Pack installed, but I am not sure which one. I'd recommend you download SP 5 from here;
    https://smpdl.sap-ag.de/~sapidp/012002523100013876392008E/crxir2win_sp5.exe
    And use the msm to install the runtime. The SP 5 msm is here;
    https://smpdl.sap-ag.de/~sapidp/012002523100001088442009E/crxir2sp5_net_mm.zip
    Re.; I was wondering I am missing something from the server that converts the report to pdf and shows it in the adobe viewer.
    Not  that I am aware of.
    If SP 5 does not help, a question for you; can you print any pdf document (non CR) from adobe on that server?
    Ludek

  • Error when clicking on EDIT button on CCM 2.0

    Hi Experts,
    we are experiencing lot of errors when we click on the "EDIT" or any other button on CCM of a CATALOG.
    The Error message we are getting is "Errors while reading catalogs,errors while reading master catalog".
    When we check the Display logs for the catalog, we are having these two error messages
    "Error when generating catalog SRM 200"
    "Error when creating the catalog. "
    Can anyone provide us with a solution on this and pls tell us which SAP program runs for the catalog.
    Thanks in advance
    Dharma

    Hi Dharma,
    You can download the complete guide in SMP.
    https://websmp103.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_OBJECT=011000358700000567072006E
    Hope this solves your problem.
    Regards
    Kathirvel

  • When receiving a purchase order in Northwind, receiving all records when press on a button

    Good morning,
    This is a challenging request, I did not figure out how to receive all items at once in the receiving tab. I have created a button named "Post test" on which I have a test code that doesn't do exactly the right thing. I am posting the code from
    the original database that works, but we have to do the receiving one row at a time, it is ok when we have few products on a purchase order, but when a user has 150 items, this is becoming time consuming.
    So here is an image follow by the original the codes. (The code on the button is at the end of that document, you might want to begin there) is you understand my error faster.
    Here is the link for accessing the Northwind database and a document on OneDrive
    https://onedrive.live.com/redir?resid=F7190044A52FAE85%21663
    My code on the button "Post test":
    Private Sub Post_test_Click()
    Dim InventoryID As Long
    Dim ProductID As Long
    Dim Quantity As Long
    Dim PurchaseOrderID As Long
    Dim InvoiceID As Long
    PurchaseOrderID = Nz(Forms![Détails bon de commande].[Réf bon de commande], 0)
    Dim rsw As New WrapperJeuEnregistrements
    With rsw.GetRecordsetClone(Forms![Détails bon de commande].sbfPurchaseReceiving.Form.Recordset)
    While Not .EOF
    .Edit
    ![Date de réception] = Date
    ![Entré en inventaire] = True
    ProductID = Nz(Me![Réf produit], 0)
    Quantity = Nz(Me![Quantité], 0)
    InventoryID = Nz(Me![Réf inventaire], 0)
    If Inventaire.AddPurchase(Me![Réf bon de commande], ProductID, Quantity, InventoryID) Then
    If InventoryID > 0 Then
    Me![Réf inventaire] = InventoryID
    Me![Entré en inventaire] = True
    End If
    End If
    If InventoryID > 0 Then
    Me![Entré en inventaire] = True
    End If
    rsw.Update
    rsw.MoveNext
    Wend
    End With
    Forms![Détails bon de commande].Requery
    End Sub
    I did have a post last week, but I have received 1 answer that specified that the original code was missing...
    Thank you for your time...
    Claude from Québec, Canada
    Claude Larocque

    Hi Claude,
    I have downloaded the files and I tried to do as the steps in the document, but failed. When I tried to open the forms I got the error message "Item not found in this collection".
    >>I did not figure out how to receive all items at once in the receiving tab
    In my option, if you want to get all the items, yo​u could add a new query. You could query all the items you want and add a button to the form, when you want to show the all items, you could click the button to run the query. I have viewed the code you
    provided, you requery the "Détails bon de commande" form which did not change the query statement, I think you could add a new form and bind a new query to it.
    >>however, this is the model created by Microsoft that we can use in Access 2010 and 2013
    This model is much complex and the logic of the model is complex too, as your description, some parets of the code is useless, I think we could recreate a new empty database and create the forms which are needed instead of modifying it in the original version.
    Best Regards,
    Edward
    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.

  • 500 internal server error,when clicking review /save button.

    Hi
    Iam facing the problem with pcr  forms in portal .Forms are displaying in portal. when i click the button Review and save button .It is showing 500 internal server error.But sometimes it is working fine upto completed step.There is irregularity in display.
    Iam not understanding why this is  happening like this.So let me know the solution for it.To display properly.
    Here iam sending tracefile to.
    Webresource could not be exchanged!
    [EXCEPTION]
    com.sap.tc.webdynpro.services.sal.util.cache.ResourceNotFoundException: Stream is not valid
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.setInputStream(ResourcePool.java:475)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.datatransport.MassDataSource.setInputStream(MassDataSource.java:106)
         at com.sap.tc.webdynpro.services.sal.datatransport.core.InternalMassDataTransport.replaceInputMassDatasourceByKey(InternalMassDataTransport.java:96)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.replaceCachedResource(WebDynproExchangeHandler.java:217)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.doExchange(WebDynproExchangeHandler.java:181)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doExchangeProcessing(ClientSession.java:1166)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:763)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:174)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:207)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.sap.engine.services.httpserver.exceptions.HttpIOException: Read timeout. The client has disconnected or a synchronization error has occurred. Read [4380] bytes. Expected [14205].
         at com.sap.engine.services.httpserver.server.io.HttpInputStream.read(HttpInputStream.java:186)
         at java.io.InputStream.read(InputStream.java:109)
         at com.sap.tc.webdynpro.basesrvc.util.IOUtil.writeEncrypted(IOUtil.java:154)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$AbstractResourceElement.copyUnique(ResourcePool.java:245)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.save(ResourcePool.java:537)
         at com.sap.tc.webdynpro.services.sal.util.cache.ResourcePool$CopyByFirstReadResourcePoolElement.setInputStream(ResourcePool.java:471)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.datatransport.MassDataSource.setInputStream(MassDataSource.java:106)
         at com.sap.tc.webdynpro.services.sal.datatransport.core.InternalMassDataTransport.replaceInputMassDatasourceByKey(InternalMassDataTransport.java:96)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.replaceCachedResource(WebDynproExchangeHandler.java:217)
         at com.sap.tc.webdynpro.clientserver.cal.WebDynproExchangeHandler.doExchange(WebDynproExchangeHandler.java:181)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doExchangeProcessing(ClientSession.java:1166)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:763)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:712)
         at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:261)
         at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:174)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(AccessController.java:207)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    with regards,
    Eswar.

    Hi
    Any update information for this issue.
    with rgds,
    Eswar.

  • Loop stop when pressing the minimize button??

    Hi,
    I've made data-acquisition VI, when i run it and press "for example" the
    minimize button of my VI it stops untill i release the minimize button, is
    there anything to avoid this?? So that when i press the minimize button that
    my vi just go's on with it's loops?
    Best Regards,
    Thijs

    > I've made data-acquisition VI, when i run it and press "for example" the
    > minimize button of my VI it stops untill i release the minimize button, is
    > there anything to avoid this?? So that when i press the minimize button that
    > my vi just go's on with it's loops?
    >
    As the other response indicated, we try to keep the loops running, but
    certain things in windows consume the UI thread, meaning that LV can't
    update the UI. You can make a simple VI that charts ten points per
    second and see if when you release the mouse the chart catches up. The
    standard way LV does execution tries to decouple the UI from the
    execution, so that the diagram can continue even while the UI is stopped.
    If this example works and your application doesn't, it is likely that
    y
    our I/O loop is interleaving UI and I/O. If the UI gets blocked for a
    period of time, such as you describe, this is when the UI blocks the
    rest of the loop. If this is the case, and this is important to you,
    you can try to separate the UI from the I/O by moving then to two
    independent loops that communicate via locals, etc.
    Greg McKaskle

  • Run time error when pressing F4

    When pressing F4 on field VERNR i am getting the following error. What could be the reason. How to solve this?
    Runtime Errors         DYNPRO_MSG_IN_HELP
    Short text
         Screen: Illegal message
    What happened?
         The current screen processing action was terminated since a situation occurred where the application could not continue.
         This is probably due to an error in the ABAP program or in the current screen.
    Error analysis
         The program attempted to issue a " " message during "F4" processing.
         This is an illegal operation.
         The program was terminated.
         Screen name.............. "ZPSRA_COST_ESTI_APPR_REP"
         Screen number............ 1000
    Trigger Location of Runtime Error
         Program                                 ZPSRA_COST_ESTI_APPR_REP
         Include                                 ZPSRA_COST_ESTI_APPR_F02
         Row                                     49
         Module type                             (FORM)
         Module Name                             VALIDATE_P_PSPID
    Line  SourceCde
         22 ----
       23 *                   S U B R O U T I N E S                                         *
       24 ----
       25 &----
       26 *& Form  VALIDATE_so_PSPID                                              *
       27 &----
       28 *  This subroutine is used to validate Project Definition entered on   *
       29 *  Selection Screen                                                                *
       30 ----
       31 *  --> PF_PSPID --- Project Definition                                      *
       32 ----
       33 FORM validate_p_pspid USING pv_pspid TYPE proj-pspid.
       34   CLEAR wa_proj.
       35 * Get the Project Definition if exist
       36   SELECT pspnr                         " Project Definition
       37          pspid                         " Project Definition
       38          post1                         " Short Description
       39 *         vernr
       40   FROM proj
       41   INTO wa_proj
       42   UP TO 1 ROWS
       43   WHERE pspid EQ pv_pspid.
       44   ENDSELECT.                           " SELECT pspid
       45   IF sy-subrc NE 0.
       46     CLEAR sscrfields.
       47     MESSAGE e011(cj) WITH p_pspid.
       48   ENDIF.                             " IF sy-subrc NE 0
    >>>>> ENDFORM.                             " VALIDATE_P_PSPID
    Thanks in advance

    Hi,
    Check this link:
    [DYNPRO_MSG_IN_HELP  dump in user exit;
    The problem is: MESSAGE e011(cj) WITH p_pspid.
    try: MESSAGE I011(cj) WITH p_pspid display like 'E'. EXIT.
    regards,
    Andrei

  • PC does not start when pressing the power button, After that starts automatically like a ghost!

    I have HP Pavilion a6030in, My pc does not start when i press ther power button, but it starts after sometime automatically after that it works fine.
    Again when i shutdown and leave it for sometime, and still the problem is unsolved.
    Please Help
    This question was solved.
    View Solution.

    he figured out you dont just shut the lid and walk away, you use Windows shutdown
    click Kudos to say thanks if I helped

  • Z30 when press lcok/unlock button it goes straight to standby mode....

    Hello all Senior Members, I just purchased Brand new Z30 unlock 16 Gig black phone from BlackBerry shop (two weeks ago)....so far I loved the phone very much.  Last couple of days when i press lock/unlock button on top of the phone it automatically shows count down 3, 2 and 1 and goes to standby mode.  It is so frustrating because previously I was using lock/unlock button to shut off the screen for unnecessarily call or press wrong button while putting phone in the pocket. When phone is in standby mode I have to restart the whole phone holding lock/unlock for 10 seconds because when phone is in standby mode I am not getting any messages, calls, etc...(Tried couple of times when phone is in standby mode when I call my number it says “customer is not reachable" Could anyone help me out how to rid of this standby mode please?  Your help will be greatly appreciated.  P.S. - i am a first time BlackBerry users... Regards   

    It has downloaded into your download folder. Find it in your downloads and click on it to install itunes.

Maybe you are looking for