Transfer ABAP report to external database without any middleware

Dear All
We have a requirement wherein we have to transfer ABAP report to external database without any middle-ware,our database is DB6 and the target/external database is ORACLE,kindly let us know how to go about??
Thanks in Advance
Arun

Hi,
What do you mean by "transfer ABAP report to external database " ?
Regards,
Olivier

Similar Messages

  • Can we store forms and reports in 10g database in any format

    Can we store forms and reports in 10g database in any format

    Hi,
    Why do you want to store the forms and reports in database? Do you mean something like SCM repository for versioning?
    I don't find any use in storing the forms and reports in database.
    -Arun

  • Apex 3.0: export a report as .csv file without any Enclosed By character?

    In Apex "Report Attributes page/Report Export" is possible to define the Enclosed By field.
    The default Enclosed By by characters are a double quotation marks (" ").
    Is there a way to export the report as .csv file without any Enclosed By character?
    Example line format:
    a) using default Enclosed By
    "value1";"value2";"value3"
    b) using ('') as Enclosed By
    'value1';'value2';'value3'
    c) using blank space as Enclosed By
    value1 ; value2 ; value
    d) without any Enclosed By character
    value1;value2;value3
    What can we do in Apex to export a report as .csv file with the line format example d)?
    Thanks for your help.

    Hi,
    There is no Out of the box feature in Apex to achieve this functionality. But what you can do is write a page process to generate the CSV that you want.
    For this what I will do is on the first page where you press the Button it will call a PL/SQL page process which actually generates the csv. You can keep the existing report only for display purposes. Find the below process which generate the csv that you require.
    begin
    -- Set the MIME type
    owa_util.mime_header( 'application/octet', FALSE );
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="filename.csv"');
    -- Close the HTTP Header
    owa_util.http_header_close;
    htp.prn('columnHeader1,ColumnHeader2,ColumnHeader3'||chr(13));
    -- Loop through all rows
    for x in (
    Select column1,column2,column3 from table;
    loop
    -- Print out a portion of a row,
    -- separated by commas and ended by a CR
    htp.prn(x."column1"||','||x."column2"||','||x."column3"||chr(13));
    end loop;
    -- Send an error code so that the
    -- rest of the HTML does not render
    htmldb_application.g_unrecoverable_error := true; --You can leave out this line if you still want to display the existing HTML report.
    end;
    This will show a download box, so you can download the csv file. The page process should be called before header and the condition should be the button press.

  • Third Party Application Integration with Oracle EBS Without any middleware

    Hi,
    Please give suggestions about the Third Party Application Integration with Oracle EBS
    Without any middleware. Can we achieve this?
    Thank you,
    Muhammad Nasir
    Edited by: User129 on Feb 4, 2013 3:45 AM

    Muhammad,
    You may get better response in Oracle EBS forum -
    General EBS Discussion
    Regards,
    Anuj

  • ABAP Report Program Logical Database PNP

    I have a ABAP program using the logical database PNP. The report is config to run on MSS using EP. I have added code to capture the Org Unit when it is pass to the program from MSS.  My issue is how do i capture the org unit value that is passed to the program.   I have added code to capture field pnporgeh  in the START OF SELECTION event.   This works great if you are running the program from R3, but none of my edit checking against field pnporgeh works.

    Hi John,
    I am also having same trouble where in i have added a new custom(Z) report in the MSS ->My Staff -> Reporting under report category -> Time Management (MSS). I am not able to find how the value of org unit which is selected on portal screen is passed to report in R/3 which is using PNP logical db.
    I tested in debugging but selection screen parameter PNPORGEH contains nothing.
    Many Thanks in advance for the help.
    Edited by: Ankit Kashyap on Nov 17, 2010 12:40 PM

  • How to connect java with database without any dsn.

    is there any way to connect java with database with out creating any dsn..like we do in ado in vb by providing provider.

    Sure use a type 4 driver. No DSN.

  • FM to send text message external email (without any attachments)

    Hi Guys,
    Can somebody tell me the function module and share the code to send simple text message email to external email.
    Thanks,
    mini

    U can use FM SO_NEW_DOCUMENT_ATT_SEND_API1. For details check this sample code.
    report zmail.
    Parameters
    PARAMETERS: SUB LIKE SOMLRECI1-RECEIVER
                  DEFAULT 'Subject line'.
    PARAMETERS: EAD LIKE SOMLRECI1-RECEIVER." Mail id
    PARAMETERS: L01 LIKE SOLISTI1-LINE
                  DEFAULT 'Body text'.
    PARAMETERS: L02 LIKE SOLISTI1-LINE.
    PARAMETERS: L03 LIKE SOLISTI1-LINE.
    PARAMETERS: L04 LIKE SOLISTI1-LINE.
    PARAMETERS: L05 LIKE SOLISTI1-LINE.
    PARAMETERS: L06 LIKE SOLISTI1-LINE.
    PARAMETERS: L07 LIKE SOLISTI1-LINE.
    PARAMETERS: L08 LIKE SOLISTI1-LINE.
    PARAMETERS: L09 LIKE SOLISTI1-LINE.
    PARAMETERS: L10 LIKE SOLISTI1-LINE.
    Macro
    DEFINE M_LINEADD.
    IF NOT &1 IS INITIAL.
      TAB = &1. APPEND TAB.
    ENDIF.
    END-OF-DEFINITION.
    Variables
    DATA: BEGIN OF TAB OCCURS 10.
    DATA:   LINE(40).
    DATA: END OF TAB.
    DATA: RC LIKE SY-SUBRC.
    Main program
    START-OF-SELECTION.
      REFRESH TAB.
      M_LINEADD L01.
      M_LINEADD L02.
      M_LINEADD L03.
      M_LINEADD L04.
      M_LINEADD L05.
      M_LINEADD L06.
      M_LINEADD L07.
      M_LINEADD L08.
      M_LINEADD L09.
      M_LINEADD L10.
      PERFORM Z_SEND_EMAIL TABLES TAB USING EAD SUB RC.
      IF RC IS INITIAL.
        WRITE: / 'Your e-mail has been sent successfully.'.
      ELSE.
        WRITE: / 'Your attempt to send an e-mail failed.'.
      ENDIF.
          FORM Z_SEND_EMAIL                                             *
    -->  ITAB                                                          *
    -->  EMAILADDRESS                                                  *
    -->  SUBJECTLINE                                                   *
    -->  RETURNCODE                                                    *
    FORM Z_SEND_EMAIL TABLES ITAB
                      USING  EMAILADDRESS TYPE C
                             SUBJECTLINE  TYPE C
                             RETURNCODE   LIKE SY-SUBRC.
      DATA: DOCUMENT LIKE SODOCCHGI1.
      DATA: PACKLIST LIKE SOPCKLSTI1     OCCURS 0 WITH HEADER LINE.
      DATA: CONTENTS LIKE SOLISTI1       OCCURS 0 WITH HEADER LINE.
      DATA: RECVLIST LIKE SOMLRECI1      OCCURS 0 WITH HEADER LINE.
      DATA: FIELDLEN TYPE P.
      DATA: TABLINES TYPE P.
    Initialization
      CLEAR: CONTENTS, DOCUMENT, PACKLIST, RECVLIST.
      REFRESH: CONTENTS, PACKLIST, RECVLIST.
      RETURNCODE = 12.
    Contents
      CONCATENATE
        'The following message has been sent from SAP'
        SY-SYSID
        SY-MANDT
        '(Do not reply to this message):'
          INTO CONTENTS SEPARATED BY ' '.
      APPEND CONTENTS.
      CONTENTS = SY-ULINE(40).
      APPEND CONTENTS.
      LOOP AT ITAB.
        CONTENTS = ITAB.
        APPEND CONTENTS.
      ENDLOOP.
      CONTENTS = SY-ULINE(40).
      APPEND CONTENTS.
    Document
      DOCUMENT-OBJ_NAME = 'EMAIL'.
      DOCUMENT-OBJ_DESCR = SUBJECTLINE.
      DOCUMENT-OBJ_LANGU = SY-LANGU.
      DOCUMENT-OBJ_EXPDAT = SY-DATUM.
      DOCUMENT-SENSITIVTY = 'F'.
      DOCUMENT-OBJ_PRIO = 9.
      DOCUMENT-NO_CHANGE = 'X'.
      DOCUMENT-PRIORITY = 9.
      DOCUMENT-EXPIRY_DAT = SY-DATUM.
      DESCRIBE FIELD CONTENTS-LINE LENGTH FIELDLEN.
      DESCRIBE TABLE CONTENTS LINES TABLINES.
      MULTIPLY FIELDLEN BY TABLINES.
      DOCUMENT-DOC_SIZE = FIELDLEN.
    Packing list
      PACKLIST-TRANSF_BIN = SPACE.
      PACKLIST-HEAD_START = 1.
      PACKLIST-HEAD_NUM = 0.
      PACKLIST-BODY_START = 1.
      DESCRIBE TABLE CONTENTS LINES PACKLIST-BODY_NUM.
      PACKLIST-DOC_TYPE = 'RAW'.
      APPEND PACKLIST.
    Receiver list
      RECVLIST-RECEIVER = EMAILADDRESS.
      RECVLIST-REC_TYPE = 'U'.
      RECVLIST-COM_TYPE = 'INT'.
      RECVLIST-NOTIF_DEL = 'X'.
      RECVLIST-NOTIF_NDEL = 'X'.
      APPEND RECVLIST.
    Call the mail function
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = DOCUMENT
                PUT_IN_OUTBOX              = 'X'
           TABLES
                PACKING_LIST               = PACKLIST
                CONTENTS_TXT               = CONTENTS
                RECEIVERS                  = RECVLIST
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                DOCUMENT_TYPE_NOT_EXIST    = 3
                OPERATION_NO_AUTHORIZATION = 4
                PARAMETER_ERROR            = 5
                X_ERROR                    = 6
                ENQUEUE_ERROR              = 7
                OTHERS                     = 8.
      RETURNCODE = SY-SUBRC.
    ENDFORM.

  • Is it possible to create reports in 1 month without any experience?

    I'm on a project where we need to make some custom reports in the span of about a month. I'm trying to figure out what is feasible for a person, with no reporting background but plenty of SQL experience,to handle in that time frame.
    The format of all of the reports would be basically the same. We want a histogram next to a window where we can enter in some information, and the histogram would change dynamically. In another frame, we would have access to detailed data (ability to view the actual records).
    Thanks,
    Samir Patodia

    Hi Samir,
    You can look at the Building Reports manual for basic information on how to build reports:
    http://otn.oracle.com/documentation/reports.html
    For your particular case, output to portal may be appropriate. You may want to look at the Reports : Portal integration viewlets:
    http://otn.oracle.com/products/reports/htdocs/getstart/demonstrations/index.html
    At the same time, since you want end-user reporting and dynamic charts, you may want to look at the functionality offered by another Oracle product - Discoverer
    http://otn.oracle.com/products/discoverer/index.html
    Navneet.

  • How to consume web service without any middleware from abap RFC

    Hi Experts,
    I have a  RFC and i need to send the data to a web service.
    So, I came to know that i need to create a proy for that.
    While creating proxy what shd i choose,
    URL  or
    http  or Local file
    or Enterprose service repositort
    please give some steps.
    Thnak You.

    Hi,
    You need to download the WSDL file on your local desktop and choose the Local file option.
    Regards,
    Vikas

  • Sync Database without any latency using SQLSERVER 2012 R2

    Hi Team:
    With Regards, Santhosh Wilson

    There is always going to be a positive value for latency(time) between two servers A and B, whether they are next to one another in a rack in the data centre or in different geographic locations.
    What is the latency threshold for your requirements?
    Also, do you require bi-directional updates? If so then Replication is the only out of the box feature that will meet this need.
    John Sansom | SQL Server MCM
    Blog |
    Twitter | LinkedIn |
    SQL Consulting

  • ABAP Query Need to Convert ABAP Report

    Dear All,
    We have 3 queries which are linked to service management, now, user wants to consolidated one ABAP report with feilds of 3 queries, which consist of total 100 feilds. he want provision of downloading each single query (in ABAP report).
    Is ther anyway whee we can pass all the 3 quries values in internal tables and pass to ABAP report?? is there any better way so that we will reduce the writing of big logic for 100 feilds??
    Thanks in advance.
    Regards
    Ramki

    Hi ,
    you can do this way..
    for every query there is a
    *     Validating Variant name for Query Name
          CONCATENATE '%' <query group> '%' <Query name > '%' INTO w_rname.
          SELECT SINGLE * FROM varid WHERE report LIKE w_rname
                                     AND   variant EQ p_variant.
          IF sy-subrc NE 0.
         ENDIF.
    *   Submit report in background and creating spool
      SUBMIT (w_rname) USING SELECTION-SET p_variant
          TO SAP-SPOOL WITHOUT SPOOL DYNPRO
          SPOOL PARAMETERS wa_pri_params AND RETURN.
      COMMIT WORK AND WAIT.
    "create spool like above for three query and and capture in Spool and format the three spools
    "into one internal table and form one report.
    Prabhudas

  • How can I change the location / folder for the database without doing it for every single photo?

    I merged my Database from another mb. The photots are stored on the mb and on an external hdd.
    Now I want to change all photos to the external hdd.
    How can I do this without doing it photo by photo?

    What I have done:
    1. merge database to another computer
    2. the photos are located on a local hdd of the old mb
    3. copied all the photos to an external hdd
    Now I want to:
    relocate all the photos to the external hdd without any connection to hdd of the old mb
    Is this possible in the way you mentioned it?

  • Persistence doubts - External Database

    Hello all,
    I have installed a trial version of SAP NW with the sap db as the was database but I need to design entity services that access an external oracle database. Thats what I need to do:
    - My entity services access directly an existent schemma in my external database without to use web services/RFCs. Is it possible ?
    Thanks in advance,

    Did you find a solution to this? We have the issue. Any help would be appreciated.

  • Running ABAP Report in background

    Hello,
    I am getting timed out error when I execute my report program.
    I believd running the report can do it for now.
    Can you please tell me detils on  how I should proceed on dev, qa and production environment.
    Regards,
    Sameer.

    Hello Sameer,
    You need to schedule the ABAP program in SM36 transaction.
    Following are the steps:
    1. Fill general data like Job Name, Job class and click on step button from application menu
    2. Fill ABAP program details on this screen like ABAP Report Name, Variant Name (If any) and save it.
    3. Go to SM37 transaction (Background Job monitor)
    4. On initial screen newly created job will be filtered by user name or using job name.
    5. it will be listed in job queue with Scheduled status.
    6. Select the Job from listing and click on Release button from application toolbar
    7. depending on your requirement you can release job immediately and it will start running as an when background wp is allocated to this job.
    8. Or else you can schedule it with some frequency using other options like Date/Time, or using other events to trigger it.
    Check if this can help.
    Thanks,
    Augustin.

  • Recover database without controlfile and redo logs

    Hi guys,
    I am doing a testing with an Oracle Database 11.1.0.7.0, I want recover a database in this scenario without using RMAN:
    -All controlfiles are missing
    -All redo logs are missing
    -I have a Backup Controlfile To Trace Resetlogs (bkp_controlfile.sql)
    -The database is in archivelog mode
    -The database was created with OMF (Oracle Managed Files)
    So I have done this steps:
    1) When the database was opened I rename all controlfiles and all redo logs
    2) Shutdown Abort
    3) I run the bkp_controlfile.sql, here I have a problem...
    The database put in NOMOUNT, the controlfile was created and started the RECOVER DATABASE USING BACKUP CONTROLFILE, but when run ALTER DATABASE OPEN RESETLOGS; appear this:
    ERROR at line 1:
    ORA-01113: file 1 needs media recovery
    ORA-01110: data file 1:
    '/u02/app/oracle/oradata/OMF/datafile/o1_mf_system_68hzcb2z_.dbf'I wasn´t expect this because I don´t want recover a datafile, I only want open with resetlogs.
    Any suggestion to help me?
    Thanks a lot.

    Excelent! Thanks for your answers Markus and Hemant.
    In conclusion...
    - If we have all redo logs availables we can recreate the control file and recover the database without any problems using backup controlfile to trace noresetlogs*.
    - if we haven´t all redo logs availables, there are 2 situations:
    1) If the database shutdown properly:_ We will be able to open the database using recover database using backup controlfile until cancel*.
    2) If the database doesn´t shutdown properly:_ We won´t be able to open the database with only a backup controlfile to trace.
    With all this I close this thread. Was very good experience.
    If anyone would add something will be welcome.
    Thanks for all
    I wish add the results of one of my tests: if I did all the steps in only one session of sqlplus I can shutdown properly the database, but if do the shutdown immediate* in a new session I can´t shutdown properly the database. Here I post the output:
    ALL IN ONE SESSION*
    [oracle@prueba ~]$ $ORACLE_HOME/bin/sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed Sep 22 13:58:10 2010
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    System altered.
    SQL> SHUTDOWN IMMEDIATE
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> STARTUP
    ORACLE instance started.
    Total System Global Area  631914496 bytes
    Fixed Size                  1315224 bytes
    Variable Size             377491048 bytes
    Database Buffers          247463936 bytes
    Redo Buffers                5644288 bytes
    Database mounted.
    Database opened.
    SQL> SHUTDOWN IMMEDIATE
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> @/home/oracle/bkp_controlfile.sql
    ORACLE instance started.
    Total System Global Area  631914496 bytes
    Fixed Size                  1315224 bytes
    Variable Size             377491048 bytes
    Database Buffers          247463936 bytes
    Redo Buffers                5644288 bytes
    Control file created.
    SQL> RECOVER DATABASE USING BACKUP CONTROLFILE UNTIL CANCEL;
    ORA-00279: change 398764 generated at 09/22/2010 14:09:49 needed for thread 1
    ORA-00289: suggestion :
    /u02/app/oracle/flash_recovery_area/OMF/archivelog/2010_09_22/o1_mf_1_40_%u_.arc
    ORA-00280: change 398764 for thread 1 is in sequence #40
    Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
    CANCEL
    Media recovery cancelled.
    SQL> ALTER DATABASE OPEN RESETLOGS;
    Database altered.
    SQL> ALTER TABLESPACE TEMP ADD TEMPFILE '/u02/app/oracle/oradata/OMF/datafile/o1_mf_temp_69n3z3vv_.tmp' SIZE 50331648  REUSE AUTOEXTEND ON NEXT 655360  MAXSIZE 32767M;
    Tablespace altered.
    SQL>
    ALL IN DIFERENT SESSIONS*
    [oracle@prueba ~]$ $ORACLE_HOME/bin/sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed Sep 22 13:55:47 2010
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE AS '/home/oracle/bkp_controlfile.sql' RESETLOGS;
    Database altered.
    SQL> SHUTDOWN IMMEDIATE
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> STARTUP MOUNT
    ORACLE instance started.
    Total System Global Area  631914496 bytes
    Fixed Size                  1315224 bytes
    Variable Size             377491048 bytes
    Database Buffers          247463936 bytes
    Redo Buffers                5644288 bytes
    Database mounted.
    SQL> ALTER DATABASE ARCHIVELOG;
    Database altered.
    SQL> ALTER DATABASE OPEN;
    Database altered.
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    System altered.
    SQL> ALTER SYSTEM SWITCH LOGFILE;
    System altered.
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@prueba ~]$ $ORACLE_HOME/bin/sqlplus / as sysdba
    SQL*Plus: Release 11.1.0.7.0 - Production on Wed Sep 22 13:58:10 2010
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> SHUTDOWN IMMEDIATE
    ORA-00210: cannot open the specified control file
    ORA-00202: control file: '/u02/app/oracle/oradata/OMF/controlfile/o1_mf_69n3x6n5_.ctl'
    ORA-27041: unable to open file
    Linux Error: 2: No such file or directory
    Additional information: 3

