Sql help - URGENT update info

I ran a query to find 1)the current distribution group and corresponding account id number and 2) the historical distribution group and corresponding account id number from checks written in contract year 2008.
Here is the sql statement from my query:
SELECT EMPLOYEE_MASTER.EMPLOYEE_NO, EMPLOYEE_DISTRIBUTIONS.DISTRIBUTION_GROUP, EMPLOYEE_DISTRIBUTIONS.ACCOUNT_ID, PAYS_HISTORY.DISTRIBUTION_GROUP, ACCOUNT_HISTORY.ACCOUNT_ID, ACCOUNT_HISTORY.CHECK_KEY
FROM HRS.ACCOUNT_HISTORY ACCOUNT_HISTORY, HRS.EMPLOYEE_DISTRIBUTIONS EMPLOYEE_DISTRIBUTIONS, HRS.EMPLOYEE_MASTER EMPLOYEE_MASTER, HRS.PAYS_HISTORY PAYS_HISTORY
WHERE EMPLOYEE_DISTRIBUTIONS.EMPLOYEE_NO = EMPLOYEE_MASTER.EMPLOYEE_NO AND PAYS_HISTORY.EMPLOYEE_NO = EMPLOYEE_MASTER.EMPLOYEE_NO AND ACCOUNT_HISTORY.CHECK_KEY = PAYS_HISTORY.CHECK_KEY AND ((PAYS_HISTORY.CONTRACT_YEAR=2008) AND (ACCOUNT_HISTORY.TRANSACTION_TYPE='GRS'))
What I need to do now is update the distribution_group from the pays_history to match the distribution_group from the employee_distribution where the account_id is the same as the account_history.account_id.
Any ideas?
Thanks!

Are you asking me to create an update statement? Isn't it you want to achieve ?
If I could I wouldn't have posted here! (smiling)Yes, learning is made by tries and errors.
Your statement not so bad ;-)
So what about (with forum tags usage for post readability) :
[pre]Update hrs.pays_history ph
set    distribution_group = (select ed.distribution_group
                             from   hrs.employee_distributions ed
                             where  ph.employee_no   = ed.employee_no
                             and    ph.account_id    = ed.account_id
                             and    ph.contract_year = 2008)
where exists (select  null
               from   hrs.employee_distributions ed
               where  ph.employee_no   = ed.employee_no
               and    ph.account_id    = ed.account_id
               and    ph.contract_year = 2008)[/pre]
Not sure about the requirements, but at least that should run.
Nicolas.

