Export to Excel Question

Forms [32 Bit] Version 10.1.2.3.0 (Production)
How can I get the field names as column headings on export excel for the first row using my cursor below?
PROCEDURE generate_summary IS
l_filename varchar2(200);
FLAG BOOLEAN;
directory_name varchar2(200);
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;
args Client_OLE2.List_Type;
cell ole2.Obj_Type;
k INTEGER;
j integer;
     CURSOR x_cur IS
          SELECT emp_id,
                       name,
                       dept
          FROM   emp;
begin
l_filename := webutil_file.file_save_dialog
(directory_name => '<dir>:\'
,file_name => 'summary'||sysdate||'.xls'
,file_filter => null
,title => 'Select client side filename where App Server file will be saved');
/* Calling Excel and adding a new worksheet to a blank workbook */
application := Client_OLE2.create_obj('Excel.Application');
CLIENT_OLE2.SET_PROPERTY(APPLICATION, 'VISIBLE', false);
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');
j:=1;
for x_rec in x_cur loop
  args:=Client_OLE2.create_arglist;
  Client_OLE2.add_arg(args, j);
  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', name_in(x_rec.emp_id));
  Client_OLE2.release_obj(cell);
  args:=Client_OLE2.create_arglist;
  Client_OLE2.add_arg(args, j);
  Client_OLE2.add_arg(args, 2);
  cell:=Client_OLE2.get_obj_property(worksheet, 'Cells', args);
  Client_OLE2.destroy_arglist(args);
  Client_OLE2.set_property(cell, 'Value', name_in(x_rec.name));
  Client_OLE2.release_obj(cell);
  args:=Client_OLE2.create_arglist;
  Client_OLE2.add_arg(args, j);
  Client_OLE2.add_arg(args, 3);
  cell:=Client_OLE2.get_obj_property(worksheet, 'Cells', args);
  Client_OLE2.destroy_arglist(args);
  Client_OLE2.set_property(cell, 'Value', name_in(x_rec.dept));
  Client_OLE2.release_obj(cell);
  j:=j+1;
end loop;
Client_OLE2.Release_Obj(worksheet);
Client_OLE2.Release_Obj(worksheets);
/* Save the Excel file created */
args := Client_OLE2.Create_Arglist;
Client_OLE2.Add_Arg(args,l_filename);
Client_OLE2.Invoke(workbook, 'SaveAs', args);
Client_OLE2.Destroy_Arglist(args);
/* release workbook */
Client_OLE2.Release_Obj(workbook);
Client_OLE2.Release_Obj(workbooks);
/* Release application */
Client_OLE2.Invoke(application, 'Quit');
Client_OLE2.Release_Obj(application);
/* Display successfull message */
message('File successfully saved as ' || l_filename);
END;The output generated only contains the data, no column headings.
Thanks!

This is a piece of my total procedure. If row = 2, it means that you are getting the first row of data. In that case, write row 1 (the header row) first.
   -- Get the data
   first_record;
   -- Data starts at row 2. Row 1 is for the header.
   v_row  := 2;
   <<record_loop>>
   loop
      v_item := v_first_item;
      v_col  := 1;
      <<item_loop>>
      loop
         exit when v_item =i_block||'.'||null;  -- no more items in the block
         if not id_null(find_item(v_item))
         then
            if get_item_property(v_item,item_type) in ('TEXT ITEM','DISPLAY ITEM','CHECKBOX','RADIO GROUP','LIST')
            and get_item_property(v_item,visible) = 'TRUE'
            then
               if v_row = 2
               then
                  -- v_row=2: 1st data row, so put the column headers in row 1
                  -- Column header is: 1)item prompt 2)database column name
                  v_header := get_item_property(v_item,prompt_text);
                  if v_header is null
                  then
                     v_header := get_item_property(v_item,column_name);
                     if v_header is null
                     then
                        v_header := '?';
                     end if;
                  end if;
                  -- Put the column header in row 1
                  put_cell(1,v_col,v_header);
               end if;

