A simple question of output to EXCEL

Hi, all
I am using WS_EXCEL to output a interntable to excel file.( filename will be input on dynpro). the file will be created.
the Problem is, everytime i run the following codes,
1. the file content is not well formated is poor, words in the column are some aligned at right of the cell , some are at left. how can I defined the alignment?
2. everytime i create the file, the excel document is opened, can that be avoided ( run in background and file get created?)
3. everytime i create the file, the old file will be covered, how can I use other sheets of the same file to save the table content?
thanks a lot!!!
Fan
CALL FUNCTION 'WS_EXCEL'
EXPORTING
   FILENAME      = cfile
  SYNCHRON            = ' '
  TABLES
    data                = tab_ssu
EXCEPTIONS
   UNKNOWN_ERROR       = 1
   OTHERS              = 2
cfile = 'c:\tmp\b.xls'

Hi
For the question related to alignment and different sheet you need to use OLE .
Now for ole ,it runs in Foreground ,this will open up the sheet for display.
Now i can suggest one thing but i am not sure if it is a good way of doing it..You can generate different sheets in background and store it on application server  and while displaying them you can read them one by one and display it on different sheets of same excel.
please see the reference code for ole....
**ake refrence fom this programm.
**& Report ZNEGI9 *
REPORT ZNEGI9 NO STANDARD PAGE HEADING.
INCLUDE ole2incl .
DATA: gs_excel TYPE ole2_object ,
gs_wbooklist TYPE ole2_object ,
gs_application TYPE ole2_object ,
gs_wbook TYPE ole2_object ,
gs_activesheet TYPE ole2_object ,
gs_sheets TYPE ole2_object ,
gs_newsheet TYPE ole2_object ,
gs_cell1 TYPE ole2_object ,
gs_cell2 TYPE ole2_object ,
gs_cells TYPE ole2_object ,
gs_range TYPE ole2_object ,
gs_font TYPE ole2_object ,
gs_interior TYPE ole2_object ,
gs_columns TYPE ole2_object ,
gs_charts TYPE ole2_object ,
gs_chart TYPE ole2_object ,
gs_charttitle TYPE ole2_object ,
gs_charttitlechar TYPE ole2_object ,
gs_chartobjects TYPE ole2_object .
DATA gv_sheet_name(20) TYPE c .
DATA gv_outer_index LIKE sy-index .
DATA gv_intex(2) TYPE c .
DATA gv_line_cntr TYPE i . "line counter
DATA gv_linno TYPE i . "line number
DATA gv_colno TYPE i . "column number
DATA gv_value TYPE i . "data
PARAMETERS: p_sheets TYPE i .
START-OF-SELECTION .
DO p_sheets TIMES .
*--Forming sheet name
gv_intex = sy-index .
gv_outer_index = sy-index .
CONCATENATE 'Excel Sheet #' gv_intex INTO gv_sheet_name .
*--For the first loop, Excel is initiated and one new sheet is added
IF sy-index = 1 .
CREATE OBJECT gs_excel 'EXCEL.APPLICATION' .
SET PROPERTY OF gs_excel 'Visible' = 1 .
GET PROPERTY OF gs_excel 'Workbooks' = gs_wbooklist .
GET PROPERTY OF gs_wbooklist 'Application' = gs_application .
SET PROPERTY OF gs_application 'SheetsInNewWorkbook' = 1 .
CALL METHOD OF gs_wbooklist 'Add' = gs_wbook .
GET PROPERTY OF gs_application 'ActiveSheet' = gs_activesheet .
SET PROPERTY OF gs_activesheet 'Name' = gv_sheet_name .
*--For the rest of loops, other sheets are added
ELSE .
GET PROPERTY OF gs_wbook 'Sheets' = gs_sheets .
CALL METHOD OF gs_sheets 'Add' = gs_newsheet .
SET PROPERTY OF gs_newsheet 'Name' = gv_sheet_name .
ENDIF .
gv_line_cntr = 1 . "line counter
*--Title
*--Selecting cell area to be merged.
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = 1
#2 = 1.
CALL METHOD OF gs_excel 'Cells' = gs_cell2
EXPORTING
#1 = 1
#2 = 4.
CALL METHOD OF gs_excel 'Range' = gs_cells
EXPORTING
#1 = gs_cell1
#2 = gs_cell2.
CALL METHOD OF gs_cells 'Select' .
*--Merging
CALL METHOD OF gs_cells 'Merge' .
*--Setting title data
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_line_cntr
#2 = 1.
SET PROPERTY OF gs_cell1 'Value' = 'KISHAN' .
*--Formatting the title
GET PROPERTY OF gs_cell1 'Font' = gs_font .
SET PROPERTY OF gs_font 'Underline' = 2 .
SET PROPERTY OF gs_font 'Bold' = 1 .
SET PROPERTY OF gs_cell1 'HorizontalAlignment' = -4108 .
GET PROPERTY OF gs_cell1 'Interior' = gs_interior .
SET PROPERTY OF gs_interior 'ColorIndex' = 15 .
SET PROPERTY OF gs_interior 'Pattern' = -4124 .
SET PROPERTY OF gs_interior 'PatternColorIndex' = -4105 .
gv_line_cntr = gv_line_cntr + 1 .
*--Writing some additional data for the title
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_line_cntr
#2 = 1.
SET PROPERTY OF gs_cell1 'Value' = 'Sheet No' .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_line_cntr
#2 = 5.
SET PROPERTY OF gs_cell1 'Value' = ':' .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_line_cntr
#2 = 6.
SET PROPERTY OF gs_cell1 'Value' = gv_intex .
*--Formatting the area of additional data 1
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = 1
#2 = 1.
CALL METHOD OF gs_excel 'Cells' = gs_cell2
EXPORTING
#1 = gv_line_cntr
#2 = 5.
CALL METHOD OF gs_excel 'Range' = gs_cells
EXPORTING
#1 = gs_cell1
#2 = gs_cell2.
CALL METHOD OF gs_cells 'Select' .
GET PROPERTY OF gs_cells 'Font' = gs_font .
SET PROPERTY OF gs_font 'Bold' = 1 .
*--Formatting the area of additional data 2
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = 1
#2 = 5.
CALL METHOD OF gs_excel 'Cells' = gs_cell2
EXPORTING
#1 = gv_line_cntr
#2 = 5.
CALL METHOD OF gs_excel 'Range' = gs_cells
EXPORTING
#1 = gs_cell1
#2 = gs_cell2.
CALL METHOD OF gs_cells 'Select' .
GET PROPERTY OF gs_cells 'Columns' = gs_columns .
CALL METHOD OF gs_columns 'AutoFit' .
*--Bordering title data area
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = 1
#2 = 1.
CALL METHOD OF gs_excel 'Cells' = gs_cell2
EXPORTING
#1 = gv_line_cntr
#2 = 6.
CALL METHOD OF gs_excel 'Range' = gs_cells
EXPORTING
#1 = gs_cell1
#2 = gs_cell2.
CALL METHOD OF gs_cells 'Select' .
CALL METHOD OF gs_cells 'BorderAround'
EXPORTING
#1 = 1 "continuous line
#2 = 4. "thick
*--Putting axis labels
gv_colno = 2 .
gv_line_cntr = gv_line_cntr + 5 .
gv_linno = gv_line_cntr - 1 .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_linno
#2 = 1.
SET PROPERTY OF gs_cell1 'Value' = 'X' .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_line_cntr
#2 = 1.
SET PROPERTY OF gs_cell1 'Value' = 'Y' .
*--Generating some data
DO 3 TIMES .
gv_value = gv_outer_index * sy-index * 10 .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_linno
#2 = gv_colno.
SET PROPERTY OF gs_cell1 'Value' = sy-index .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_line_cntr
#2 = gv_colno.
SET PROPERTY OF gs_cell1 'Value' = gv_value .
gv_colno = gv_colno + 1 .
ENDDO .
*--Source data area
gv_colno = gv_colno - 1 .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING #1 = gv_linno
#2 = 1.
CALL METHOD OF gs_excel 'Cells' = gs_cell2
EXPORTING #1 = gv_line_cntr
#2 = gv_colno.
CALL METHOD OF gs_excel 'Range' = gs_cells
EXPORTING #1 = gs_cell1
#2 = gs_cell2.
CALL METHOD OF gs_cells 'Select' .
GET PROPERTY OF gs_application 'Charts' = gs_charts .
CALL METHOD OF gs_charts 'Add' = gs_chart .
CALL METHOD OF gs_chart 'Activate' .
SET PROPERTY OF gs_chart 'ChartType' = '51' . "Vertical bar graph
CALL METHOD OF gs_chart 'SetSourceData'
EXPORTING #1 = gs_cells
#2 = 1.
SET PROPERTY OF gs_chart 'HasTitle' = 1 .
GET PROPERTY OF gs_chart 'ChartTitle' = gs_charttitle .
GET PROPERTY OF gs_charttitle 'Characters' = gs_charttitlechar .
SET PROPERTY OF gs_charttitlechar 'Text' = 'Sample Graph' .
*--Locate the chart onto the current worksheet
*--Activate current sheet
CALL METHOD OF gs_excel 'WorkSheets' = gs_activesheet
EXPORTING #1 = gv_sheet_name.
CALL METHOD OF gs_activesheet 'Activate' .
CALL METHOD OF gs_chart 'Location'
EXPORTING #1 = 2
#2 = gv_sheet_name.
*--Reposition the chart on the worksheet (cut&paste)
CALL METHOD OF gs_activesheet 'ChartObjects' = gs_chartobjects .
CALL METHOD OF gs_chartobjects 'Select' .
CALL METHOD OF gs_chartobjects 'Cut' .
*--Select new area
gv_line_cntr = gv_line_cntr + 2 .
CALL METHOD OF gs_excel 'Cells' = gs_cell1
EXPORTING
#1 = gv_line_cntr
#2 = 1.
CALL METHOD OF gs_excel 'Cells' = gs_cell2
EXPORTING
#1 = gv_line_cntr
#2 = 1.
CALL METHOD OF gs_excel 'Range' = gs_cells
EXPORTING
#1 = gs_cell1
#2 = gs_cell2.
CALL METHOD OF gs_cells 'Select' .
CALL METHOD OF gs_activesheet 'Paste' .
enddo.
*--Deallocating memory
FREE: gs_excel, gs_wbooklist, gs_application, gs_wbook,
gs_activesheet,gs_sheets, gs_newsheet, gs_cell1,
gs_cell2, gs_cells, gs_range, gs_font, gs_interior,
gs_columns, gs_charts, gs_chart, gs_charttitle,
gs_charttitlechar, gs_chartobjects .
Edited by: sushilnath shukla on Jul 9, 2008 7:21 PM