Maybe you are looking for

  • How do I get to see all my events on my MacOS X Calendar but not let anyone I share with see every event?

    In iPad's Calendar application when I select "Calendars" it shows a list of all my email accounts and allows me to assign any event to any email account not just iCloud. How do I get the MacOS X Calendar to do the same? I share my MacOS X Calendar wi

  • How to Sign a native DMG installer?

    Hi, We have developed an application using AIR (for desktop) and have used some native processes. Hence, to distribute the application we are creating native installer for PC and MAC. We were able to create a native installer for PC and also digitall

  • Address Book just disappeared like that

    I realize lost address books is a consistent topic. A number of apps were open: Photoshop, Word, Safari, iCal and my Address Book. I went away for 40 minutes, came back and it was necessary to Force Quit all the programs. Address Book could be seen w

  • @SecondaryTable...when and why?

    Hello, While reading an article about EJB3.0, I couldn't realise what the author ment with this sentence:"+EJB3 JPA depends heavily on defaults and hence, if you don't define the table mapping, the persistence provider will assume that the entity is

  • Technology-Specific Customized Operating Systems

    I am in the health care & biotech field. What i find interesting is the huge price tags of data analysis software & applications, or the wimpy computing systems they might attach with said applications. Why doesn't someone market a Mac mini (clustere