Similar Messages

  • ALV Export to Microsoft Excel Question

    Hi All,
    I know this would be a basic question and I tried searching the forums and did not find any luck. I have implemented the standard ALV and the output is displayed in the table. The standard Export-->Export to Microsoft Excel does not work for me when I click on it. Should I need to enable / trigger this event to make this work?
    Also, Is there anyway that I show the Export to Microsoft Excel option directly in the standard ALV instead of clicking on the Export and then Export to Microsoft Excel?
    Thanks,
    Nagarajan.

    Hi Nagarajan,
    That is a satandard functionality no coding required. it will work.
    Your excel file containes any images??
    Try this...
    l_value                         TYPE REF TO cl_salv_wd_config_table.
    lr_filter  ?= l_value.
    lr_filter->set_export_allowed( abap_true ).
    OR
    If you want to cal excel by using your custom button please check this...blog
    Using WD ABAP ALV export - the hacked way
    also check this...
    Re: How to call manually Export to Excel event of ALV standar component
    Cheers,
    Kris.

  • More questions on exporting to excel

    Zahid gave me the below code that worked beautifully, the only problem now is that one of the fields in my table have something like ' house, white, '
    in other words there is a comma sometimes 2 or 3 commas in one column so that in the output file created in the below code excel thinks it's a new column and
    makes it ' house white ' 2 columns
    can I fix this,
    Thanks,
    Doug
    Hi Doug,
    You can write your own procedure to export to excel. In the following way you can do it and also resolve the issue you are having.
    1. Create a report on emp table, showing columns empno, ename and sal.
    2. Create a blank page.
    3. Create a Before Header process in this blank page with the following code:
    declare
    i NUMBER := 0;
    begin
    -- Set the MIME type
    owa_util.mime_header( 'application/octet', FALSE );
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="emp.csv";');
    -- Close the HTTP Header
    owa_util.http_header_close;
    -- Loop through all rows in EMP
    for x in (select ename, empno, sal
    from emp
    where deptno = :P73_DEPTNO)
    loop
    i := i + 1;
    -- Print out a portion of a row,
    -- separated by commas and ended by a CR
    if i = 1 then
    htp.prn('Name' ||','|| 'Empno' ||','|| 'Salary' || chr(13));
    end if;
    htp.prn(x.ename ||','|| x.empno ||','||
    '='||'"'||x.sal||'"' || chr(13));
    end loop;
    -- Send an error code so that the
    -- rest of the HTML does not render
    htmldb_application.g_unrecoverable_error := true;
    end;
    4. Create a button in the report to branch to the above created blank page.
    And that's it.
    Note that I have used '=' and " in the above procedure to handle the number formatting issue.
    Hope it helps.
    Thanks,
    Zahid

    If you are using the standard Report Export, make sure you specify the Enclosed by as a double quote.
    To use the code you have just modify the line that writes out the data as
    htp.prn('"'||x.ename ||'",'|| x.empno ||','||
    In case it is not clear, I just added a double quote on either side of the ename. Do this for any data field that might contain commas.

  • Advanced Excel exporting features display question.

    My company is using Crystal Reports XI and we're having an issue where we can't control the column width and remove page breaks as we could in Crystal Reports 9 when exporting to Excel.  Is there a way to display these same features in Crystal Reports XI when exporting to Excel format?
    John

    Deepti thanks for your response, Sorry maybe I should have specified a little clearer which version of Crystal Reports XI my company is running.  My company is running Crystal Reports XI server powered by Business Objects.  So when I run a Crystal Report I only see an Icon for Exporting and Printing.  I don't see a place for
        "* File > Export > Export report
    Format : Microsoft Excel 97-2000(XLS) and Destination: Application / Disk File > Click OK
    Then Excel Format Options windows comes:"
    I only see an icon for export and print.
    What happens when I click the export icon is it will allow me to chose which format I want (i.e. Microsoft Excel 97-2000(XLS)) then from there I can only choose the page range.

  • Survey Export to Excel - Not all columns are exported

    I have Survey in SharePoint 2013 with questions expecting different answers - radio button options / Ratings / Multi line text, etc. Settings choosen - Read thier own responses, create and edit their own responses
    I have full control over the site where the Survey runs.
    When I choose to export the results to excel (Office 2010), I notice only ratings questions and answers are exported.
     1. Question with Choice answers are not exported
     2. Questions with multi line answers are not exported
    Do anyone face this issue?
    Thanks!

    I found the problem area. I had marked "All Response" as the default view. In this view, for some reason does not export response for all questions.
    Once I changed the default to Overview, I am able to export all the responses for all questions.

  • Export to Excel Issues

    We just upgraded from Crystal 8.5 to Crystal 10.  When we export to Excel, the formatting is terrible.  We have close to 100 reports that we routinely export...some with 40,000 rows.  To try to fix these once they're in Excel is out of the question.
    In previous threads I've been reading about a "patch" that supposedly fixes this.  Where can I download this?
    Eric Hill

    The way reports work and export changed significantly in CR 9. While there was a dll available to help move from CR 8.x to CR 9, that dll is no longer available. Not for CR 9, nor any other versions of CR. Instead, you will have to modify your reports as per the article [Crystal Reports Designer Version 10 Exporting to Microsoft Excel|http://www.sdn.sap.com/irj/boc/go/portal/prtroot/docs/library/uuid/10d3ba69-951e-2b10-3093-e3cf287a57c9?quicklink=index&overridelayout=true].
    No other work-arounds or options exist at this time.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Export to excel with formatting was autowrapping text in a cell

    Export to excel with formatting was autowrapping text in a cell without having to check the can grow option.  When the can grow option is checked it does wrap the text however it spans multiple rows, which causes complications when trying to sort. 
    It worked in:
    ProductVersion=10.0.0.533
    ProductName=Crystal Enterprise 10 Embedded
    Doesnt work in:
    Crystal Reports 10.0 Service Pack 6
    After the upgrade the reports did not autowrap, b/c the "can grow" option was not checked.  I believe this was fixed by "ADAPT00305137 Patch ID: 36479914
    Description:
    When users export to Excel 97-2000 with the page-based format, text fields are wrapped, even when the "can grow" feature in the
    Designer is turned off." .   After we turn the option to grow on it does wrap however it spans across multiple rows.  So I guess my question is there a way for it not to span multiple rows when wrapping text?
    Edited by: dforde on Jan 27, 2010 11:12 PM

    I could be wrong, but I believe the export to excel option exports the database values, and the export to HTML exports the values seen in the sheets. If the database values are stored as seconds, the Excel will see them as seconds, and the data will have to be formatted properly in Excel.
    I haven't toyed around with Excel exports that much, but it might be possible to set up a template or macro in excel that would have the proper formatting, and use it when opening the Disco export.

  • Why does Apple say that Numbers can open and save Excel files, when in actuality, it can only open .XLSX files and only Export to Excel (not save-as excel)?

    When attempting to open .XLS files in Numbers, the format is not recognized. When the format is .XLSX, the format is recognized. Why is it this way? It's still much more common for folks to have the .XLS file format on their excel files. Why would Numbers not be backwards-compatible?
    Additionally, to state in the benefits of this program that one can save to 'Excel' is a little misleading. You can't save to anything except .numbers. Sure, you can export to Excel (with file extension .XLS, I might add), but you can't save or save-as.
    Does anyone else see the irony in being able to export to .XLS but not be able to open an .XLS?
    There is something to be said for clarity.
    You can't expect folks to have Numbers and Excel on their systems, so how else are they supposed to open .XLS files in Numbers?
    And I don't need to see another advertisement for NeoOffice or OpenOffice here, thanks. I'd actually like Numbers to be a little more sensible.
    That is all.

    When the advertisements were written, there was no Lion so we were able to Save As Excel.
    At thiqs time there is no longer Save As command under Lion but the feature is always available.
    When your editing task is ended, you are free to use this scheme:
    File > Duplicate
    File > Save and in the dialog you will have the option save as Excel.
    Numbers isn't and I hope that it will not become an Excel editor.
    Its resources contain a flag defining it this way.
    I posted several times a script editing this resource.
    This morning I'm not in a mood allowing me to do your duty.
    Search by yourself in existing threads with a keystring like
    viewer AND editor
    Yvan KOENIG (VALLAURIS, France) jeudi 27 octobre 2011 09:40:23
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • Export to Excel problem in Signal Express 2012

    Equipment used: PXIE-8102 CELERON T3100 1.9GHZ Controller Windows 7, PXIE-1071 4 Slot Chassis, PXIE-4140 4-Channel SMU 1.7.5 version.
    I am using Signal Express 2012 and the SMU to plot the I/V characteristics of FET and other active devices. I am able to obtain the anticipated curve traced results but I am not able to Export the data to Excel directly from the Data View using the Microsoft Excel option. The error message is: Data could not be sent to Microsoft Excel. Please ensure you have a properly licensed version of Microsoft Excel. See attachment.
    We have checked our version of Microsoft Office, it is Professional Plus and has the correct volume license so it does not revert to a home or student version.
    I have been able to use the Export to Excel function directly from the Dataview when I was using one of the waveform tutorials supplied with Signal Express so I suspect it is a function of the SMU.
    In conversations with an NI support engineer he felt it may be a problem with "an active x call is just not seeing the license for some reason", his suggestion is to drag the data into Excel rather than use the Data view tab. Because the SMU is being used in a production environment it is not really appropriate to have the operator work at this level so I would rather figure a way to have the data exported using the Data View tab.
    Anyway please can you let me know if there are any known work around for this issue.
    Thank you

    Calvin1957,
    I am not seeing any attachments in the first post or this latest post. The images should be added using the attachments section when creating the post. You should also be able to insert an image using the insert image button in the toolbar. Let me know if you have any questions. Thanks!
    Robert B
    Applications Engineer
    National Instruments

  • Best way to create dataset to be exported in Excel for further elaboration

    Hello experts!
    I need help with some of my custormers, that perform their work in a way that I partially disagree.  They work in BOXI R3.1 SP3.
    They use webi on top of relational universes (DWH layer in Oracle DB).
    We created reports in webi that cover their standard analysis, but for their spot analysis they find difficult to work in webi.
    I think that it partially depends on lack of known of the tool (even if they have been trained).
    Anyway they need a solution to this issue:
    they wont create in webi a basic set of information inserting reclassifications of information and some calculation in webi. Then they need to export information in excel to do their on spot calculations. Those dataset are often big, so they find following issues:
    1)they tried to use Live Office to import the table they need but the limit of the datastream size is reached quickly (currently limit is 50Mb in our settings , but is reached even from report that exported with Save to my computer As Excel are not more than 10Mb ). I discussed with B.O. administrator and increasing much more this treashold affects general  performances of other services.
    2)Exporting in excel with Save As is quite cumbersome and they can't use .xlsx format as it is only supported by BI4.0 .So they get tables with more than 64K rows splitted over many sheets.
    3)They also tried to export in CSV format to eventually further elaborate in Access, but .CSV only retrieve the information of the Microcube extracted by the query, not the data elaborated in the report.
    Anyone can suggest further ways to behave?
    Kind regards.
    Roberto.

    there are 3 options I see :
    1. Learn to use webi, it can do everything excel can and more
    2. I question ability of anyone to deal with that much data in excel, you should agregate data on DB side and push most of calculations there. Then your exports will be much smaller.
    Better designed semantic layer will allow your users to get needed data quicker and in less volume, making their work in webi or in excel easier.
    3. Use DF/DI products as ETL tools into your Excel users.

  • JHS: Export to Excel doesn't work when having leading zeros

    Oracle JHeadstart Release 11.1.1.2.29
    We are using the Export to excel option, but when we have leading zeros it doesn't export it as text so the data is incorrect.
    Can any one please tell how doe we configure JHeadstart/ADF to have the leading zeros and export it as text rather than as number.
    Regards
    Ram

    Ram,
    Export to excel is native ADF feature,not related to JHeadstart. Please post your question on the JDeveloper forum.
    Steven davelaar,
    JHeadstart team.

  • SSRS 2012 - Groups in Report Manager aren't present when exported to Excel

    Hi all, hope somebody can help with this issue, as I cant seem to find any other posts about it
    I have a report in SSRS2012. It was copied from SSRS2005 quite recently, as we have upgraded. The SQL developer said that it didn't need any code changes, as he had some kind of tool to test code problems between the two versions.
    The report has a table, with 5 row groups, and one detail row. The table is setup as follows:
    Name                                         Sales         
    Costs       Profit
    Group1                                     
       Group2
          Group3
             Group4
                Group5
                   DetailsRow
    When I run this report using the Report Manager website from SSRS2005, and then export to Excel 2013, I get the 6 row groups in Excel, no problem whatsoever. I can drill into each group in Excel, using the group drilldown column on the left hand side. This
    works the same as the Report Manager website.
    If I run the exact same report from the Report Manager website in SSRS2012, the Report Manager result is the same as SSRS2005 - all the row groups are present, and the drilldown works fine. However, the export to Excel has issues with the groups. There are
    only 3 row groups showing in Excel, along with a column group added for no apparent reason. Drilling into each group shows inconsistent details, and there is no apparent logic as to what is shown within each group.
    Hopefully, someone has seen this issue before, and can help, because I have no idea what to do, having spent a couple of days trying to figure it out. I should also mention, that this issue with groups is seen on all my reports which have groups, not just
    this report
    Thanks for any and all help
    Naz

    Hi Naz,
    According to your description, the report works correctly in SSRS 2005 while the same report doesn’t work in SSRS 2012 when exporting to a Excel file.
    In your scenario, please make sure you are migrating the report from SSRS 2005 to SSRS 2012 instead of copying the .rdl directly. Generally, we are using Reporting Services Migration Tool to migrate reports between report server. Please refer to this article:
    SQL Server Reporting Services: Migrating SSRS reports, data sources and subscriptions from one server to another.
    After migrating the report successfully, you should upgrade the report definition in SQL Server Data Tools to upgrade the .rdl file. Please refer to this article:
    Upgrade Reports.
    If you have upgraded the report but the issue still persists, please provide report design for our analysis. If possible, please provide some screenshots about the preview result and Excel render result.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Prblm in Date format when exported to excel

    Hi ,
    I had a problem when using the Export To Excel option from Portal. The data is getting fine populated in Excel but it's in General No Specific Format. But I wanted the data to be in its original format even when exported to Excel. Like...
    Country -
    Date Goods Delivered
    India----
    01.01.2001
    America----
    05.12.2004
    Singapore----
    12.04.2003
    Here the country should be of type TEXT FORMAT and Date Goods Delivered should be in DATE FORMAT(Here its visible as date but it's in General format)
    I am facing problem with date, it is displayed(01.04.2006) as shown above but it's in general format. I wanted it to be in date format at excel.
    I am in BW3.5 with portal version EP7.0
    Please suggest the solution and I had even gone through previous forum questions related to this but couldn't get.....the solution.
    points will be assigned...
    Regards,
    rudra.

    Hi,
    My end users requirement is to get all data in Standard format. We can't ask to select the date column and change the format in excel as there are more date fields(columns ).
    Using macro i had one problem,even though i am not sure..
    i can't enable the macro to get enabled in page load of export to excel as it is to be done at users end...
    If theres any possibilty of enabling....pls let me know
    Thanks for your valuable suggestions...
    Regards,
    rudra.

  • Exporting to Excel - How to control Column Heading?

    I'm working in SSRS 2012.  I have one tablix in the report body.  The tablix has both Row and Column Groups.
    When rendering in the web browser the report page breaks on a row group.  The Repeat Column Headers property is set to "True" so it shows the column headings from page to page.
    When rendering in Excel, I want one worksheet and not separate worksheets so the page break is disabled via the Page Break->Disabled property expression "=IIf(Globals!RenderFormat.Name="EXCELOPENXML", True, False)".
    This is all good but the Column Headings only show up once at the very top in the excel worksheet. 
    Is it possible to make the Column Headings repeat with each tablix data region as it is rendered vertically down the worksheet?
    OR is there a way from SSRS to set the Excel property "Rows to Repeat at top" to include Column Heading; by default the SSRS Report's header is repeated in Excel, but can the number of rows be changed to include the Column Heading?
    OR is there some other work around?
    Thanks for your help.
    Mark

    Thanks for the reply Wendy.
    You addressed my second question ... "is there a way from SSRS to set the Excel property "Rows to Repeat at top" to include Column Heading; by default the SSRS Report's header is repeated in Excel, but can it be changed to include the Column Heading? 
    Based on your response, the only way to freeze the column header in excel is to freeze or split panes AFTER export to excel.  well booo but I have to accept that I guess.
    My first question is what I really want to do, which is to physically repeat the Column Heading in the excel rendering. I included two pictures demonstrate what I want ...
    1) the standard SSRS report rendered in Excel ... Column Headings are shown once:
    Standard Export to Excel
                           Year
    Region
    Category
    2011
    2012
    2013
            Total
    East
    Sales
    10
    20
    30
    60
    Expenses
    8
    20
    10
    38
    Profit
    2
    0
    20
    22
    West
    Sales
    8
    16
    24
    48
    Expenses
    6
    16
    8
    30
    Profit
    2
    0
    16
    18
    2) what I'd like to see rendered in Excel ... which is to repeat the headers as you scroll down the page
    Desired Export to Excel
                          Year
    Region
    Category
    2011
    2012
    2013
            Total
    East
    Sales
    10
    20
    30
    60
    Expenses
    8
    20
    10
    38
    Profit
    2
    0
    20
    22
                           Year
    Region
    Category
    2011
    2012
    2013
            Total
    West
    Sales
    8
    16
    24
    48
    Expenses
    6
    16
    8
    30
    Profit
    2
    0
    16
    18
    Thanks again for your help,
    Mark

  • Reporting and exporting to Excel in SharePoint Online

    Hi
    I've developed a SharePoint site to replace a legacy Access database that dealt with consumer complaints and queries. In the Access database I'd developed a feature that allowed users to filter the complaints by a number of criteria and export them to Excel
    and I'm trying to do the same in SharePoint.
    If it were on-premises SharePoint I'd just create a parameterised SSRS report which would solve all my problems. However being SharePoint online, this is not an option. I'd like the users to be able to select complaints from any date range, for any category
    of complaint and for any product supplier (plus a few other criteria). The idea is that they want to be able to then send the filtered data to individual suppliers. Doing this out of the box with views throws up several problems. The main one is that any export
    to Excel of a view exports the entire set of data, meaning that users themselves would need to create a new view for every export they wished to perform, which is not practical.
    My question is: what is the best way in SharePoint online to export a filtered subset of a list to Excel?
    I can use SharePoint designer, but not C# in order to achieve the goal. We also have SharePoint Online Plan 2 if that makes it easier.
    Thanks in advance,
    Duncan

    Hi Duncan,
    Well its easy to Reporting and exporting to Excel in SharePoint Online,
    See the Youtube link below and other links for more descriptions.
    Office 365: Synchronize Excel with SharePoint Online
    Reporting and exporting to Excel in SharePoint Online
    Thanks
    Indul Hassan (www.indulhassan.com)

Maybe you are looking for

  • SSIS none text qualifier results in text file containing "_x003C_none_x003E"

    There is a bug in SSIS when exporting data from SQL to a comma delimited text file where you specified no text qualifier. This bug apparently only occurs when you develop the SSIS on a x64 win7 PC and copy the .dtsx file (windows explorer copy/paste)

  • ERROR report when backing up of ipad

    I get repeated error reports when backing ipad only when trying to update to ios 5. when I back up without update option it works fine i have version 4.3.1 and want to update it.help!

  • Correspondence Sort Variant

    Hi Gurus, I run program RFFOAVIS_FPAYM for Correspondence . I define in spro sort variant for the program and specific payment method with vendor number sort ! I choose specific sort variant. But the program not run with this? Can anyone tell if work

  • 4s could not activate iphone

    i just restore my iphone 4s white 16GB, but its not letting me activate the iphone. The messages is showing as below "Could not activate iphone" "Your iphone could not be activated beacause the activation server is temporarily unavailable. Try connec

  • Display of data after Business Rule Execution

    Hi Gurus We are using 11.1.2 and experiencing few problems with some of out Business Rules. The problem is, BR executed successfully and the resultant data is not displaying in the target form. As a workaround, we put a dummy value in any of the targ