Similar Messages

  • Question about output in Excel file

    Hi all experts
    I am trying to export a report to excel sheet. Got one problem, in the report there are codes of companies,  like "09", "08", but when exported by using WS_EXCEL FBS, i got the result "9", "8".
    That is> the Zero at the beginning is lost.
    How can i solve this problem easily?
    question2, how can i make the alignment better. (now some are left and some are right aligned)
    thank you !
    here is my coding
    CALL FUNCTION 'WS_EXCEL'
    EXPORTING
    FILENAME = file1
    SYNCHRON = ' '
    TABLES
    data = tab_comp
    EXCEPTIONS
    UNKNOWN_ERROR = 1
    OTHERS = 2
    file1 = 'c:\tmp\b.xls'
    Richard

    Hi,
    Conventionally it is not possible.
    If u can compromise to some extent its is possible. Check below code.
    U may have to give one check box in selection screen/Push button in output list.
    Based on the selection(In case of check box)/Click(In case of push button) u can download the data.
    U have loop through ur itab and modify that value by concatenating the special character '
    But it will also be downloaded to excel
    If u don't understand what i am saying just copy paste below code and see whether it will be fine.
    TYPES:BEGIN OF t_tab,
            empno(10) TYPE c,
          END OF t_tab.
    DATA: i_tab TYPE TABLE OF t_tab,
          wa_tab TYPE t_tab.
    CLEAR wa_tab.
    wa_tab-empno = '0075694'.
    APPEND wa_tab TO i_tab.
    CONCATENATE '''' wa_tab-empno INTO wa_tab-empno.
    MODIFY i_tab FROM wa_tab INDEX 1.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
    *   BIN_FILESIZE                  =
        filename                      = 'E:/test.xls'
    *   FILETYPE                      = 'ASC'
    *   APPEND                        = ' '
       WRITE_FIELD_SEPARATOR         = '#'
    *   HEADER                        = '00'
    *   TRUNC_TRAILING_BLANKS         = ' '
    *   WRITE_LF                      = 'X'
    *   COL_SELECT                    = ' '
    *   COL_SELECT_MASK               = ' '
    *   DAT_MODE                      = ' '
    * IMPORTING
    *   FILELENGTH                    =
      tables
        data_tab                      = i_tab
    EXCEPTIONS
       FILE_WRITE_ERROR              = 1
       NO_BATCH                      = 2
       GUI_REFUSE_FILETRANSFER       = 3
       INVALID_TYPE                  = 4
       NO_AUTHORITY                  = 5
       UNKNOWN_ERROR                 = 6
       HEADER_NOT_ALLOWED            = 7
       SEPARATOR_NOT_ALLOWED         = 8
       FILESIZE_NOT_ALLOWED          = 9
       HEADER_TOO_LONG               = 10
       DP_ERROR_CREATE               = 11
       DP_ERROR_SEND                 = 12
       DP_ERROR_WRITE                = 13
       UNKNOWN_DP_ERROR              = 14
       ACCESS_DENIED                 = 15
       DP_OUT_OF_MEMORY              = 16
       DISK_FULL                     = 17
       DP_TIMEOUT                    = 18
       FILE_NOT_FOUND                = 19
       DATAPROVIDER_EXCEPTION        = 20
       CONTROL_FLUSH_ERROR           = 21
       OTHERS                        = 22
    IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *Here output in excel is '0075694
    Thanks,
    Vinod.

  • How GET Output to Excel with Oracle9i Report using OC4J

    how GET Output to Excel with Oracle9i Report using OC4J.
    I FINISHED THE SETPS CONCIDERING THE JSP CODE NEEDED TO GET THE EXCEL OUTPUT ON LOCAL MACHINE.
    I NEED TO PUBLISH THIS REPORT THROUGH APPLICATION SERVER.
    THE QUESTION IS:
    1- HOW TO START AN OC4J INSTANCE FROM ORACLE 9I DS FOR THIS REPORT?
    2- WHERE (PATH) TO PUBLISH THE REPORT ON THE APPLICATION SERVER?
    3- WHAT IS THE DEFAULT URL TO RUN THIS REPORT AND WHERE TO PUT IT?
    4- HOW TO MAKE MAPPING FOR DIRECOTRY PATH TO TRANSLATED AS URL FOR THIS REPORT?
    5- IF ANY ONE CAN GIVE ME THE FULL CODE TO RUN AND CALL SIMPLE JSP REPORT TO BE VIED IN INTERNET EXPLORER.
    THANK YOU

    Hi,
    I can't answer to all your questions, however I can tell you that:
    2) The directory where to put the report file is specifiend in a file named
    <serverName>.conf
    in the sourceDire property
    <property name="sourceDir" value="/directory/dove/mettere/i/report"/>
    that you can find under ORACLE_HOME/reports/conf
    3) The URL is
    http://<server IAS address>:<port number>/<jsp file path>/<repName>.jsp?server=<report server name>&userid=<user>/<pwd>@<DB conn string>[&<param>=<valore>[&...]]
    5) In IE you have only to set the previous URL in the address bar.
    Hope this helps you
    Bye
    Raffy

  • Are You All Able to get the Output In EXCEL Format

    Hi All,
    I have one question. Are You All Able to get the Output In EXCEL Format?? I am working on Oracle Apllication 11.5.10.2 and my XML builder is 5.0.1. Problem which i m facing is this...... Whenever i am submitting a concurrent program with format type different from PDF i could not able to view the ouput in desired format. When i am pressing view output it gives me a file in XML and when i save that file with extention 'xls' or 'rtf' then i could able to see the saved file in desired format.
    Can anyone tell me where is the problem??? Is it a bug?
    I am using microsoft world 2000 sp-3.
    Please give your valuable comments. May be your comments can solve my problem..
    Thanks
    Ravi

    Hi I got Same issue
    When I change Format to EXCEL from
    Submit request>> Option>> Format = EXCEL
    In window I am getting something HTML code and
    when I try to copy it to Browser from Tools>> Copy File in to Browser I am getting following message
    The XML page cannot be displayed
    Cannot view XML input using XSL style sheet. Please correct the error and then click the Refresh button, or try again later.
    End tag 'p' does not match the start tag 'a'. Error processing resource 'http://our url.com:8000/OA_CGI...
    <p class="c0"><a name="Text4" id="Text4"><a name="Text1_1" id="Text1_1"><span class="c1">Dept No <...
    But I can see the output when Format is PDF
    Pls suggest solution ,I am using EBS 11.5.10.2.
    Thanks
    Rahul
    Message was edited by: Rahul
    user576181

  • Problem to display a negative number in XML Publisher output in excel

    Hi All,
    I am facing problem in displaying a negative number in XML Publisher output in excel.
    My requirement is that I have to display a negative number in brackets when the output is taken in excel format. Eg: If the value is -123 then i have to display it as (123).
    I have put these brackets using a formula column in the RDF, but it is the default functionality of excel that whenever there is a number in brackets then it automatically displays that as a negative value.
    Can anyone please help me how I can display this negative number within brackets and not as a negative digit. Is there any special tag or is there any formula which can be used to convert this into text and written in the Help text of RTF template.
    This is very urgent. If someone knows please reply asap.
    Regards,
    Shruti

    This is very urgent. If someone knows please reply asap.We are all volunteers here, so no ones questions are more urgent then other ones.
    If its that urgent it would have helped if you had chosen the correct forum to ask your question BI Publisher

  • How to Download displayed output to Excel Using Bsp Application

    Hi Experts,
    please give me some idea because I am New In BSP.
    How to Download displayed output to Excel Using Bsp Application.
    If any sample code please do send me.
    In my condition I am getting data in  2-3 table view formats on one page and i want download that in Excel.
    please help me.
    Regards & Thanks,
    Yogesh

    Hi,
    This is more a question for the BSP forum.
    Anyway, as such it's realy easy since you can use HTML in order to import to Excel. All you need to do is add
    runtime->server->response->set_header_field( name = 'Contnet-Type'
    value = 'application/vnd.ms-excel' ).
    runtime->server->response->delete_header_field( name = 'Cache-Control' ).
    runtime->server->response->delete_header_field( name = 'Expires' ).
    runtime->server->response->delete_header_field( name = 'Pragma' ).
    Also check threads like
    Download BSP data into Excel
    export bsp-table to excel
    Export BSP Table to Excel
    Eddy
    PS. Reward useful answers and earn points yourself

  • How to download output into Excel with Header?

    Dear Friends,
        I want to download a my list output into excel format with <b>Column heading</b>. How will I do this?
        Another question is i want name of database table in Which SAP stores <b>DDIC object name and its property</b>, so that i can write Select * from ' ' where .... For example i have table ZABC with three fields so i need In which table it stores ZABC as table and a table in which it stores Its field name.

    Hi,
    Look at the sample code for Download into Excel.
    data: begin of excel_sum_it occurs 0,
          bukrs(80),
          belnr(80),
          gjahr(80),
          blart(80),
          budat like bkpf-budat,
          monat(80),
          cpudt like bkpf-cpudt,
          cputm like bkpf-cputm,
          usnam(80),
          tcode(80),
          xblnr(80),
          waers(80),
          dwrbtr(25),
          cwrbtr(25),
          end of excel_sum_it.
    data: begin of titles_it occurs 10,
          title(80),
    end of titles_it.
    at user-command.
      case sy-ucomm.
        when 'SUMMARY'.
          perform summary_download.
        when 'DETAIL'.
          perform detail_download.
        when others.
      endcase.
    ******Create one PF-STATUS for one push button for download.
    Before this FM you need to move your date to Execl_sum_it Internal table.
    For example here I used this table for down load.
    *&      Form  summary_download
          text
    -->  p1        text
    <--  p2        text
    form summary_download.
      data: fname like rlgrap-filename value 'Summary_Details.xls'.
      perform fill_titles.
      check not excel_sum_it[] is initial.
      call function 'DOWNLOAD'
           exporting
                filename                = fname
                filetype                = 'DAT'
           tables
                data_tab                = excel_sum_it
                fieldnames              = titles_it
           exceptions
                invalid_filesize        = 1
                invalid_table_width     = 2
                invalid_type            = 3
                no_batch                = 4
                unknown_error           = 5
                gui_refuse_filetransfer = 6
                customer_error          = 7
                others                  = 8.
      if sy-subrc ne 0.
        message e000 with text-e07.
      endif.
    endform.                    " summary_download
    *&      Form  fill_titles
          text
    -->  p1        text
    <--  p2        text
    form fill_titles.
      refresh titles_it.
      concatenate text-h06 text-h16 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h07 text-h17 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h08 text-h18 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h07 text-h19 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h09 text-h20 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h08 text-h21 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h11 text-h22 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h11 text-h23 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h12 text-h24  into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h13 text-h25 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h07 text-h26 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h13 text-h28  into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h14 text-h27 into titles_it-title
                                          separated by space.
      append titles_it.
      concatenate text-h15 text-h27 into titles_it-title
                                          separated by space.
      append titles_it.
    endform.                    " fill_titles
    ***Here in the FILL_TITLES you give you own HEADER .
    Thanks.
    If this helps you reward with points.

  • A very very very simple question

    Hi guys,
    I have a very simple question and standard but I cant find anywhere...
    I have two dateTime variables, i need to calculate difference between this dates in days, thats it.
    I tried all functions and tried without success a Java Embed task but I couldnt retrieve this objects as java.util.Date so I couldnt calculate exactly the difference in days like this pure java code:
    (dataVencimento.getTime() - dataReferencia.getTime()) / 86400000L)
    can you help me this?

    Hi Jose
    Just see if these alternate approaches works. I know there may be lot like this and you may be lucky to find out simple out of box solution itself. If you want to solve this issue and move ahead, gives these approaches a shot.
    1. Create a very simple standalone WebService that takes 2 input date elements (can be of Date type or String type. If string type, convert to date in your java code). Create a simple operation like getDaysBetween(firstDate, secondDate). In the generated webservice impl class, use the java code apis (refer earlier link for usage), and get the difference. Return this value. NOW, invoke this WebService in your BPEL Process, and pass your 2 inputs (if the bpel payload elemetns are date object or string objects of date), and get output, and then use this output in your continuing bpel process.
    2. This approach, I did a long back. When we insert any expression using XPath, in that editor window on bottom right side, we see many categories and for each category we see list of functions we can use, like for String, we can use concat etc. I vaguely remember reading somewhere, that we can add our own custom functions also in this section. So explore this direction and see if you can add your own function and then use that fucntion with your 2 input dates.
    I have not given solution to your problem, but may be these directions can help you move ahead. Or something along these lines.
    Thanks
    Ravi Jegga

  • Audigy 4 and Reciever/Amp simple question

    Hi all,
    Despite inundating myself with what is probably TOO much information from the knowledge base and forum, I could really do with an answer to what is essentially a pretty simple question....
    I recently got an Audigy 4 sound card and external io hub. Lovely bit of kit. Very nice. I only really use it to watch the odd dvd and listen to music with WMP9.
    I have a Sony multi-channel receiver/amp with 5. speakers attached.
    The amp has multiple digital connections - all either optical or co-axial. (and individual 5. analogue too)
    These currently accept optical links from my dvd player and xbox. Lovely.
    So, I would prefer to use the digital connections (nice and easy cable approach as with xbox) but I think I'll only get 2 channels when I play dvd... So what is the best way to connect the two....
    Thanks
    Glen

    The thing about that kind of digital connection is that involves compressing 5. channels into the space of 2, using proprietary encodings. This makes sense in terms of storage space savings (i.e. more room on that DVD for special features), or if bandwidth is constrained (i.e. broadcast TV can fit 5. into the space originally designed for stereo), but the only way it makes any kind of sense for getting audio a few feet from the soundcard to a receiver or speaker system is because nothing more direct ends up being available. The result is that your xbox needs a high-powered chip to make something very (and unnecessarily) complex seem simple. Your Audigy does not have that; it does not have the ability to make that kind of 5. audio for your receiver to then decode.
    Your Audigy does, in fact, have the ability to output 5. digitally, in the digital space that 6 full-range channels need, using a single cable; but your receiver, like virtually all of such, doesn't accept it. CL digital speaker systems have a "Digital DIN" input which uses it, but your receiver does not have a "Digital DIN" input, nor any equivalent of that. Even if it did, there's still a problem, because it's muted for DVD-Audio's higher-resolution formats, purely as an effort to prevent consumers access to high-resolution digital audio signals that are not encoded, for copy-protection reasons.
    Because DVD 5. soundtracks are pre-encoded on the DVD, you don't need the Audigy to be able to encode. All that is needed is to get the soundtrack from the DVD to your receiver as is. The Audigy can do that. As the other post indicates, the keys are to tell the DVD player software to output digital, and to tell the Audigy not to decode.
    Under the covers, that actually uses the Audigy as a 2-channel soundcard, and the rest of its channels are "wasted." None of its real multichannel capabilities can actually be used with a "digital" connection like that. However, if all you do is watch DVD's and listen to stereo audio files, especially if your receiver has features to simulate full surround from stereo, you may not care.
    Personally, my strong preference is for the multichannel analog hookup, although I might set up both types so I could compare the sound of the receiver's decoding with the Audigy's decoding.
    Things you can't do when using an external decoder hookup:
    . Use the soundcard to adjust volume while listening to DD/DTS multichannel soundtracks (though it's best to use the receiver to adjust volume all the time, actually).
    2. Hear any other sound sources while listening to DD/DTS multichannel soundtracks.
    3. Get multichannel audio from PC games.
    4. Get multichannel upmixing using CL's CMSS feature.
    -Dave
    [email protected]

  • Pro Tools convert to Logic Newbie some simple question for logic users

    Hey guys, I am a recent convert from Pro Tools! and There were just some simple questions I thought some of you may be able to help me out with. I am using Logic 9.1.1
    1) After I set up a multi timbral software instrument (in this case MOTU Symphonic Library) how do I set up midi channels to trigger the individual sounds in the instrument. (in pro tools I used to create a midi track then send an output of that track to that particular soft synth)
    2) How do I set up a and forgive my Pro Tools vocab but basically I want to set up a reverb channel on an aux track have it receive on a bus so I can send other tracks to that particular bus.
    Thanks for the insight and really looking forward to finally make use of all this ram! lol

    1) I have a nord stage and would like record via midi. In pro tools i would usually need to create a midi track with the output set the the nord and an audo aux track to hear it What would I do in order to record midi from my nord stage?
    To record, just select a non-audio track, hit record and play the keyboard. The notes will get recorded into a region.
    If you want to play it back to the Nord Stage as well, then it makes sense to set the Nord up as a MIDI device in your templates, so you can just add the Nord to a track and not worry about what MIDI ports it's on etc. Open the environment, create a New -> Instrument, called it "Nord Stage", set the MIDI port and MIDI channels it's on, and sav your template.
    Now, when you start a song, to sequence the Nord, you just assign the Nord instrument to a track (by for instance, right clicking on a track and choosing your Nord instrument from the list of environment obects that appears).
    2) The multi instrument trick is quick and easy its great but How would I do that manually?
    Lots of ways, look into your key commands, ther are all kinds of "Create track with same instrument", "Create track with next MIDI channel" and so on. There are too many ways to do this to quickly talk about here. In short, all tracks have an environment object assigned to them, whether it's an audio object, or a MIDI instrument object, and this determines where the data on the track goes.
    3) How do you set up midi so that it doen'ts overwrite notes when recording over them?
    Not sure I understand you here...

  • Reports 6i output in excel?

    Reports 6i output in excel?
    Hello, iv done alot of googling on this and this seems to be a common problem, but i havent came across and simple consise solution.
    Can anybody help me with this problem??
    Excel output for Reports
    thanks K

    Hi,
    there's a good overview document with a lot of detail links
    Doc ID: 209770.1
    Getting Reports Ouput to MS Excel - Techniques and References
    regards
    Rainer

  • Simple question - Playback on Cam

    hi everyone!
    A simple question if someone could help me out:
    I'd like to view the playback of edited footage from PPro on my Camera's LCD (then onto a TV...).
    When i go to the playback settings and click export there aint no camera there. I have no problem capturing, so PPro does see the camera.
    Im using a SONY HVR-V1E, Windowns XP SP2, PPro CS3, 2Gb RAM, dual pentium, etc..
    I read the manual and it says "In the playback settings dialogue box, click the desired settings." It simply says 'none' under device.
    Am I mmissing something daft?!!
    thanks guys..
    Andrew-

    There are some serious differences between DV and HDV. The real answer is to buy one of the graphics cards with component outputs, or a Matrox RTX.2 (wait until I get done testing it in a few weeks) or the Matrox Axio.
    The graphics cards are not that expensive. Look at the Matrox Parhelia APVe (I will have one on EBay soon) and the NVidia Quadro FX-560.

  • Snap function in CS4 After Effect (simple Question)

    Windows 7 Ultimate
    After Effect CS4
    Gentlemen .
    A very simple question, since i am more of a Premiere person, it seems like I am stuck with this problem and the problem is
    In Premiere its called "Snap" its a tool or function that automatically finds the connecting or starting or ending of a clip.
    For example if I have 3 channels of video and I have many cuts, by dragging the edge of a video , it tells or shows me when they are connected
    I tried to search , all I find is "Snap to Guides" which in not doing what I want .
    If you need more explanation, plz let me know , else hope you can help.
    Thanks.
    Btw. in Premiere the Snap looks like a "Magnet"

    To help you with that we need to know something about your composition settings and the settings you picked in the output module. Anything else would just be a guess. My guess is that you're using some HD footage from a non square pixel aspect ratio format and rendering to the same size. If you pick a square pixel HD format (1080 or 720 both have square pixel frame sizes in the default composition settings) and you put your HDV, DVCProHD, AVCHD, Mpeg non square footage in a square pixel comp it will fit and render out correctly.

  • SQL TASK OUTPUT IN EXCEL REPORT

    Hello all,
    I need a help ...
    I create a sql task . From sql task I call a SP and i think its work well as there is no error show.
    I need to use that output result in a excel sheet.But i can't find any variables use place in excel connection manager where i can revive that variable output.
    or there any other way to call a sp and report that output in excel.I am also try to use that variable in OLE DB Source but its not work there .
    I m using ssis 2010 version.
    Thanks for help

    I am not 100% sure what you try to overcome, but seems you only need some general guidance.
    If you are unfamiliar with SSIS start with a simple tutorial like: How to Export Query Results to Excel
    https://www.youtube.com/watch?v=wF_Bd-4yWr0
    In your case the stored procedure acts like a query.
    Good Luck!
    Arthur My Blog

  • Simple Question - what are workbooks/sheets?

    I just have a simple question. What are workbooks/worksheets? I read this words in several whitepapers but cant get an answer. I dont have Oracle Discoverer, i just have to make an simple overview of this product for school. Please help me, it stresses me, dont have much time left :( thx

    I just have a simple question. What are workbooks/worksheets? I read this words in several whitepapers but cant get an answer. I dont have Oracle Discoverer, i just have to make an simple overview of this product for school. Please help me, it stresses me, dont have much time left :( thx If you have use excel and know what's an excel wokbook and excel sheet, then you know the answer. If you Don't, then a workbook it's a sheet container. And sheets are each of the reports/queries that you have in a workbook.
    And from the Discoverer manual, in the Glossary:
    Workbook: "One or more sheets created and saved together. Each sheet is displayed in a sepa-rate tab in the workbook."
    sheet : "A tab in the workbook window. A sheet displays the results of one or more queries."
    Hope this helps

Maybe you are looking for

  • Advantages of having SAP Enterprise Portal

    Hi All, I really appreciate your help on the below please; I  have 7 years exp in SAP ABAP;             2 years in SAP PI Company is about to give me SAP Enterprise Portal training for the next project; Do you think it is worth for me to have SAP Ent

  • "Reveal In Project" opens new window

    Just wondering if there is a way to execute the "reveal in project" command without Premiere opening a new window or panel. I would like to have the clip be revealed in the project window I already have open. Using Premiere Pro CS6.

  • No facility, or button, to create to Slideshow PSE 10 when using iMac

    Having recentl changed from Windows PC to iMac, and thus purchased Photoshop Elements 10, I now find that I cannot make a slideshow because there is no "Create Slideshow button" as  shown on tutorials.  Is this because it is an iMac? or am I missing

  • Nikon's NEF i Photoshop Elements 3.0

    I have problems with Nikon's NEF, I can't open them in PSE 3.0, error is something with the translater the program say's. I have tryed to reinstall PSE 3.0, thats don't help. I have thought of updating to PSE 8.0, should that solve the problem.

  • Show a Flash animation frame when opening a Powerpoint presentation

    Hi all, I have a Powerpoint presentation that embeds a Flash animation (swf file). I use Powerpoint 2003 and a Flash 9 animation. The problem is that when the presentation is opened, no image (in fact a frame of the Flash animation) appears on the sl