Monitoring Oracle SQL queries in VBA

I currently use VBA with Excel to generate reports based on data within an Oracle 9 database. The amount of data is very large and the reports can take a long time to process. I have added status bar progress indicators for the majority of the report processing tasks to inform the user of what is going on.
The problem is that I need to be able to monitor the progress of the main SQL queries since they take upwards of a few minutes to run each (mainly because I need to rank and order data). I currently use code similar to that shown below to query the database from VBA.
Sub simpleVersion()
Dim username As String
Dim password As String
Dim sid As String
Dim objSession As Object
Dim objdatabase As Object
Dim OraDynaset As Object
Dim strSQL As String
username = "user"
password = "pass"
sid = "database"
' connect to database
Set objSession = CreateObject("OracleInProcServer.XOraSession")
Set objdatabase = objSession.OpenDatabase(sid, username & "/" & password, 0&)
strSQL = "select latitude, longitude, otherdata from scatter where otherdata > 50 order by latitude, longitude"
' This command takes a long time to execute when doing ranks/order bys
Set OraDynaset = objdatabase.DBCreateDynaset(strSQL, 0&)
Do While OraDynaset.EOF = False
'Process the data and put on a spreadsheet
'Status bar messages can be used here without problems
OraDynaset.MoveNext
Loop
Set OraDynaset = Nothing
Set objSession = Nothing
objdatabase.Close
Set objdatabase = Nothing
End Sub
When the DBCreateDynaset command is executed VBA waits until the dynaset data is retrieved from oracle. I would like to be able to do something similar to the pseudo code below.
Execute SQL to create dynaset
Do while still obtaining dynaset
Check v$session_longops - Indicate time taken / remaining on status bar
Loop
I have found that if you execute a large query without any tasks that require the whole dataset before they can begin (ranks, ordering etc) the dynaset is created almost instantly and excel does not freeze up.
With non dynaset operations such as inserts it is possible to run the query in non blocking mode. I am able to monitor the progress of the query and indicate it to the user.
Dim myStatement As OraSqlStmt
Set myStatement = objdatabase.CreateSql(strSQL, ORASQL_NONBLK)
Do While myStatement.NonBlockingState = ORASQL_STILL_EXECUTING
DoEvents
Select Case intSpinCount
Case 1
Application.StatusBar = "Please Wait. Calculating data /"
Case 2
Application.StatusBar = "Please Wait. Calculating data -"
Case 3
Application.StatusBar = "Please Wait. Calculating data \"
Case 4
Application.StatusBar = "Please Wait. Calculating data |"
intSpinCount = 0
End Select
Application.Wait TimeSerial(Hour(Now()), Minute(Now()), Second(Now()) + 1)
intSpinCount = intSpinCount + 1
Loop
Non blocking mode is explained here. However dynasets are not supported.
http://download-west.oracle.com/docs/cd/A91202_01/901_doc/win.901/a90173/o4o00022.htm
I have tried using pl/sql to insert the data requested into a temporary table and then the normal select statement to get the data back out. However since the data stored in a table is not ordered it isn’t much help to me since I still have to do the order by command.
Anyone got any ideas?
All help is much appreciated.

Dear taktang
I'm a newbie. I'd be grateful if you would tell me where to find "oracle-base"
thanks
mik3