Similar Messages

  • SQL help - urgent

    Hello all,
    I have to write an SQL and do not know how to formulate it. I would appreciate if anyone can give me the SQL for the below question:
    I have 2 tables(Transaction and Programs)
    Transaction data:
    Trans_ID| Trans_Pgm| Trans_Short_Desc| Trans_Desc
    1234|     prog1|     Transaction 1| Transaction 1
    5678|     prog2|     Transaction 2| Transaction 2
    Programs data:
    Pgm_Name| Called_Pgm| Type
    prog1|     prog3|     X|
    prog2|     prog4|     X|
    prog3|     prog5|     L|
    prog5|     sprog1|     C|
    sprog1| bprog2| L|
    Need to get the data in below format:
    Trans_ID| Trans_Pgm| Level1| Level2| Level3| Level4|
    Trans_ID & Trans_Pgm need to come from Transaction table.
    Level1, Level2, Level3 & Level4 will come from Programs table and are explained below:
    Lets take for eg. prog1 from Transaction table. prog1 is called by prog3, prog3 is called by prog5, prog5 is called by sprog1 and sprog1 is called by bprog2. Hence the result of query needs to look like below:
    Trans_ID| Trans_Pgm| Level1| Level2| Level3| Level4
    1234|     prog1| prog3| prog5| sprog1| bprog2
    5678|     prog2| prog4|
    Please help. I do not know how to write this kind of SQL. Simple SQL's are fine for me but this would be difficult.
    Since this is very urgent, pls let me know asap.
    Thanking you all in advance,
    -Jos

    You can get the hierarchy using the SYS_CONNECT_BY_PATH function (requires 9i) within a CONNECT BY query:
    SELECT level
         , SYS_CONNECT_BY_PATH(p.pgm_name, '|') AS path
    FROM   programs p
    CONNECT BY PRIOR p.called_pgm = p.pgm_name
    START WITH p.pgm_name IN
          ( SELECT trans_pgm FROM trans );
         LEVEL PATH
             1 |prog1
             2 |prog1|prog3
             3 |prog1|prog3|prog5
             4 |prog1|prog3|prog5|sprog1
             1 |prog2
    5 rows selected.If you need the elements in separate columns it'll take a bit more work.
    Also notice that prog2 has no path because its caller 'prog4' is not defined as a PGM_NAME in the PROGRAMS table. If we add that row so that PROGRAMS looks like this:SQL> INSERT INTO programs (pgm_name)
      2  SELECT called_pgm FROM programs
      3  MINUS
      4  SELECT pgm_name FROM programs;
    2 rows created.
    SQL> commit;
    Commit complete.
    SQL> SELECT * FROM programs;
    PGM_NAME   CALLED_PGM T
    prog1      prog3      X
    prog2      prog4      X
    prog3      prog5      L
    prog5      sprog1     C
    sprog1     bprog2     L
    bprog2
    prog4
    7 rows selected.We get slightly better results:SELECT level
         , SYS_CONNECT_BY_PATH(p.pgm_name, '|') AS path
    FROM   programs p
    CONNECT BY PRIOR p.called_pgm = p.pgm_name
    START WITH p.pgm_name IN
          ( SELECT trans_pgm FROM trans );
         LEVEL PATH
             1 |prog1
             2 |prog1|prog3
             3 |prog1|prog3|prog5
             4 |prog1|prog3|prog5|sprog1
             5 |prog1|prog3|prog5|sprog1|bprog2
             1 |prog2
             2 |prog2|prog4
    7 rows selected.Now it just needs some filtering (we want the deepest level for each hierarchy) and joining up to TRANSACTIONS:SELECT t.trans_id
         , pgm_path.path
    FROM   ( SELECT SUBSTR(pgm.path,1, INSTR(pgm.path,'|',2) -1) AS program
                  , MAX(pgm.path) KEEP (DENSE_RANK LAST ORDER BY pgm.lvl) AS path
             FROM   ( SELECT level AS lvl
                           , LTRIM(SYS_CONNECT_BY_PATH(p.pgm_name, '|'),'|') AS path
                      FROM   programs p
                      CONNECT BY PRIOR p.called_pgm = p.pgm_name
                      START WITH p.pgm_name IN
                            ( SELECT trans_pgm FROM trans ) ) pgm
             WHERE pgm.lvl > 1
             GROUP BY SUBSTR(pgm.path,1, INSTR(pgm.path,'|',2) -1) ) pgm_path
         , trans t
    WHERE  t.trans_pgm = pgm_path.program
      TRANS_ID PATH
          1234 prog1|prog3|prog5|sprog1|bprog2
          5678 prog2|prog4
    2 rows selected.

  • SQL HELP , URGENT PLEASE

    Hi,
    I want some help in writing a SQL Query .Its besically a hierarchical query. Let me lay down the table structure first to explain my requirements better.
    PORP_TABLE(NODE_LEVEL int, WBS_ID int, WBS_NUMBER varchar(60), LFT int,RGT int)
    SELECT NODE_LEVEL, WBS_ID, LFT,RGT FROM PROPOSAL_WBS PW WHERE PROPOSAL_REV_ID = 7000
    (SAMPLE DATA)
    NODE WBS
    LEVEL WBS_ID NUMBER LFT RGT
    0 7055 ROOT 1 24
    1 7056 1 2 5
    1 7088 2 6 9
    2 7057 1.1 3 4
    2 7089 2.1 7 8
    2 7091 3.1 11 14
    2 7103 3.2 15 16
    2 7105 4.1 19 20
    1 7090 3 10 17
    3 7092 3.1.1 12 13
    1 7104 4 18 23
    2 7106 4.2 21 22
    ALLOCATION_DETAIL( WBS_ID int, COST_ID int, PERIOD Date, AMOUNT Float)
    sample data
    WBS_ID , COST_ID , PERIOD , AMOUNT
    7057 100 01-jan-2005 5000
    7057 100 01-feb-2005 2000
    7057 100 01-mar-2005 1000
    7057 100 01-apr-2005 6000
    7057 100 01-may-2005 3000
    7057 100 01-jun-2005 45000
    7106 100 01-mar-2005 8000
    7106 100 01-apr-2005 7000
    7106 100 01-may-2005 9000
    Now the PORP_TABLE has got the parents and childs. Only the leaf nodes in the hierarchy has the values stored in the ALLOCATION_DETAIL table. Now here is the scenario
    In the example 7055 is the root WBS . The Leaf WBS are the one with max extension in the wbs number ( in this case it is 1.1, 2.1, 3.1.1, 3.2, 4.1 and 4.2)
    Now the Starting period for each leaf node in the ALLOCATION_TABLE could be differrent . What that means is WBS 1.1 could start in Jan -2003 and WBS 3.1 Could be Jul-2005 . So the ending perios are also differrent for differrent WBS . Some can span 2 years some can 5 years.
    So how to write a query so it retrieves the value for all the Wbs starting from the MIN ( PERIOD ) upto the MAX(PERIOD), and it should roll up also. Now there is No connect by Prior or any analytic functions available for this . THIS NEEDS TO BE DONE ONLY THROUGH TRADITIONAL SQL STATEMENT . And NO DB FUNCTIONS CAN BE USED .
    Now if the WBS is a parent node then it should have the sum of all its child nodes for the COST category.
    SO THE RESULT SET SHOULD BRING LIKE THIS
    WBS_NUMBER, PERIOD_NUMER, COST_CATEGORY , AMOUNT
    ROOT
    1
    1.1
    2
    2.1
    3
    3.1
    3.1.1
    3.2
    4
    4.1
    4.2
    ......

    Hi,
    <br>Read String Aggregation Techniques</br>
    <br>HTH,</br>
    <br>Nicolas.</br>

  • Please help with updated info how to Move iTunes 10.5.2 to a new MacBook Pro

    With Christmas fast approaching, and new MAC computers being left under the tree, I would find it helpful for an update as to how best to move my son's iTunes library from my iMac (late 2011 version with Lion) which he is sharing to his new MacBook Pro (Early 2011 with Lion upgrade) . There is a lot of old information floating around on how to do this with prior versions of iTunes, but with iCloud and Apps now in the cloud I would like someone knowledgeable to update me and the community with the best way to do this for the latest versions of iTunes running on Lion. He also has his iPhone 4 synched with his account on my iMac and would like to deauthorize his iTunes on my iMac and have him sync on his new computer as well.   I know it is probably hidden among the forums somewhere, but with a lot of people upgrading to new computers, it would be helpful for a refresher on this thread. Thanks!

    Hi,
    See Here for...
    iTunes: How to move your music to a new computer
    See here for Authorise...
    Open iTunes
    From the Store menu, choose Authorize This Computer. (In earlier versions of iTunes, access this option from the Advanced menu).
    When prompted, enter your Apple ID and password, then click Authorize.
    From Here
    About authorization and deauthorization
    Deauthorise...
    Open itunes on the computer you want to deactivate. Make sure you are logged in.  Under the "Store" menu, pull down top "deathorize this computer"

  • Need help in UPDATE data in SQL Query

    Hi all,
    I am trying to update data in the sql table as per below screenshot but couldn't able to do it. Can anyone help to update the data as I mention in screenshot.Appreciate you help.Thanks.
    Yellow highlighted columns are source
    Green highlighted columns are target
    Colored data should be update as per source data in sql table.Data is not static as it might have more rows to update and query should be bit dynamic.
    Maruthi...

    You have already asked this question once. You did not get any good answers, because you the information you gave was insufficient. And I'm afraid that the information is still in sufficient.
    Or more exactly, from the example you have given, the answer is: can't be done. And the reason it can't be done, is as I explained in response to you first thread: there is no information in the data to from which we can deduce that Clorox Company
    should be under "Week 1-1,K.B,F". The fact that rows are listed in a certain order in the screenshoot is of no importance, because a table is an unordered object.
    But you said in another post that you have a timestamp column. Maybe that column is usable - maybe it is not. But at least it is a key that you have more columns that the ones you show.
    The best way to get help with this type of problems is to post:
    1) CREATE TABLE statement for your table(s).
    2) INSERT statements with sample data.
    3) The desired result given the sample.
    4) A short description of the actual buisness problem you are trying to solve.
    5) Which version of SQL Server you are using.
    This makes it easy to copy and paste into a query window to develop a tested solution. Screenshots with an insufficient amount of data is not going to help you very much.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • I've added a pdf to itunes and i want to change it so its visible with an album (digital booklet). But for some reason, when i click get info, its all greyed out and the little box for read only is unticked. please help - urgent! thanks

    I've added a pdf to itunes and i want to change it so its visible with an album (digital booklet). But for some reason, when i click get info, its all greyed out and the little box for read only is unticked. please help - urgent! thanks

    Hi
    My first thoughts are
    • iMovie ill behaving - Trash the iMovie pref file - use to set things right
    • in reg. to Photos - Did You change iPhoto Photo Library - Then iMovie get's lost as it peeks into iPhoto on start up to see where photos are stored. Set iPhoto back to first Photo Library (when iMovie is not running) then start iMovie.
    Yours Bengt W

  • How to update info cube from PSA

    Hi,
    how to update Info cube from PSA.
    Coz we have changed the update rule for one characteristic.What is the implication of updating it from the PSA.
    Regards,
    Viren.

    Hi,
    Now there is one more problem in update rule.
    We are using " 2LIS_03_BF " as datasource.which doesn't contain Sales organization,Division or Distribution channel.
    So in transfer rule for the infosource "2AF_MM_INV_1" we can not update the salesorg,division and Distribution channel.In communication structure all these objects are assigned to respective info objects.
    Now in Update rule we have kept Division and Sales organization as initial.Still we are getting correct data for the Division and not a single record contains Sales organisation and for distribution channel we are using update routine..
    SELECT SINGLE DISTR_CHAN INTO DISTR_CHAN
    FROM /BI0/MCUST_SALES WHERE DIVISION = COMM_STRUCTURE-DIVISION
    AND SALESORG = COMM_STRUCTURE-SALESORG
    AND CUST_SALES = COMM_STRUCTURE-CUST_SALES.
    Now my problem is this update rule fatches record on the basis of cust_sales only as comm_structure doesn't contain any thing for division and sales org.So how to get value for sales org and Division in Communication structure.
    Summary, I want to get data for Distribution channel and sales org in my cube.
    Pls help me out...
    This is very urgent..
    Regards,
    Viren.

  • SCOM 2007 R2 CU 7 SQL Database script update

    Hi..I'm in the process of installing CU 7 for SCOM 2007 R2 (SQL 2008 R2). I completed the Server update successfully. While running the SQL operations manager DB upgrade I get the message '(0 row(s) affected'
    Auto-attach to process '[144] [SQL] Server' on machine 'Server' succeeded.
    The thread 'Server\Instance [87]' (0x8fc) has exited with code 0 (0x0).
    The program '[144] [SQL] Server: Server\Instance' has exited with code 0 (0x0).
    Also, there are no alerts being generated since yesterday which I assume are due to the database not being updated.
    Am I missing something here?
    Thanks
    blogs.technet.com/b/kevinholman/archive/2012/05/18/opsmgr-2007-r2-cu6-rollup-hotfix-ships-and-my-experience-installing-it.aspx

    Hi,
    I suggest you follow the official KB methods here.
    1. Log on to the computer that hosts the Operations Manager 2007 database by using a user account that has database system administrator (SA) rights to the instance of the Operations Manager 2007 database. To perform the database update remotely, log on
    to a computer that hosts SQL Server Management Studio by using a user account that has the appropriate SA rights to the Operations Manager 2007 database.
    2. Run SQL Server Management Studio.
    3. In the Connect to Server dialog box, connect to the instance of SQL Server that hosts the Operations Manager database. The default database name is OperationsManager.
    4. On the toolbar, click New Query.
    5. From the SQL Editor toolbar, use the Available databases option to select the Operations Manager database.
    6. On the File menu, click Open, browse to C:\program files (x86)\System Center 2007 R2 hotfix utility\KB2783850\SQLUpdate, select the CU_Database.sql file that was extracted by the Windows installer (.msi file), and then click Open.
    7. When the file is loaded, click Execute in the SQL Editor toolbar.
    8. View the Messages pane to check whether the Transact-SQL commands ran successfully.
    9. Exit SQL Server Management Studio.
    10. For the Operations Manager data warehouse, repeat steps 1 through 8. However, connect to the instance of SQL Server that hosts the Operations Manager data warehouse, and then run the \SQLUpdate\CU_DataWarehouse.sql file.
    More info:
    http://support.microsoft.com/kb/2783850
    Niki Han
    TechNet Community Support

  • Help Required: Updating Multiple dynamically created rows in database

    Hi All,
    In my jsp page I am retriving the values from the database and displaying in the jsp page, the columns are studentID and student name. Now for each studentID i am creating two textfields as date of birth and parent name.
    my code snippet is as follows
    while(rs.next())
    <tr>
    <td><%=studID%></td>
    <td><%=name%></td>
    <td><input type="text" name="DOB<%=studID%>"></td>
    <td><input type="text" name="PName<%=studID%>"></td>
    </tr>
    from the above code i am getting dynamically create textfield whose names are
    <input type="text" name="DOB10001">
    <input type="text" name="PName10001">
    and so on now how can i capture all these values and update the corresponding records in the database.
    Please help me in this
    Thanks in advance

    well in that case u can do this
    int i=0;
    while(rs.next())
    <tr>
    <td><%=studID%></td>
    <td><%=name%></td>
    <td><input type="text" name="DOB<%=i%>"><input type="hidden" name="h_DOB<%=i%>" value="<%=studID%>" ></</td>
    <td><input type="text" name="PName<%=i%>"></td>
    </tr>
    <%i++%>
    <input type="hidden" name="RecordCount" value="<%=i%>" >
    when u submit this for then in the other jsp u can read the data from query string
    int li_rec_count = Integer.parseInt(request.getParameter("RecordCount"));
    for(int i=0;i<li_rec_count;i++)
    String studID = request.getParameter("h_DOB"+i);
    String dob = request.getParameter("DOB"+i);
    String pName = request.getParameter("pName"+i);
    create your sql statment and update for each studID
    }

  • SQL Server 2005 Update mechanism problem

    Hi Gurus,
          We're faced with one SQL Server 2005 update mechanism problem. Here is my problem:
          According to our requirement, an add_on interface program is designed to execute creation of production order by calling Bapi.
          There are 3 steps in this add_on program:
          Step 1: Create production order
          Step 2: Change the information of production.
          Step 3: Some other
          After the step 1 has finished immediately step 2 is called, Howerver the information which should have inserted into database table couldn't be found from database. (Maybe because the time between two steps is too short to finish inserting)
          In order to ensure the complete of the transaction, before the step 2 executed, the information in step 1 should have inserted into database.
           Is there any solution to solve this problem?
           I guess whether there is any parameter which control the time of writing buffer into database...
    Any advice is appreciated.
    Thanks & Best Regards,
    Derek Yang

    Hi
    I have the same problem, but that post didnt help me
    This is the error I have:
    My snapshot agent hangs.. waiting for a response from the server.. and timeouts.
    This only hapens for a publication that has a filter based on HOSTNAME()
    The other publications work fine
    Error messages:
    Message: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
    Command Text: sp_MSsetup_partition_groups
    Parameters: @publication = XXXXXXX
    Stack: at Microsoft.SqlServer.Replication.AgentCore.ReMapSqlException(SqlException e, SqlCommand command)
    at Microsoft.SqlServer.Replication.AgentCore.AgentExecuteNonQuery(SqlCommand command, Int32 queryTimeout)
    at Microsoft.SqlServer.Replication.AgentCore.ExecuteDiscardResults(CommandSetupDelegate commandSetupDelegate, Int32 queryTimeout)
    at Microsoft.SqlServer.Replication.Snapshot.MergeSnapshotProvider.SetupPartitionGroups()
    at Microsoft.SqlServer.Replication.Snapshot.MergeSnapshotProvider.DoRegularMergeSnapshotPreparations()
    at Microsoft.SqlServer.Replication.Snapshot.MergeSnapshotProvider.DoPreArticleFilesGenerationProcessing()
    at Microsoft.SqlServer.Replication.Snapshot.SqlServerSnapshotProvider.GenerateSnapshot()
    at Microsoft.SqlServer.Replication.SnapshotGenerationAgent.InternalRun()
    at Microsoft.SqlServer.Replication.AgentCore.Run() (Source: MSSQLServer, Error number: -2)
    Get help: http://help/-2
    Server XXXXXXXXX, Level 11, State 0, Procedure , Line 0
    Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding. (Source: MSSQLServer, Error number: -2)
    Get help: http://help/-2

  • Dead bb curve 8520 SOS need help urgently

    hi guys
    I am experiencing several major issues
    1) my phone had been resetting itself a lot lately without reason and randomly. I then downgraded the OS from 5 to 4 then it continued to do the same so I did the removal of the vendor.xml file in the folder of my win 64 bit computer then the blackberry desktop manager, the BBSAK and the computer cannot find my phone. All it does is flash the LED several times in red and wont even restart or show some evidence of life. I have tried everything please help urgently!!!!!

    Hi and Welcome to the Community!
    Please try this sequence...note that, throughout the entire 4h15m process, your BB must remain connected to a known-good wall charger (not PC USB):
    With the battery inside, connect your BB to the wall charger
    Leave it alone for 2 hours, no matter what the LED or the display does
    Remove the battery
    Wait 15 minutes
    Insert the battery
    Wait another 2 hours, no matter what the LED or the display does
    This has been known to "kick start" some BBs.
    It is also possible that your battery or BB has experienced a problem...to test, this sequence is needed:
    Obtain a known good and already fully charged additional battery...use it in your BB and see what happens
    Obtain access to a known good and identical BB...use your battery in it and see what happens
    The results of this will indicate if it's your BB or your battery that has the problem.
    Otherwise, please try this drastic method:
    KB27956 How to recover a BlackBerry smartphone from any state
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Need help urgent,my iphone is stuck at connect to itunes screen.when i restore with itunes it shows error -1. please help me

    need help urgent, my iphone is stuck at connect to itunes screen, when i restore it using itunes, it shows error -1...may someone help me plz....

    See:
    iOS: Unable to Update or Restore
    http://support.apple.com/kb/ht1808

  • JDBC SQL Exception while updating an SQL database

    Hi Experts,
    Recently i have encountered a JDBC SQL exception while updating aSQL database as below,
    com.sap.aii.af.ra.ms.api.DeliveryException: Error processing request in sax parser: Error when executing statement for table/stored proc. 'SAP_UPLOAD' (structure 'Statement'): java.sql.SQLException: No more data to read from socket
    the above system error didn't occur for all messages (so far happened twice), but i need to find an fix to overcome this system error.
    did anybody came across the above system error, please help me to resolve.
    Thanks

    Hi bandana,
    From SAP Note --> 831162
    17. Receiver: java.sql.SQLException During First Message Processing
    Q: When sending a message to a JDBC receiver channel for the first time after an extended inactivity period, I am observing a java.sql.SQLException in the adapter's processing, which refers to a closed connection or a timeout? What is causing this and how do I work around this problem?
    A: The database server has apparently closed the adapter's JDBC connection from the server side. Nevertheless, the message should be processed successfully during the next retry. If you want to completely eliminate the symptoms, enable the setting "Advanced Mode" -> "Disconnect from database after each message processing". Note that this might have a negative performance impact for high-volume processing.
    I would recommend you to go through the complete note !!! Very Informative .
    Regards,

  • BB Curve 8900 need help urgently!!!!!

    hey my blackberry 8900 rebooted but now it says "Reload Software:552" and no matter what buttons I press it just won't work, please tel me what to do I really need help urgently!!
    Solved!
    Go to Solution.

    Before you do anything else:  Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    Please let us know if that reboots the device properly or not.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Reg: Error for updating info structure S001

    Hi ,
    While creating sales order, delivery and purchase order. iam getting the follwing error:
    "Error 4 updating info structure S001".  Please help me.
    Thanks,
    Bandi

    Hello,
    Updates of these reporting tables are done in asynchronous mode.
    Check transaction SM13 and try to find back the update of table S001 and analyze the error.
    Several OSS-notes explain what can go wrong with updates of LIS and SIS tables like S001.
    Wim

Maybe you are looking for