BIP Reports to FTP server

Dear ALL ,
Here I am facing an issue in BIP that is when I am trying to schedule the BI publisher reports to FTP server it is not going to FTP server and It is not giving an error detail in the Logs .
It is  showing as problem in the report Job History .
If any body expertise on  schduling the  BI publisher repoprts to FTP server please suggest me where I am missing the option and what could be the reason .
Thanks

What kind of server you are trying to use this Protocol?
Are you able to ping the server from where BI is installed?

Similar Messages

  • Error when scheduling WEBI report to FTP server

    Hi
    We are getting error "destination directory error. CrystalEnterprise.Ftp: 550 Requested action not taken" while scheduling WEBI report to FTP server.
    Any help would be appreciated
    Regards,
    Anisa

    Hi All,
    I want a run my report once by scheduling, so i provide a time interval for scheduling a report
    start date/ time : 11:38:AM 10/30/2011
    end date/time : 11:43:AM 10/30/2011
    after completion of end time....report is failed and fetching an error
    Error : Object could not be scheduled within the specified time Interval
    Any solution for resolving this error

  • How configure sending CDR reporting via ftp server

    hi
    i want to send the CDR reporting automaticly to FTP billing server each 1H.
    i have add the billing server
    i don  t know how or when can i configure the automatique sending CDR report to this server
    Thanks for your help

    You'll need a SFTP server instead of FTP.
    For instructions, please see here:
    http://www.cisco.com/en/US/docs/voice_ip_comm/cucm/service/7_1_2/admin/sacdrm.html
    Thanks!
    Michael
    http://htluo.blogspot.com

  • Scheduling Reports to FTP

    Hi,
    I have a requirement of scheduling reports to a FTP. I checked venkat's blog he wrote on how to schedule reports to a drive but iam confused how to schedule reports to FTP server. Its possible in bipublisher but iam looking the same to implement in answer's
    Thanks,
    Phani.

    Hi,
    Check this....Its in BIP..Might clear you doubts how to implement..http://gerardnico.com/wiki/dat/obiee/delivers_advanced_publication
    Regarding deliver dashboards via FTP(No its not possible)...Check this....General OBIEE Questions - Scheduling and Exporting!
    Regards,
    Srikanth
    Edited by: Srikanth Mandadi on Oct 10, 2010 9:17 AM

  • Integration of BIP Report file bursting with Unix FTP directory(using IBot)

    We have a requirement for dynamically creating the folder in FTP server, which gets the bursted file when a BIP report is executed.
    We have used the following approach:
    Created a IBot with Custom Java Program which creates a folder dynamically in FTP, now we are facing the problem to integrate this IBot with the BIP report file bursting.
    Can anyone suggest how to overcome this issue or is there any alternative approach to achieve the above requirement.
    Any help would be appreciated.

    .

  • How to create an internal table in a Report from File of FTP Server.

    Hi All,
    I want to create an internal table in a Report program. But the problem is I have to download two latest files from FTP server.
    Now, based in those file I have to design internal tables in current program. The problem is the program from which these files are being generated has options to display some fields in the output. Hence, the columns of these files becomes dynamic due to which I am not able to design the internal table in my current program...Please Help.
    Regards & Thanks.
    Prashant.

    Hi,
    Or you can use the RTTS classes...
    Plenty of examples over here.
    one external link: http://help-abap.zevolving.com/2008/09/dynamic-internal-table-creation/
    Kr,
    Manu.

  • Automate a BI report to flat file on to a FTP server.

    Hello all,
    I have an same issue like the following thread. After extract CSV file successfully to the directory, but unable to find the file. Any thought?
    Automate a BI report to flat file on to a FTP server.
    Regards!

    Need to analyze the business purpose ,however heres my take on it..
    You can utilize 3 options to export query result on to the SAP directories as below and map that path to your FTP server.
    1. Transaction RSCRM_BAPI (still valid in nw2004s)
    2. Transaction RSANWB (analytical Process designer)
    3. Information Broadcasting - KM folder has to be mapped as a file system location.
    Hope it Helps
    Chetan
    @CP..

  • Exporting BIP report to an specific internal server folder

    Hi Gurus,
           I am novice in BI Publisher and I'd like to know if the following feature is possible at BIP :
           Is it possible to generate an output BIP report in a specific internal folder on my OBIEE server ? I mean...Instead of the user save the BIP report in your desktop, it would be saved (in background) in a specific folder in the application server (Eg.; /reports) ?
           I have OBIEE 11.1.1.7.1 in a Linux box withe Oracle DB 11g.
    Thanks in advance
    regards...

    Hi,
    What websphere application are you using? Can you provide some background on how this one works?
    Thanks.

  • How to export an eloqua report to a (ftp) server and schedule this export

    I would like to export an eloqua report to a (ftp) server and schedule this export. I want to pick this report up by another tool like Qlikview.
    Liesbeth

    if it is something to do with having report admin rights is there a way to still export report data without these admin rights? is it possible to just export report data as activity data in the normal import/export section within the setup menu? is there a problem using filezilla client and oracle eloqua together for this?

  • Report to be sent to FTP server

    Hi friends,
    I have a requirement where i have to send the report output(downloaded into file) to FTP server from where it will be send to the users through sms..
    please, guide me as how to send it to ftp server
    thanks,
    -pankaj

    Dear ,
    when i am trying to send data in internal table of type charterter declared below(i.e iresult) to FTP SERVER program giving the DATA ERROR = 3 when 'FTP_R3_TO_SERVER'  fuction module is exected and file it not creating in ftp server . plz help me pointS must be given .
    the FTP_CONNECT ,FTP_COMMAND function modules are executing properly giving handle 1 and its sy-subrc = 0 .
    when 'FTP_R3_TO_SERVER'  is executed it is giving SY-SUBRC = 3 ( DATA ERROR ) i.e it is failing to out internal table data in FTP SERVER . PLZ HIDE ME ITS URGENT .
    THIS IS CODE I USED .
      DATA :     BEGIN OF iresult OCCURS 5,
            rec(450),
           END OF iresult,
      DATA  :
              dest LIKE rfcdes-rfcdest VALUE 'SAPFTP',
              compress TYPE c VALUE 'N',
              host(64) TYPE c.
      DATA: hdl TYPE i.
      DATA: BEGIN OF result OCCURS 0,
            line(100) TYPE c,
            END OF result.
      DATA : key TYPE i VALUE 26101957,
             dstlen TYPE i,
             blob_length TYPE i.
      host = p_host .
      DESCRIBE FIELD p_password LENGTH dstlen IN CHARACTER MODE.
      CALL 'AB_RFC_X_SCRAMBLE_STRING'
        ID 'SOURCE'      FIELD p_password    ID 'KEY'         FIELD key
        ID 'SCR'         FIELD 'X'    ID 'DESTINATION' FIELD p_password
        ID 'DSTLEN'      FIELD dstlen.
      CALL FUNCTION 'FTP_CONNECT'
        EXPORTING
          user            = p_user
          password        = p_password
          host            = host
          rfc_destination = dest
        IMPORTING
          handle          = hdl
        EXCEPTIONS
          not_connected   = 1
          OTHERS          = 2.
      IF sy-subrc = 0.
        CONCATENATE 'cd' ftppath INTO ftppath SEPARATED BY space .
        CALL FUNCTION 'FTP_COMMAND'
          EXPORTING
            handle        = hdl
            command       = ftppath
          TABLES
            data          = result
          EXCEPTIONS
            command_error = 1
            tcpip_error   = 2.
        IF sy-subrc = 0 .
          CLEAR result .
          REFRESH result .
          CALL FUNCTION 'FTP_COMMAND'
            EXPORTING
              handle        = hdl
              command       = 'ascii'
            TABLES
              data          = result
            EXCEPTIONS
              command_error = 1
              tcpip_error   = 2.
          IF sy-subrc = 0 .
            DESCRIBE TABLE iresult LINES lines.
            blob_length =  lines * width .
            clear : lines.
    Delete the existing file
         CONCATENATE 'del' ftpfile INTO delfile SEPARATED BY SPACE.
          CALL FUNCTION 'FTP_COMMAND'
            EXPORTING
              handle        = hdl
              command       = delfile
            TABLES
              data          = result
            EXCEPTIONS
              command_error = 1
              tcpip_error   = 2.
    *End of deleting the existing file
            CALL FUNCTION 'FTP_R3_TO_SERVER'
              EXPORTING
                handle        = hdl
                fname         = ftpfile
                blob_length   = blob_length
              TABLES
                blob          = iresult
              EXCEPTIONS
                TCPIP_ERROR   = 1
                COMMAND_ERROR = 2
                DATA_ERROR    = 3
                OTHERS        = 4.
            IF sy-subrc <> 0 .
              WRITE 'Error in writing file to ftp' .
            ELSE.
              WRITE 'File downloaded on the ftp server successfully'.
            ENDIF.
          ENDIF.
        ELSE.
          WRITE : 'Path on ftp not found : ' , ftppath .
        ENDIF.
        CALL FUNCTION 'FTP_DISCONNECT'
          EXPORTING
            handle = hdl.
        CALL FUNCTION 'RFC_CONNECTION_CLOSE'
          EXPORTING
            destination = 'SAPFTP'
          EXCEPTIONS
            OTHERS      = 1.
      ELSE.
        WRITE 'Could not connect to ftp' .
      ENDIF.
    ENDFORM.                    " FTPFINANCEACCESS_DOWNLOAD
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name = 'PASSWORD'.
          screen-invisible = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.

  • Automate a report execution & save results as a flat file on FTP server

    Hello Gurus
    I am working on BW 3.5 version. I want to Automate a report execution, and save the results of the same as a flat file on a FTP server.---- (So that another program could look it up and run few processes at it's end). pls give me solution in step-by-step format. Plss help.....

    Hi Priyadarshini,
    You can Automate a Report Execution and Save the results as a flat file by creating a Query Extract and by scheduling  the Query Extractor using the T-Code RSCRM_BAPI.
    Steps:
    1. Goto RSCRM_BAPI T-Code
    2. Select the Quey from the list
    3. Click on Query Extract
    4. Create a Query Extractor and give the file name and Path.
    5. Schedule the Query Extractor.
    Hope it helps.
    Regards,
    -Vijay

  • Sending output of Reports to FTP  in 10g R2 Application Server

    Hi All,
    Hope every one would have seen these lines in reportsserver.conf file in $ORACLE_HOME/reports/conf file.
    *" <destination destype="ftp" class="oracle.reports.plugin.destination.ftp.DesFTP">*
    *<!--property name="proxy" value="proxyinfo.xml"/-->*
    *</destination> "*
    Is the above lines really meant for spooling the reports output and FTP the same to another PC.
    I have a requirement of spooling the reports output to clients PC. We are running reports server in Linux, as the reports directly gets saved into the server folder. We want the file to ported to a windows PC automatically. Though we have accomplished this by configuring SAMBA, it requires a additional configuration on the server side.
    Seeing the above lines in reports server conf file i thought many in forum would have given a try and wanted to know the feedback on the same whether my requirement can be met with this, if ORACLE by itself gives that feature to us. Please share your thoughts and appreciate participation on this good topic.
    Thanks

    Hello,
    Yes, these lines are related to the ftp destination :
    http://download-uk.oracle.com/docs/cd/B14099_17/bi.1012/b14048/pbr_dest.htm#i1005607
    Of course, a ftp server must run on the machine where you want to "send" the reports output...
    Regards

  • How to download  n  files  to FTP server in background using single report?

    Hi all,
    I have one requriement where i have to download 7 different text ( *.txt ) files to FTP server weekly using single program in background mode.
    I have populated all the 7 internal tables with their corresponding data.  But i dont know how to proceed further.
    Please help me out .....
    Thanks in advance..

    hi,
    U can store the Internal table name and File name in an internal table.
    Then loop at that table and call function called 'GUI_DOWNLOAD' inside that loop.
    Rgds,
    Sanjeet

  • InetFTPLogin() always report "can not connect FTP server"

    I have setting up the FTP server in the Windows 7 system, it not use any password and  account. I can use the browser to view the result. But if use InetFTPLogin("ftp://127.0.0.1", " ", "") to login the server, it always return -9, means cannot connect the FTP server. what is wrong?
    David

    Hi David,
    I'm not sure about it but maybe you should try it :
    InetFTPLogin("127.0.0.1" , " ", " ");
    (without "ftp://")
    J.

  • BIP reports - XMLP Report Server to generate XML from Multiple DB Schema

    Dear Experts,
    IHAC who want's to generate a BIP report from two exactly same tables stored in different schema.
    Table in first schema is used for online transactions and the table in second schema is used for archived transactions. For few users , they want the report data to be fetched from both the tables.
    How can this be achieved? Is this possible via configuring EAI Siebel Adapter ?
    Look forward to your inputs..
    Thanks,

    IHAC who want's to generate a BIP report from two exactly same tables stored in different schema.
    How can this be achieved? Is this possible via configuring EAI Siebel Adapter ?IMHO the easiest way is:
    say you have table A in schema A and table B in schema B
    then you can create synonym (say tA_sA) and grant to user B
    so then you create report by user B you can use table A from schema A by user B

Maybe you are looking for