Similar Messages

  • ORACLE SQL QUERIES  FOR SAP

    Hello All,
    Can any body give me the total SQL queries which will be used in SAP.
    Thanks&Regards,
    Praveen Kondabala

    Hi,
    If you do need that kind of information, then it is easier that you do not use any.
    > Like Oracle DBA
    you only need to read the documentation about
    1) brtools
    2) dbacockpit (I assume you have a fairly recent SAP version)
    you can find the information about this two "things" in
    SAP on Oracle

  • SQL Monitoring using SQL Queries

    Hi
    I am using Oracle 10 g DB. I have an application which has Oracle as DB. Its a multiuser application. During the testing of one of the page we found that saving couple of records takes huge time (50-60 seconds). I dont have access to the logic written in application code to know which all queries gets executed when user click on save button.
    I know that there is SQL Monitoring available in OEM why which you can find out the queries which got executed and also the execution time for those queries.
    However I dont have OEM access.
    Can you please let me know teh set of queries which probably will use few of teh V$ data dictionary views and provide me the same details as generated in the Monitoting report generated by OEM ?
    I want to see all the queries which got executed in last defined time (say 10 mins, 1 hr etc) , same way as it is done in OEM and not just the last sql.
    TIA
    Regards
    Arun

    Hi,
    I recommend you to install STATSPACK - it's a free tool that can be used instead of the Automatic Workload Repository (that is used in OEM).
    This tool creates snapshots of V$ views in defined time period, so it enables you to see long runing queries in history.
    If I were you I would run SQL trace just before the problematic part and then stop it just as it has finished. It would be better to run trace only for the problematic session or module - not for the whole database. SQL trace generates a file with all the executed queries, explain plans, stats, ...
    In extreme case just create copy of v$sql before and after the problematic part and compare them (new sql_id, elapsed_time delta, ...)

  • Oracle SQl queries

    I have one tabel contacts which contains name,lname,phone number,email
    phone number and email are in different row
    but i need to build a view nad show then in the same row for specific customer name
    Can any one please help
    Now present i am gettign this 2 rows phone number in one row and email in another row
         FIRST_NAME     LAST_NAME     STATUS     RELATION     CREATED_BY     UPDATED_BY     CITY     PARTY_NUMBER     PHONE_NUMBER     EMAIL
    14     a     c     Active     Service Assurance Contact Of     VSNLINDSU     RAM     Mumbai     222284093     12345     
    15     a     c     Active     Service Assurance Contact Of     VSNLINDSU     RAM     Mumbai     222284093          [email protected]
    Edited by: 862123 on Jun 8, 2011 12:39 AM
    I need output as one row
         FIRST_NAME     LAST_NAME     STATUS     RELATION     CREATED_BY     UPDATED_BY     CITY     PARTY_NUMBER     PHONE_NUMBER     EMAIL
    14     a     c     Active     Service Assurance Contact Of     VSNLINDSU     RAM     Mumbai     222284093     12345     [email protected]
    Edited by: 862123 on Jun 8, 2011 2:37 AM

    Hi
    I am working on this issue with Oracle9i test Database. I will update you as soon as I finish testing. Meanwhile can you post the exact queries that you are trying both simple and complex.
    I think the best place to modify the sql is query editor.
    Thanks
    Srinivas

  • Good book containing practical excercies on Oracle SQL

    Hello All,
    I have lately become quite comfortable with SQL queries.
    I want to put more hands on Oracle SQL queries and its syntax.
    Wanted to know if there is any good book containing ample of exercises/assignments on basic Oracle SQL.

    http://www.oracle.com/technology/tech/pl_sql/index.html
    Open the above link and read "PL/SQL Books". Here you will get Sample Chapter PDFs, download them, read and do practice.
    http://www.amazon.com/exec/obidos/tg/detail/-/0131172611/ref=ase_oracleinternetse/103-8555306-4675857?v=glance&s=books
    is also a good PL/SQL exmple.
    HTH
    Girish Sharma
    "Mark the reply if it is helpful/Correct; else post your further queries. Do'nt let question unanswered."

  • Running Stacked Queries in Oracle SQL Developer

    Is it possible to run stacked queries in Oracle SQL Developer???
    Something like this...
    SELECT *
    FROM TABLE_1
    SELECT *
    FROM TABLE_2
    SELECT *
    FROM TABLE_3
    And give my 3 different result sets in my Query Result window
    I tried "BEGIN" and "END" and Oracle SQL Developer did not seem to like it.
    Can someone let me know if this is possible and what the syntax might be???
    Thanks in advance for your review and am hopeful for a reply.
    PSULionRP

    Wrong forum!
    Please post this in the sql developer forum.
    SQL Developer
    You can run multiple queries exactly the way you posted them but you need to use F5 - the run script toolbar button.

  • Monitoring SQL Queries

    I work with IBM Cognos Business Intelligence software. Clients create reports. The data is on SQL Server 2008 R2. The client writes reports and behind the scenes Cognos creates SQL queries to retrieve the data for the report. I do not have access within
    Cognos to view all the SQL queries used to create a report. Sometimes the reports are really complicated, with many calculations on large amounts of data, and they can run for hours. How can i see the actual queries that are causing the problems? I would
    need to limit it to a specific database at a minimum.

    Your question is very general. The slowness could be caused be missing index, resource bottleneck etc.  You need start investigate where sql server is waiting the time,this can done by wait stats analysis.  use the code bellow find out the wait 
    WITH Waits AS
    (SELECT wait_type, wait_time_ms / 1000. AS wait_time_s,
    100. * wait_time_ms / SUM(wait_time_ms) OVER() AS pct,
    ROW_NUMBER() OVER(ORDER BY wait_time_ms DESC) AS rn
    FROM sys.dm_os_wait_stats
    WHERE wait_type NOT IN ('CLR_SEMAPHORE','LAZYWRITER_SLEEP','RESOURCE_QUEUE','SLEEP_TASK'
    ,'SLEEP_SYSTEMTASK','SQLTRACE_BUFFER_FLUSH','WAITFOR', 'LOGMGR_QUEUE','CHECKPOINT_QUEUE'
    ,'REQUEST_FOR_DEADLOCK_SEARCH','XE_TIMER_EVENT','BROKER_TO_FLUSH','BROKER_TASK_STOP','CLR_MANUAL_EVENT'
    ,'CLR_AUTO_EVENT','DISPATCHER_QUEUE_SEMAPHORE', 'FT_IFTS_SCHEDULER_IDLE_WAIT'
    ,'XE_DISPATCHER_WAIT', 'XE_DISPATCHER_JOIN', 'SQLTRACE_INCREMENTAL_FLUSH_SLEEP'))
    SELECT W1.wait_type,
    CAST(W1.wait_time_s AS DECIMAL(12, 2)) AS wait_time_s,
    CAST(W1.pct AS DECIMAL(12, 2)) AS pct,
    CAST(SUM(W2.pct) AS DECIMAL(12, 2)) AS running_pct
    FROM Waits AS W1
    INNER JOIN Waits AS W2
    ON W2.rn <= W1.rn
    GROUP BY W1.rn, W1.wait_type, W1.wait_time_s, W1.pct
    HAVING SUM(W2.pct) - W1.pct < 99 OPTION (RECOMPILE);
    Also pls see the link 
    http://technet.microsoft.com/en-us/library/dd672789(v=sql.100).aspx
    vt
    Please mark answered if I've answered your question and vote for it as helpful to help other user's find a solution quicker

  • Download Oracle SQL Plus for Queries

    Hello everyone,
    Could any one let me know whether I can download free version of sql plus in order to build JDBC programs and execute SQL Queries? If so, could any one forward me the url where I can download the free version of sql plus?
    Thanks,
    Prathima

    3. then the next instruction is to set the library loading path in the environment.
    Could any one tell me how to proceed with step3 without running the exe file.Well, the Step 3 is pretty clear, isn't it ?
    3. Set the library loading path in your environment to the directory in Step 2 ("instantclient"). On
    many UNIX platforms, LD_LIBRARY_PATH is the appropriate environment variable. On Windows,
    PATH should be used.=================================================================
    If you are on Windows, add the full path till the directory where you unzipped the "InstantClient" in your PATH variable.
    1) Right click on "My Computer", which is either on the desktop or "Start" -> "My Computer" (depending on your version of Windows)
    2) Click on "Advanced" tab and then click on "Environment variables".
    3) Select "Path", click on "Edit" button, add the full path till the directory, keep clicking on "OK" till you exit.
    =================================================================
    If you are using a Unix flavor or Linux distro, you will have to set the "LD_LIBRARY_PATH" variable in your .profile.
    In Linux, the .bash_profile is in your HOME directory (echo $HOME once you log in). Append something like the following to it:
    LD_LIBRARY_PATH=<full_path_of_the_directory_where_instant_client_has_been_unzipped>
    export LD_LIBRARY_PATH
    Same goes for the ".profile" of Unix boxes.
    Thereafter, run the .profile/.bash_profile in the current shell or log out and log in again.
    $ . ~/.bash_profile
    HTH
    isotope
    Just noticed your mention of "exe file", which hints at your OS being Windoze. You may disregard the Unix/Linux part.
    Message was edited by:
    isotope

  • SQL queries against a database view from an external system?

    Hi,
    I have a question about Database views in se11.
    Is it possible to create a database view and that do SQL queries against this  view from an
    external system, Not a SAP system?
    Please, I need you help.
    Best Regards
    Annika

    Hi Annika,
    it is possible , yes... but depends on your database systems in the SAP source DB and the external DB
    (easier if they are the same,  i.e. both ORACLE) - check out with your BASIS team (they have to create something like a "database link" in the external DB system  that you can use to access the tables in the SAP source).
    In the external DB you sure can create a view on these "remote" tables.
    We used this to pull data form SAP DB  to another DB system (both ORACLE based).
    But this is NOT supported by SAP , so be carefull. Below is the restriction for ORACLE (as well for other DB systems )
    see SAP note 581312 "Oracle database: licensing restrictions"
    As of point 3, it follows that direct access to the Oracle database is
    only allowed for tools from the areas of system administration and
    monitoring. If other software is used, the following actions, among
    other things, are therefore forbidden at database level:
    * Querying/changing/creating data in the database
    * Using ODBC or other SAP external access methods
    This means that additional application software is only allowed if this
    accesses the database through SAP interfaces (for example, RFC, SAP J2EE
    or BAPI).
    I would say if you KNOW the tables involved (using valid WHERE conditions and joins )
    and don't start queries from hell (ad-hoc type) wich can bring down your SAP system performance
    you can try it.
    But be warned...
    good luck...
    bye
    yk

  • How to resolve most of the Oracle SQL , PL/SQL Performance issues with help of quick Checklist/guidelines ?

    Please go thru below important checklist/guidelines to identify issue in any Perforamnce issue and resolution in no time.
    Checklist for Quick Performance  problem Resolution
    ·         get trace, code and other information for given PE case
              - Latest Code from Production env
              - Trace (sql queries, statistics, row source operations with row count, explain plan, all wait events)
              - Program parameters & their frequently used values
              - Run Frequency of the program
              - existing Run-time/response time in Production
              - Business Purpose
    ·         Identify most time consuming SQL taking more than 60 % of program time using Trace & Code analysis
    ·         Check all mandatory parameters/bind variables are directly mapped to index columns of large transaction tables without any functions
    ·         Identify most time consuming operation(s) using Row Source Operation section
    ·         Study program parameter input directly mapped to SQL
    ·         Identify all Input bind parameters being used to SQL
    ·         Is SQL query returning large records for given inputs
    ·         what are the large tables and their respective columns being used to mapped with input parameters
    ·         which operation is scanning highest number of records in Row Source operation/Explain Plan
    ·         Is Oracle Cost Based Optimizer using right Driving table for given SQL ?
    ·         Check the time consuming index on large table and measure Index Selectivity
    ·         Study Where clause for input parameters mapped to tables and their columns to find the correct/optimal usage of index
    ·         Is correct index being used for all large tables?
    ·         Is there any Full Table Scan on Large tables ?
    ·         Is there any unwanted Table being used in SQL ?
    ·         Evaluate Join condition on Large tables and their columns
    ·         Is FTS on large table b'cos of usage of non index columns
    ·         Is there any implicit or explicit conversion causing index not getting used ?
    ·         Statistics of all large tables are upto date ?
    Quick Resolution tips
    1) Use Bulk Processing feature BULK COLLECT with LIMIT and FOR ALL for DML instead of row by row processing
    2) Use Data Caching Technique/Options to cache static data
    3) Use Pipe Line Table Functions whenever possible
    4) Use Global Temporary Table, Materialized view to process complex records
    5) Try avoiding multiple network trips for every row between two database using dblink, Use Global temporary table or set operator to reduce network trip
    6) Use EXTERNAL Table to build interface rather then creating custom table and program to Load and validate the data
    7) Understand Oracle's Cost based Optimizer and Tune most expensive SQL queries with help of Explain plan
    8) Follow Oracle PL/SQL Best Practices
    9) Review tables and their indexes being used in the SQL queries and avoid unnecessary Table scanning
    10) Avoid costly Full Table Scan on Big Transaction tables with Huge data volume,
    11) Use appropriate filtration condition on index columns of seeded Oracle tables directly mapped to program parameters
    12) Review Join condition on existing query explain plan
    13) Use Oracle hint to guide Oracle Cost based optimizer to choose best plan for your custom queries
    14) Avoid applying SQL functions on index columns
    15) Use appropriate hint to guide Oracle CBO to choose best plan to reduce response time
    Thanks
    Praful

    I understand you were trying to post something helpful to people, but sorry, this list is appalling.
    1) Use Bulk Processing feature BULK COLLECT with LIMIT and FOR ALL for DML instead of row by row processing
    No, use pure SQL.
    2) Use Data Caching Technique/Options to cache static data
    No, use pure SQL, and the database and operating system will handle caching.
    3) Use Pipe Line Table Functions whenever possible
    No, use pure SQL
    4) Use Global Temporary Table, Materialized view to process complex records
    No, use pure SQL
    5) Try avoiding multiple network trips for every row between two database using dblink, Use Global temporary table or set operator to reduce network trip
    No, use pure SQL
    6) Use EXTERNAL Table to build interface rather then creating custom table and program to Load and validate the data
    Makes no sense.
    7) Understand Oracle's Cost based Optimizer and Tune most expensive SQL queries with help of Explain plan
    What about using the execution trace?
    8) Follow Oracle PL/SQL Best Practices
    Which are?
    9) Review tables and their indexes being used in the SQL queries and avoid unnecessary Table scanning
    You mean design your database and queries properly?  And table scanning is not always bad.
    10) Avoid costly Full Table Scan on Big Transaction tables with Huge data volume,
    It depends if that is necessary or not.
    11) Use appropriate filtration condition on index columns of seeded Oracle tables directly mapped to program parameters
    No, consider that too many indexes can have an impact on overall performance and can prevent the CBO from picking the best plan.  There's far more to creating indexes than just picking every column that people are likely to search on; you have to consider the cardinality and selectivity of data, as well as the volumes of data being searched and the most common search requirements.
    12) Review Join condition on existing query explain plan
    Well, if you don't have your join conditions right then your query won't work, so that's obvious.
    13) Use Oracle hint to guide Oracle Cost based optimizer to choose best plan for your custom queries
    No.  Oracle recommends you do not use hints for query optimization (it says so in the documentation).  Only certain hints such as APPEND etc. which are more related to certain operations such as inserting data etc. are acceptable in general.  Oracle recommends you use the query optimization tools to help optimize your queries rather than use hints.
    14) Avoid applying SQL functions on index columns
    Why?  If there's a need for a function based index, then it should be used.
    15) Use appropriate hint to guide Oracle CBO to choose best plan to reduce response time
    See 13.
    In short, there are no silver bullets for dealing with performance.  Each situation is different and needs to be evaluated on its own merits.

  • Oracle SQL Developer to be used in laptop

    Hi all,
    I have downloaded oracle sql developer for my Windows 7 laptop. I am able to make SQL queries but unable to run any PL SQL block. I am unable to create any connection and gettinf an error 'IO Error: The Network Adaptor could not establish the connection.'
    I do not have oracle installed in my local system. I just want to write a few blocks and use it for my personal purpose. But for packages, procedures etc it is not allowing me use any connection.
    I want a simple application for my personal use only which will help me to learn the basics.
    Please guide me regarding that.

    883365 wrote:
    Hi all,
    I have downloaded oracle sql developer for my Windows 7 laptop. I am able to make SQL queries but unable to run any PL SQL block. I am unable to create any connection and gettinf an error 'IO Error: The Network Adaptor could not establish the connection.'
    I do not have oracle installed in my local system. I just want to write a few blocks and use it for my personal purpose.
    But for packages, procedures etc it is not allowing me use any connection.
    I want a simple application for my personal use only which will help me to learn the basics.
    Please guide me regarding that.Download 10 XE (or the 11 beta) and use that.
    Paul...

  • SAP R/3 much compable on Backend databse Oracle/SQL

    Hi,
    We are going to start SAP R/3 new dimensional products implementation. Client wanted to know that which backend databse is very much compatable for SAP.
    If some one have much idea on that can please help different comparisions on SAP On Oracle / SQL .
    Thanks
    kristene

    Hello Kristene,
    I cannot explicitly recommend any database over others, but since I work with MAXDB, I thought I can give you knowledge on its features.
    MAXDB (i.e. SAPDB) is very easy to administer, requires no reorganization, and is quite easy to learn (especially by those who have worked with other databases). There are also SAP classes you can take to learn more about MAXDB.
    It has all the technical features needed by an SAP database (ACID-compliant, supports transactions, views, triggers, procedures), works with external backup tools, etc. SAP contributes significant development efforts towards MAXDB. Support for SAP customers is provided by SAP like any other SAP product. MAXDB has a full set of administration tools, and is also integrated into the SAP CCMS monitors.
    As others have mentioned, it is also the least expensive database for SAP to run on, because of lower license and maintenance fees.
    For more info, please see https://service.sap.com/maxdb --> on the LHS menu, click on 'MaxDB' --> 'MaxDB/SAP DB Customers' for a list of helpful documents.
    Please let me know if you've any questions about MAXDB.
    Thanks,
    Ashwath Kakhandiki
    MAXDB/liveCache Solution Developer -- SAP Labs

  • Unable to display results of multiple query in grid in Oracle SQL Developer

    Hi, I am a newbie to this forum and couldn't find the Oracle SQL Developer forum so posting it here.
    My question: How to display multiple query results in grid in Oracle SQL Developer.
    Example:
    select * from Employee;
    select * from Department;
    - when I select both the queries and hit F5 in Oracle sql developer. By default it displays in output window.
    - How to display result of both the queries in Grid.
    Any thoughts on this would be really helpful.
    Thanks in advance.
    Harsh

    Hi Harsh,
    I'd say that the Results grid is designed to only show the results of 1 query at a time. I don't know/can't see how it would display multiple queries at a time.
    I would suggest either joining your tables to create a single query or opening another SQL Worksheet for one of the queries so that you can display the results side-by-side.
    Maybe you could explain what you're trying to do. Why are you trying to display multiple results in the same query grid?

  • Oracle Sql Query issue Running on Different DB Version

    Hello All,
    I have come into situation where we are pruning sql queries on different DB version of Oracle and have performance issue. Let me tell you in brief and i really appreciate for your prompt response as its very imperative stuff.
    I have a query which is running on a DB of version 7.3.4 and it takes around 30 mins where as the same query when run on 8i it takes 15sec., its a huge difference. I have run the statistics to analyze on 7.3 and its comparatively very high. Question here is, the sql query trys to select data from same schema table and 2 tables from another DB using DB link and 2 other tables from another DB using DB link.So,how can we optimize this stuff and achieve this run as same time as 8i DB in 7.3. Hope i am clear about my question, Eagerly waiting for your replies.
    Thanks in Advance.
    Message was edited by:
    Ram8

    Difficult to be sure without any more detailed information, but I suspect that O7 is in effect copying the remote tables to local temp space, then joining; 8i is factoring out a better query to send to the remote DBs, which does as much work as possible on the remote DB before shipping remaining rows back to local.
    You should be able to use EXPLAIN PLAN to identify what SQL is being shipped to the remote DB, If you can't (and it's been quite a while since I tried DB links or O7) then get the remote DBs to yourself, and set SQL_TRACE on for the remote instances. Execute the query and then examine the remote trace files, And don't forget to turn off the tracing when you're done.
    Of course it could just be that the CBO got better,,,
    HTH - if not, post your query and plans for the local db, and the remote queries.
    Regards Nigel

  • How to tune a oracle sql query to make it run faster ...

    Hi Guys,
    I am very new to this tuning of sql queries. It is taking a lot of time to run a query and give the output. I have a tool called TOAD[ Tool for oracle application development ] and i ran a query in that tool. Its showing that the query is taking 7sec to get its output. I donno the exact procedure what to follow in order to tune that query. What are these actually like : explain plan, sqltrace, tkprof and how to use these to tune the query. I want my query to run faster like in msec.
    Help Appreciated.
    Thanks

    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96533/toc.htm
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96533/sqltrace.htm#1018

