Write to excel

i created a VI that would open excel, write to a sheet then save as original_timestamp (this way i had a clean template each time), the problem i ran into was i opened the original each time so everytime i wrote to new sheet only the most recent sheet had values while the others were empty.  So i split the VI into 3 parts - OpenExcel, WriteToExcel, and CloseExcel.  Now all of my sheet data gets written to the first sheet.  Can someone look at my VIs and let me know if i have a reference problem.  I call these from TestStand and safe the references to variables which i then pass on to the other VIs.
Solved!
Go to Solution.
Attachments:
OpenExcel.vi ‏17 KB
WriteToExcel.vi ‏21 KB
CloseExcel.vi ‏17 KB

Except you are not setting the active sheet now.
You do have a invoke node that takes a sheet name and gives you a reference to a worksheet.  Except you never do anything with that reference coming from the "Item" terminal.  You proceed to use the ActiveSheet property and use that sheet.
Try eliminating ActiveSheet, and use the output of the Sheets invoke node.
If you want to make this sheet the active one (you don't need to because you can work on inactive sheets, but activating it will bring it to the front and save that state when you save the file), you can use the Invoke Node called Activate that is part of the Worksheet object.

Similar Messages

  • Powershell use Connection String to query Database and write to Excel

    Right now I have a powershell script that uses ODBC to query SQL Server 2008 / 2012 database and write to EXCEL
    $excel = New-Object -Com Excel.Application
    $excel.Visible = $True
    $wb = $Excel.Workbooks.Add()
    $ws = $wb.Worksheets.Item(1)
    $ws.name = "GUP Download Activity"
    $qt = $ws.QueryTables.Add("ODBC;DSN=$DSN;UID=$username;PWD=$password", $ws.Range("A1"), $SQL_Statement)
    if ($qt.Refresh()){
    $ws.Activate()
    $ws.Select()
    $excel.Rows.Item(1).HorizontalAlignment = $xlCenter
    $excel.Rows.Item(1).VerticalAlignment = $xlTop
    $excel.Rows.Item("1:1").Font.Name = "Calibri"
    $excel.Rows.Item("1:1").Font.Size = 11
    $excel.Rows.Item("1:1").Font.Bold = $true
    $filename = "D:\Script\Reports\Status_$a.xlsx"
    if (test-path $filename ) { rm $filename }
    $wb.SaveAs($filename, $xlOpenXMLWorkbook) #save as an XML Workbook (xslx)
    $wb.Saved = $True #flag it as being saved
    $wb.Close() #close the document
    $Excel.Quit() #and the instance of Excel
    $wb = $Null #set all variables that point to Excel objects to null
    $ws = $Null #makes sure Excel deflates
    $Excel=$Null #let the air out
    I would like to use connection string to query the database and write results to EXCEL, i.e.
    $SQL_Statement = "SELECT ..."
    $conn = New-Object System.Data.SqlClient.SqlConnection
    $conn.ConnectionString = "Server=10.10.10.10;Initial Catalog=mydatabase;User Id=$username;Password=$password;"
    $conn.Open()
    $cmd = New-Object System.Data.SqlClient.SqlCommand($SQL_Statement,$conn)
    do{
    try{
    $rdr = $cmd.ExecuteReader()
    while ($rdr.read()){
    $sql_output += ,@($rdr.GetValue(0), $rdr.GetValue(1))
    $transactionComplete = $true
    catch{
    $transactionComplete = $false
    }until ($transactionComplete)
    $conn.Close()
    How would I read the columns and data for $sql_output into an EXCEL worksheet. Where do I find these tutorials?

    Hi Q.P.Waverly,
    If you mean to export the data in $sql_output to excel document, please try to format the output with psobject:
    $sql_output=@()
    do{
    try{
    $rdr = $cmd.ExecuteReader()
    while ($rdr.read()){
    $sql_output+=New-Object PSObject -Property @{data1 = $rdr.GetValue(0);data2 =$rdr.GetValue(1)}
    $transactionComplete = $true
    catch{
    $transactionComplete = $false
    }until ($transactionComplete)
    $conn.Close()
    Then please try to use the cmdlet "Export-Csv" to export the data to excel like:
    $sql_output | Export-Csv d:\data.csv
    Or you can export to worksheet like:
    $excel = New-Object -ComObject Excel.Application
    $excel.Visible = $true
    $workbook = $excel.Workbooks.Add()
    $sheet = $workbook.ActiveSheet
    $counter = 0
    $sql_output | ForEach-Object {
    $counter++
    $sheet.cells.Item($counter,1) = $_.data1$sheet.cells.Item($counter,2) = $_.data2}
    Refer to:
    PowerShell and Excel: Fast, Safe, and Reliable
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • How do I write an excel file and check what the next empty column would be to put the data in?

    I have somehow managed to write the portion of labview that prompts the user for a name. It checks a file to see if they are a new user or not and then assigns a number if they are. The program then acquires data that is to be put into a spreadsheet. Each subject will have ten trials which will have three columns. How do I get the information into the columns and then check each time to see which column it should go into (i.e. the next empty column for that subject). I have attached what I have thus far. I wrote this a long time ago and haven't touched it for some time so everything is a blur.
    Attachments:
    promptForSwimmerName.vi ‏76 KB
    Swimmers.dat ‏1 KB
    Main__dummy.vi ‏28 KB

    To perform those operations in excel you will use ActiveX. I will attach some examples of using Excel in LabVIEW and you can use these to do exactly what you want.
    These three examples show how to manipulate properties, write to excel and read from excel. Let me know if there is more I can do.
    Allan S.
    Applications Engineering
    National Instruments
    Attachments:
    BorderExample.vi ‏102 KB
    ActiveX_write_Rows_To_Excel2000.vi ‏90 KB
    ReadExample.vi ‏80 KB

  • Write to excel using Range function - Excel_write_range.vi

    I am using the write using range Excel function to dump some data into Excel.
    My data is an array consisting of decimal numbers (data type double) but I have to use "Number To Fractional String" before I can dump this array into Excel. And then when I open the output excel file, you have all these warnings for each cell saying, "number displayed as string". Is there a way to instead dump numbers (in format double) into the Excel. That way each cell in the excel output file will already be formatted as a number instead of string.
    Thanks in advance.

    I'm assuming you're actually using ActiveX to write out Excel files. I say this because a lot of people say "Excel files" when they're really talking about spreadsheet-formatted files, generated using the Write to Spreadsheet File VI. That said, the "Value" ("Value 2" in newer versions of Excel) is a variant, so you can wire any datatype to it. Just wire the numeric value directly.

  • Write an excel file using File adapter

    Hi,
    I have a scenario in which i have to write an excel file in the target system.
    I tried creating a tab delimited file conversion and just named the file as .xls.
    When i saw the output file it did look like a excel but a report that i have written to read a excel file cant read it.
    The report says 0 records found. It works for other excel sheets that are created manually.
    So will this method noit work for creating excel files?
    Is using the jexcel api the only option for this?

    Have u had a chance to see this excellent blog by shabarish...
    chekc this
    /people/shabarish.vijayakumar/blog/2009/04/05/excel-files--how-to-handle-them-in-sap-xipi-the-alternatives
    http://wiki.sdn.sap.com/wiki/display/XI/CODE-CreateanExcelFileviatheJExcel+API

  • How to  write file excel format xlsx/xlsb to pl/sql?

    Dear supporter,
    I built the xml report output excel file. However, the reported data and about 30 columns, line 200000 write and loading file slow, large file size
    How can write data directly to the format xlsb / xlsx from pl / sql. quickly and efficiently.
    Please, help me!
    Tks,
    Mr.T

    Check this thread.
    Re: 5. How do I read or write an Excel file?

  • Write to excel file (into AL11 directory)

    Hi,
    I am able to loop an internal table and write to csv file in AL11 directory.
    But how to write to excel file instead of csv file. And how to format the excel file (for example, column B should be format to numeric and column E should format to date format), and are we able to put like red color on column C for example?
    Thanks in advance.

    Hi,
    You need to add the tab inbetween all the fields of internal table and upload to application server using
    OPEN DATASET
    TRANSFER
    CLOSE DATASET.
    to add the tab inbetween the fields..you can use this code....
    concatenete itb-field1 itab-field2......... into string seperated by CL_ABAP_CHAR_UTILITIES=>HORIZONTAL_TAB.
    one exception whicle uploading data to the Application server you need to convert dec or currency field to char type otherwise it will give you short dump.

  • Not able to write to Excel using Client_OLE2 and webutil

    Hi
    I am working on Windows 2000 Pro SP4 Oracle Forms Builder 10.1.2.0.2
    I am using webutil to invoke Excel Application .
    The following code invokes Excel application and saves in the path specified as Test_Excel and writes the "Test Data to be written" to R1C1 when I use OLE2.
    But when I replace OLE2 with Client_OLE2 the Excel file is getting created but the data is not written to the cell.
    PL/SQL :could not find program unit being called is the error.
    Can anybody help me solve this issue ?
    Thanks in advance.
    FUNCTION WRITE_TO_EXCEL(
    excel_file_name in varchar2, ---for eg.. C:\Test_Excel.xls
    buf in varchar2 ) ----Test Data to be written
    return boolean is
    application CLIENT_OLE2.OBJ_TYPE;
    workbooks CLIENT_OLE2.OBJ_TYPE;
    workbook CLIENT_OLE2.OBJ_TYPE;
    worksheets CLIENT_OLE2.OBJ_TYPE;
    worksheet CLIENT_OLE2.OBJ_TYPE;
    cell CLIENT_OLE2.OBJ_TYPE;
    args CLIENT_OLE2.LIST_TYPE;
    begin
    application := CLIENT_OLE2.CREATE_OBJ ('Excel.Application');
    CLIENT_OLE2.SET_PROPERTY(application, 'Visible', 'True');
    workbooks := CLIENT_OLE2.GET_OBJ_PROPERTY(application, 'Workbooks');
    workbook := CLIENT_OLE2.Invoke_Obj(workbooks, 'Add');
    worksheets := CLIENT_OLE2.Get_Obj_Property(workbook, 'Worksheets');
    worksheet := CLIENT_OLE2.Invoke_Obj(worksheets,'Add');
    args:=CLIENT_OLE2.create_arglist;
    CLIENT_OLE2.add_arg(args,1);
    CLIENT_OLE2.add_arg(args,1);
    cell:=CLIENT_OLE2.get_obj_property(worksheet, 'Cells', args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.set_property(cell,'Value', buf);
    CLIENT_OLE2.release_obj(cell);
    CLIENT_OLE2.Release_Obj(worksheet);
    CLIENT_OLE2.Release_Obj(worksheets);
    args := CLIENT_OLE2.Create_Arglist;
    CLIENT_OLE2.Add_Arg(args,excel_file_name);
    CLIENT_OLE2.Invoke(workbook, 'SaveAs', args);
    CLIENT_OLE2.Destroy_Arglist(args);
    args := CLIENT_OLE2.CREATE_ARGLIST;
    CLIENT_OLE2.ADD_ARG(args,'Caption');
    CLIENT_OLE2.INVOKE(application,'Run',args);
    CLIENT_OLE2.destroy_arglist(args);
    CLIENT_OLE2.Release_Obj(workbook);
    CLIENT_OLE2.Release_Obj(workbooks);
    CLIENT_OLE2.Invoke(application, 'Quit');
    CLIENT_OLE2.Release_Obj(application);
    return(TRUE);
    exception
    when others then
    message (error_type||'-'||error_code||':'||error_text);
    message (' ');
    SET_APPLICATION_PROPERTY(CURSOR_STYLE,'default');
    CLIENT_OLE2.RELEASE_OBJ(application);
    CLIENT_OLE2.RELEASE_OBJ(workbooks);
    CLIENT_OLE2.RELEASE_OBJ(workbook);
    CLIENT_OLE2.release_obj(worksheet);
    CLIENT_OLE2.release_obj(worksheets);
    return(FALSE);
    END;

    What line is actually causing the error? Also, I assume you tested the exact same code which works when using straight OLE2 (and not the webutil client_ version)?
    Regards
    Grant Ronald
    Oracle Product Management

  • How to use ActiveX to open/write to Excel template but not to overwrite it

    Hi there again (it's me...if anyone recognised me...)
    I managed to use ActiveX to open Excel and make it visible onto the screen. But I would like to know how can I make Excel open an Excel template and let me write data to the cells without overwriting the original template. I did try to use another program source such as the EXCEL TOOLKIT but I can't still figure out how does it work for my case. Is there a simpler example for me to refer too? Please help.
    Thank you,
    juni

    Hi Mike..
    I have tried to use the examples provided LabView 6.0. I don't understand how to use the Range value to get the data from my global array and also how to open the template and write data to it.
    At the moment, I could only open a saved dialog box and a default string filename is used to save my data into a new Excel but not the formatted excel which I want.
    If possible, please help again. Vi attached.
    Attachments:
    savefile.vi ‏109 KB
    datarecords.vi ‏12 KB

  • Write to Excel Sheets dynamically -URGENT

    how to write to the excel sheets dynamically after the query excuetion.I am using MA access DB....

    Please do not cross-post!

  • Help needed to write in excel sheet

    Hi,
    I currently need to read a table and write it in a file.
    iam able to do it by using UTL package.The utl file also writes in xls format.but if a record has two column.
    both the columns are written in a single column in excel
    sheet.Kindly suggest me how to solve this problem
    Thanks in advance.

    1. spool a file with 'csv' extension using Sql*Plus.
    2. Use a delimiter for columns.
    For example,
    select '"'||column1||'","'||column2||'"'
    from mytable

  • I am getting this package does not exists , i want to write into excel shee

    import java.io.*;
    import java.util.*;
    import java.sql.*;
    import org.apache.poi.hssf.usermodel.*;
    class Custprofile
    public int makeFile(String path) {
              HSSFWorkbook wb = new HSSFWorkbook();
              HSSFSheet sheet = wb.createSheet();               
              HSSFRow row = null;
              HSSFCell cell = null;
              Connection con = null;
              int j=0,k=2,value=0;
           /* String fromDate = SchDate.getYestDate(0) + " 00:00:00";
              String toDate = SchDate.getYestDate(0) + " 23:59:59";     */     
           // String heading =linkType+"From";                  
              try {
                   HSSFFont boldFont = wb.createFont();
                   boldFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                   HSSFCellStyle boldStyle = wb.createCellStyle();
                   boldStyle.setFont(boldFont);
                   // create a row for heading
                   row = sheet.createRow((short)0);
                   cell = row.createCell((short)0);
                   // GREEN BOLD value               
                              boldFont.setColor((short)17);
                              cell.setCellStyle(boldStyle);     
                   //cell.setCellValue(heading);
                   /*cell = row.createCell((short)0);
                   cell.setCellValue(linkType);
                   cell = row.createCell((short)1);
                   cell.setCellValue(" Link Down ");
                   cell = row.createCell((short)2);
                   cell.setCellValue("Time Report ");
                   cell = row.createCell((short)3);
                   cell.setCellValue("From: ");
                   cell = row.createCell((short)4);
                   cell.setCellValue(fromDate);
                   cell = row.createCell((short)5);
                   cell.setCellValue(" To: ");
                   cell = row.createCell((short)6);
                   cell.setCellValue(toDate); */
                   // leave second row empty
                   try{
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                                  /* the next 3 lines are Step 2 method 2 from above - you could use the direct
                                  access method (Step 2 method 1) istead if you wanted */
                                  String dataSourceName = "mdbTEST";
                                  String dbURL = "jdbc:odbc:" + dataSourceName;
                                  con = DriverManager.getConnection(dbURL, "","");
                        Statement stmt = con.createStatement();
                        String query = "Select * from empid";
                        ResultSet rs = stmt.executeQuery(query);
                           ResultSetMetaData rsmd = rs.getMetaData();
                               int numberOfColumns = rsmd.getColumnCount();
                                    String query1 = "Select * from empid";
                           Statement stmtn = con.createStatement();
                           ResultSet rs1 = stmtn.executeQuery(query1);
                           if(rs1.next())
                           value = rs1.getInt(1);
                                                     System.out.println("number of columns::"+numberOfColumns);
                                  System.out.println("number of rows:"+rs1.getInt(1));
                                  for(int i=1;  i <= numberOfColumns; i++)
                                  row = sheet.createRow((short)0);
                                  i--;
                                           cell = row.createCell((short)i);
                                                 cell.setCellStyle(boldStyle);     
                                  i++;
                                           cell.setCellValue(""+rsmd.getColumnLabel(i));
                                        for(int i=1; i < value+1; i++)
                                                       rs.next();
                                                       boldFont = wb.createFont();
                                                       boldFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                                                       boldStyle = wb.createCellStyle();
                                                       boldStyle.setFont(boldFont);
                                           row = sheet.createRow((short)i);
                                for(int p=1;p<= numberOfColumns;p++){
                                   int t = p-1;
                                cell = row.createCell((short)t);
                                cell.setCellValue(""+rs.getString(p));
                   catch(Exception e)
                        System.out.println(e);
                                    Logging.addToLogFile("exporting into excel file exception"+e);
                   // create a row for fields
                   /*boldFont = wb.createFont();
                   boldFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                   boldStyle = wb.createCellStyle();
                   boldStyle.setFont(boldFont);*/
              /*     row = sheet.createRow((short)2);
                   cell = row.createCell((short)0);
                 cell.setCellStyle(boldStyle);     
                   cell.setCellValue("Name");
                   cell = row.createCell((short)1);
                 cell.setCellStyle(boldStyle);     
                   cell.setCellValue("Start Date Time");
                   cell = row.createCell((short)3);
                 cell.setCellStyle(boldStyle);     
                   cell.setCellValue("End Date Time");
                   cell = row.createCell((short)5);
                 cell.setCellStyle(boldStyle);     
                   cell.setCellValue("Down Time"); */
                   //create rows for the data and insert the data into them
               /*  for(int i = 0, rowNum=3; i < vecRow.size(); i++ , rowNum++) {
                        boldFont = wb.createFont();
                        boldFont.setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);
                        boldStyle = wb.createCellStyle();
                        boldStyle.setFont(boldFont);
                      String r = (String)vecRow.get(i);
                        row = sheet.createRow((short)rowNum);
                        cell = row.createCell((short)0);
                        boldFont.setColor((short)39);                    
                       cell.setCellStyle(boldStyle);     
                       cell.setCellValue(r);
                        cell = row.createCell((short)1);
                        String startDateTime = "hello how r u";
                             //SchDate.getDateDdMmYyyy(r.startDateTime);
                        cell.setCellValue(startDateTime);
                        cell = row.createCell((short)3);
                        String endDateTime = "i am fine";
                             //SchDate.getDateDdMmYyyy(r.endDateTime);                    
                        cell.setCellValue(endDateTime);
                        cell = row.createCell((short)5);
                        cell.setCellValue(r);
                   // Create the file                  
                   FileOutputStream fileOut = new FileOutputStream(path);
                   wb.write(fileOut);
                   fileOut.close();
              } catch(IOException ie) {
               System.out.println(ie);
              /* making the excel file without using POI */
              /*try{
                   PrintWriter pw = new PrintWriter(new FileOutputStream(path),true);
                   pw.println(message);
                   pw.close();
              } catch(IOException ie) {
                   Logging.addToLogFile("Failed To Send Mail : "+ie+ie.getMessage());
                 //Constants.rootLogger.info("Failed To Send Mail : "+ie+ie.getMessage());               
                    return value;
         public void removeFile(String path) {
              File remFile = new File(path);
              remFile.delete();
       public static void main(String a[])
            excelfile ef = new excelfile();
            Vector news = new Vector();
           String v = "sasi";
            news.add(v);
            news.add(v);
            news.add(v);
            ef.makeFile("D:\\software\\d.xls");
            //ef.removeFile("D:\\Barcodes\\");
       }Here is the entire code i had placed the poi1/2/3.jar files in the classpath and i am compiling but i am getting 23 errors all related with that import org.apache.poi.hssf.usermodel.*; does not exist, wht shall i do, and i am using jdk 1.5 and my console is showing 1.3 version after typing java -version in console. reply asap.

    Thank you for your responses. Your feedback was helpful. This is what I ended up doing for a solution:
    DECLARE
    v_JOBTYPE varchar2(8);
    v_STATUS varchar2(8);
    v_FAILURE varchar2(8);
    v_CAUSE varchar2(8);
    v_ACTION varchar2(8);
    v_GROUP varchar2(30);
    BEGIN
    SELECT EVT_STATUS, EVT_FAILURE, EVT_CAUSE, EVT_ACTION, EVT_JOBTYPE, USR_GROUP
    INTO v_STATUS, v_FAILURE, v_CAUSE, v_ACTION, v_JOBTYPE, v_GROUP
    FROM R5EVENTS, R5USERS WHERE R5EVENTS.ROWID = :ROWID
    AND USR_CODE = O7SESS.CUR_USER;
    IF NVL(v_STATUS, 'X') = 'C' AND NVL(V_GROUP,'X') IN ('MTM','MTL','MTMGT','FTL','FTMGTS','PLANNER','DISPATCH','PMCOOR','R5') AND (v_FAILURE IS NULL OR v_CAUSE IS NULL OR v_ACTION IS NULL) THEN
    RAISE_APPLICATION_ERROR( -20001, 'FAILURE, CAUSE AND ACTION FIELDS MUST BE POPULATED');
    END IF;
    END;

  • How can we write the excel function =Normsdist() in Java?

    Hi,
    I need to use one function in my java program to compute N(z) . In excel the function is =Normsdist(z). Is there any built-in library function for this in Java? How can I accomplish this? Please give me some solutions...
    Thanks.

    I need to use one function in my java program to
    compute N(z) . In excel the function is
    =Normsdist(z). Is there any built-in library
    function for this in Java? No.
    How can I accomplish
    this? Please give me some solutions...
    Thanks.Write your own, or use a 3rd party library.

  • How to write to Excel TextBox?

    I am using LV 8.2 (and the report generation toolkit).  I am trying to write to an existing Excel textbox.
    The closest I can get is Excel._Worksheet.Shapes.Item(0) to get the Shape reference for the textbox, but I cannot seem to figure out how to put text in it.
    Any suggested method will be tried, I'm not prideful 

    Figured it out, see picture.
    If your text is greater than 255 characters, you will have to split it and set the Start input on the TextFrame property node to the correct offset to append to what is already there.  Otherwise it does not put the text in the textbox, but does NOT return any error.
    Attachments:
    untitled2.JPG ‏53 KB

  • How to write to Excel values from following measurements to neighbour cells?

    Hi,
    I build app for some measurements, "end" of this app:
    As you see I have few arrays (with 12 rows). I want to eksport 2 arrays to Excel. In upper case results looks like this:
    And everything is OK, this I want, but... When I run app next time I want to save this next results in columns C and D in the same file. Next app run - columns E and F, etc. How can I do this?
    Regarsds

    Express VIs (such as Write to Measurement Files) are basically "shortcuts" designed to provide a quick fix, but rarely allow much flexibility, such as allowing you to determine where to put your data on subsequent writes.
    What you are trying to do can be done with the Report Generation Toolkit, which includes components that directly link to Excel (I'm not sure if Write to Measurement File actually uses Excel or simply writes data in an Excel-compatible format).
    However, there's a minor complication.  The task you have stated is to write columns, with subsequent columns going to the right of existing columns.  There's a function in the Excel-specific sub-Palette to find the last row, which you can use to write rows, with subsequent rows going below the last row.  It's not too difficult to use the functions in the Report Generation Toolkit to basically do what you want, but it isn't exactly straight-forward.  It would be a lot easier if you could write your data in rows ...
    BS

Maybe you are looking for

  • How to WebDynPro for ABAP?

    Hi, I don't know if I am posting on the right forum, if not please let me know where to post. And I thank you in advance for answering my question. I am a ABAP programmer for past few years and just out of interest I want to learn WebDynpro ABAP skil

  • Running color on 20" imac

    Will Color run on a 20" 2.4GHz iMac Aluminum? And if so, how is the performance? Thanks

  • New opera mini 6.5 text arrangement problem.

    Hi, New opera mini 6.5 is not formatting web pages correctly to the display for some websites in portrait mode. Any ideas? Website for example- MyNokiablog.com. -------------------If this post helped you, click on accept as solution.-----------------

  • How To add a field in search criteria in SAP standard report

    Hi AlL, I have a requirement where i need to add a field in search criteria of selection screen and display in output of Standard SAP report. I have read in threads that to obtain Access key and modify the code in std report , if i am not able to get

  • How to maintain messageId when using proxy services and mq??

    Hi I am a novice to oracle service bus and trying few transformations by configuring proxy services. Let me explain the problem I'm facing: I have created a business service and a proxy service and configured them in a synchronous way. I'm using MQ a