Maybe you are looking for

  • Error while applying patches SP 9 to NW 04s .

    Hi all , i am <b>applying SP 9 patches</b> to my <b>NW 04s</b> installation using JSPM. Doing that as i want to work on VC. In all there were around 40 patches. 8 have been deployed . giving error for following patches. sap.com/ADSSAP sap.com/BI_MMR

  • Boot Camp on iMac 11,3 with no ODD working

    Hello guys, I have been up and down for a month now with this problem....mostly down I have iMac 27" i3 (mid 2010) with broken ODD and I want to install Windows 7 64 via Boot Camp Assistant. I have done all this: Maverick Boot Camp - Partition and US

  • Change Reference field in MIRO document

    We are using invoice plan for posting of invoices. We want to update the reference field in the invoice document created by system once the original vendor invoice is received by the actual invoice no for tracking purpose. Is this possible?

  • Check_Changed_Data not working

    Hi all, In my BADI i am triggering an ALV grid pop-up to select values with check box. For getting the changed data i am using check_changed_data method. Even after selecting the check boxes in ALV pop i am not able to get the changed data. program c

  • System Error 400

    Hi all, I have a problem with my Nokia N95 8GB. Basically I don't seem to be able to upload photos to my Ovi album anymore. When I try to do this it tries to scale the photo and then after a few seconds I get the message 'system error 400' or somethi