Bursting and Delivery on BIP EE

Hello all,
I'm using the BIP EE (standalone) version 10.1.3.4.1 (build:1145).
I'm trying to create the 2 pdf files and upload them to the FTP directory '/inbox/'.
the Data model query:
select 'SUPPLIER1' supplier from dual
union
select 'SUPPLIER2' supplier from dual
the Bursting query:
SELECT SUPPLIER KEY,
'dev_bur' TEMPLATE,
'RTF' TEMPLATE_FORMAT,
'en-US' LOCALE,
'PDF' OUTPUT_FORMAT,
'FTP' DEL_CHANNEL,
'ftp.my-server.com' PARAMETER1,
'dev' PARAMETER2,
'123' PARAMETER3,
'inbox/' PARAMETER4,
'tsflog_'|| SUPPLIER ||'.pdf' PARAMETER5
FROM (select 'SUPPLIER1' supplier from dual
union
select 'SUPPLIER2' supplier from dual)
I'm using the delivery and bursting from the "Schedule" button and the Run emmidiatelly option.
Does any one have a successfully pdf file uploaded to the FTP?
Can any one suggest me where is the problem?
The delivery and Burst return with the following errors:
LOG Part:
[043010_141400782][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :ftp
[043010_141400794][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
ERROR:
[043010_141400795][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] java.lang.NullPointerException
     at oracle.apps.xdo.batch.DeliveryHelper.getFtpDeliveryRequest(Unknown Source)
     at oracle.apps.xdo.batch.DeliveryHelper.addRequest(Unknown Source)
     at oracle.apps.xdo.batch.bursting.DocumentDelivery.addDeliveryRequest(Unknown Source)
     at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitEnterpriseDeliveryRequest(Unknown Source)
In addition:
I've tried to upload file using the "Send" button. The file have been successfully uploaded to the ftp. But the file is corrupted, i.e. can't be readable in the PDF reader. seems the the file was uploaded using the non-binary mode.
Thanks in advance!
Eldar.A.

Hi all,
within the delivery note specification the FTP Server name has been set the same to the IP address.
For example:
OLD
FTP server name: Test
IP: 1.1.1.1
Port:21
NEW
FTP server name: 1.1.1.1
IP: 1.1.1.1
Port:21
Then issue was resolved.
Please, refer to the SR# 3-1488517361.
with regards,
Eldar A.

Similar Messages

  • Bursting and Distributing a Report Error

    Dear All,
    Following the example of bursting and distribution in below document
    as similar case is required in my production environment.
    [http://download-west.oracle.com/docs/html/B10602_01/orbr_dist.htm]
    i have followed the entire sequence as mentioned except i have to place it on Application server path
    and run it from Application Server path URL
    http://MYSERVER:7778/reports/rwservlet?report=Inventoryreport_Kashif_dist.rdf
    &userid=oe/oe@kashif&authid=admin/admin&distribute=yes&destination=distribution.xml
    where distribution.xml and inventoryreport_kashif_dist.rdf are in same directory
    but it returns the following errors
    REP-34304: /d:/orawin90/reports/dtd/distribution.dtd (No such file or directory)
    REP-34304: Distribution failed to complete; review the distribution lists
    Any help would be appreciated
    Regards,
    Kashif

    Hi jkathuria,
    First you need to have manager_mailID in XML
    In Bursting Tab
    --> Enable Bursting
    --> make Split By ID
    --> make Delivery By manager_mailID
    then in Query Builder
    SELECT
    DISTINCT ID Key,
    'Template Name' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'PDF' OUTPUT_FORMAT,
    'EMAIL' DEL_CHANNEL,
    manager_mailID PARAMETER1,
    'if u want cc to any other mail include here in singlequotes' PARAMETER2,(optional)
    '[email protected]' PARAMETER3,
    'Tax Invoice Report ' PARAMETER4,
    'Please find the attachment for More Details.' PARAMETER5,
    'true' PARAMETER6,
    '' PARAMETER7
    FROM
    table name
    this will work for u r Requirment.
    cheers,
    chintu

  • Bursting and DeliveryManager - How to identify wrong email address

    Hi,
    I have created a BI report (based on Data Template)
    Report generates the XML and then in the afterReport trigger, I am calling Bursting Program to send emails to the customers.
    Everything works fine.
    Problem is:
    If, there is any wrong email address, then we are NOT receiving any notification and undeliverable message.
    This happens for Bursting Request (program).
    I have also written a sample Java Code using "DeliveryManager" XDO class, to check whether it thorws the exception in case of wrong email ID or incorrect domain.
    But it also completes successfully and without any error. (no email .... obviuosly)
    import oracle.apps.xdo.delivery.*;
    public class EmailTest
    public static void main(String args[])
    try{
    DeliveryManager dm = new DeliveryManager();
    DeliveryRequest req = dm.createRequest(DeliveryManager.TYPE_SMTP_EMAIL);
    req.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT, "test mail");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_HOST, "appsrelay.xxx.com");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_FROM, "[email protected]");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS, "[email protected]"); //WRONG EMAIL ADDRESS HERE
    req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE, "application/pdf");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME,"test.pdf");
    req.setDocument("/home/appldev2/WYSEINVPRINTN2_17402678_1.PDF");
    req.submit();
    req.close();
    catch(Exception e)
    System.out.println("Exception at: "+e);
    Then, I tried writing a send mail program using JAVAX EMAIL APIS.
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class EmailTest2
    public static void main(String args[])
    String to = "[email protected]"; //WRONG EMAIL ADDRESS HERE
    String cc = "[email protected]";
    String bcc = "[email protected]";
    String from = "[email protected]";
    // SUBSTITUTE YOUR ISP'S MAIL SERVER HERE!!!
    String host = "appsrelay.xxx.com";
    String Subject="";
    Properties props = new Properties();
    // Get a session
    Session session = Session.getInstance(props);
    try{
    Transport bus = session.getTransport("smtp");
    bus.connect();
    Message msg = new MimeMessage(session);
    Address fromAddress = new InternetAddress(from);
    msg.setFrom(fromAddress);
    Address[] toAddresses = InternetAddress.parse(to);
    msg.setRecipients
    (Message.RecipientType.TO,toAddresses);
    Address[] ccAddresses = InternetAddress.parse(cc);
    msg.setRecipients
    (Message.RecipientType.CC,ccAddresses);
    Address[] bccAddresses = InternetAddress.parse(bcc);
    msg.setRecipients
    (Message.RecipientType.BCC,bccAddresses);
    Subject = "test emails";
    msg.setSubject(Subject);
    msg.setSentDate(new Date());
    MimeBodyPart p1 = new MimeBodyPart();
    p1.setText(" \n" + "Please find attached the SPQ approval letter \n\n" + "Regards, \n");
    Multipart mp = new MimeMultipart();
    mp.addBodyPart(p1);
    msg.setContent(mp);
    msg.saveChanges();
    bus.sendMessage(msg, toAddresses);
    bus.sendMessage(msg, ccAddresses);
    bus.close();
    catch(Exception e)
    System.out.println("Exception at: "+e);
    This, program throws Exception when there is any invalid character or wrong domain specified.
    "class javax.mail.SendFailedException: 553 5.1.2 <[email protected]>... Invalid host name"
    Please help me to get some clue about how we can track the invalid email address and also, undeliverable emails in Bursting or XDO DeliveryManager classes.
    Thanks a Lot,
    -- Ejaz
    Edited by: ESyd on Aug 9, 2010 1:14 AM

    Hi,
    Actually delivery failure notification is nothing to do with bursting or Delivery API, For me it deliver the notification if delivery address is incorrect (not exists), though the bursting engine does not through any error for invalid email format.
    If you really looking for the solution, as a workaround :
    I would use the file delivery
    Implement the Bursting Status Listener
    within Before Document Delivery, implement the customize delivery solution by using javax.mail logic to email the report.
    For most of us, It is too much and better to raise a SR, but you already implemented the other part, so just combine these two to get what you want.

  • Abap Report including sales orders and delivery data.

    Hi Experts,
    I Want to develop a new abap report which would contain the data for sales orders and delivery.
    I want to fetch all the sales orders based on the ship date (LIKP-WADAT_IST) of the delievry.
    Could anyone please let me know how to fetch teh data or is their any function module which would help me to solve my problem.
    <Removed by moderator>
    Thanks,
    Komal.
    Moderator message : Spec dumping not allowed. Thread locked.
    Edited by: Vinod Kumar on Aug 10, 2011 1:25 PM

    post this in ABAP forum for quicker response.
    Regards
    Raja

  • Quantity and Price Totals on Sale Order and Delivery Order

    Dear ABAP Gurus,
    I want to add totals of line items (Quantity and Price) in sale order and delivery order screens. Can you please guide me how to do this. The price can be any from pricing procedure ie exclusive or inclusive price of sales tax.
    regards,
    RSA
    Moderator message : Requirements dumping not allowed, show the work you have already done, thread locked.
    Edited by: Vinod Kumar on Jan 28, 2012 9:23 PM

    Hi,
    Try this :
    IF @transaction_type in ('A','U') AND (@OBJECT_TYPE='22')
    BEGIN
    If exists (SELECT t3.docentry FROM OWOR T0  INNER JOIN WOR1 T1 ON T0.DocEntry = T1.DocEntry left join POR1 T2 on T2.[U_JONum] = T0.[OriginNum] and  T0.[ItemCode] =  t2.U_SubConItem] INNER JOIN OPOR T3 ON T2.DocEntry = T3.DocEntry WHERE T1.[PlannedQty] <> T2.[Quantity] and  T1.[ItemCode]  = 'subcon' and  T3.DocEntry = @list_of_cols_val_tab_del )
    Begin
    SET @error = 10
    SET @error_message = 'Not allowed to add more than planned'
    End
    End
    Thanks & Regards,
    Nagarajan

  • Quantity is different from sale order and delivery

    Hi,
    Gurus,
    Quantity is different from sale order and delivery.
    I identified the Material in the sales order, the item category for this material as BOM.
    I have also checked the bill of material display header overview. The Base Quantity maintained as 1000 EA3. The SUBITEM maintained in G in the unit field in bill of material display.
    Accordingly i have checked the same for material master's additionl data in Units of Measure tab, it is mentioned the basic unit as 1000 EA3 and alternative unit as 600 G.
    My client processed the order for 100 QTY. The QTY for the two sub item is 99.601 each in the sale order.
    My client Question is why in delivery the Material Qty is coming as 99.730 and the SUB ITEM is coming as 99.330 EACH.
    Note:- The material X is maintained in EA3 in Bill of material header overview. I do no how the sale unit came as G for the Material in sale order.
    The other two sub item is perfectly coming as G. Because it is maintained in G in the Bill of Material Display.
    Guide me GURUS.
    Thanks and Regards,
    ANAND

    Hello Rumar
    I guess you entered the text manually in the sales order. The Ship-to may not be having any text, but the Sold-to may be and it may be coming from sold to.
    In transaction VOTXN, check the access sequence for the text type id and see which one takes precedence - one from customer master or from the order by checking the order of accesses.

  • In Sale Order and Delivery - Inventory should be effect

    Dear Experts,
    i am having a scenario that in sales order and delivery, on material items inventory should not be effected.
    How i can acheive this.
    Please let me know the solution.
    With Regards

    Hi Mr.Rachumallu,
    I am not very sure about your question but if my understanding is right, you can acheive it through the VTLA Tcode and for the Item category of the suitable delivery and sales document combination you need to maintain the pos/neg quantity as "Zero".
    I hope I am helping you.
    Regards
    Vijay

  • Reinitialize Sales Orders, Billing and Delivery (11, 12 & 13)

    Hi,
    Due to continues rollouts we need to reinitialize Sales Orders, Billing and Delivery do-cuments from R/3 into BW.
    This requires us to delete all loaded data, logs, queues etc. on the BW side - Fair enough.
    The real challenge come as we need to run the transactions OLI7BW(order), OLI8BW (billing), OLI9BW (deliveries) on the R3 side in order to fill the setup tables. Here we need to switch the "block all orders" on in order to ensure that no new documents are created while load-ing.
    In relation to the above situation I have a couple of questions:
    Is there no way of doing this in a more "online" fashion?
    What transactions are actually blocked by flicking the "block all orders"?
    Thanks in advance
    Michael Bisfelt
    Arla Foods a.m.b.a
    Message was edited by: Michael Bisfelt

    Hi Michael,
    I've seen this process accomplished without blocking orders, but instead by blocking all transactions that may in any way lock an order or related sales document.  Also, you can dramatically speed up the process of gathering the old documents by running multiple batch jobs (with different document number ranges) at the same time.  In this case, I believe you want to "uncheck" the "New run" flag.  I've seen runtimes for this reduced from over 24 hours to under 4 hours.  The important thing is that you don't want to have ANY activity that modifies or locks order documents until after the date and time of termination that you specified, otherwise you will lose data on your transfer to BW.
    Regards,
    Chris

  • PO report with cost center, order and delivery date

    Hi,
    pls. I just need a report to display the next fields Account Assigment and Delivery Date.
    I attempted with standard reports like ME2N, ME2K but it is impossible to display all the information in the same screen.
    Thanks a lot for cooperation.
    Regards.

    HI,
    Create a Infoset query or ask ababper
    Tables EKKN, EKPO, EKKO
    Regards,
    Pardeep Mlaik

  • What is the difference between scheduling agreement and delivery schedule

    Hi
    1. Can anyone explain me the difference between scheduling agreement output
        and scheduling agreement delivey schedule
        Will the both look same in T.code SP02 when seeing the output for a document.
        Can anyone send me T.codes for above ones in purchasing.
    2. when seeing the Detailed statement for rebate agreement,there is item number.
        In which table can we see the item number for rebate agreement

    Hi,
    If you have to deal with more complex situations, you can define a delivery cycle in the material master record in addition to the planning cycle. In so doing, you determine the days on whichthe vendor delivers his goods. The delivery cycle is entered in the material master record as a planning calendar in the Planning calendar field.
    You enter a delivery cycle if the delivery date (or the goods receipt date) depends on the day on which you order the goods. For example, you carry out the planning run and place your orders on Mondays and Tuesdays. If you place the order on Monday, the delivery is made on Wednesday, if you wait until Tuesday to place the order, the delivery is not made until Friday
    Where as Planning calander is Three character number (numeric or using letters) that specifically identifies a PPS-planning calendar. The difference between Planning calender and delivery cycle is If you have selected the MRP type "MRP" and have set a period lot-sizing procedure according to planning calendar, you enter here which planning calendar is to be used.
    If you selected the "time-phased planning" MRP type, the planning calendar that you specify here defines the delivery cycle. This specifies the days on which the vendor delivers the material. You can enter the planning cycle in addition to the delivery cycle

  • Global outline agreement and Delivery schedule

    Hi experts.
    I am in SRM 5.5, ECC 5.0 as backend in ECS.
    I would like to have some information about relation between Global outline agreement and Delivery schedule of ECC.
    Can I create GOAs and replicate to ECC as Delivery schedule for automatic generation of schedule lines?
    The schedule lines generated afted MRP run goes to SRM or only goes to SUS if required?
    Thanks
    Nilson

    Hi Nilson,
    The data contained within the global outline agreement is distributed as purchasing contracts or scheduling agreements to the backend systems of the release-authorized purchasing organizations of the relevant corporate group. These purchasing organizations can then use the purchasing contracts or scheduling agreements according to the terms agreed centrally within the global outline agreement.
    For more details.
    http://help.sap.com/saphelp_srm50/helpdata/en/42/f93dfd975f3ee6e10000000a1553f7/frameset.htm
    Nishant

  • Link between Schedule lines and delivery quantity

    Hi all,
    At the item level in a sales order, can anyone tell me the link between schedule line data and delivered quantity.
    Schedule line data can be found in VBEP and delivery qty can be found in LIPS. But I want the link between the two. For which partcular date in the schedule line item the delivery qty is displayed.
    Thanks in advance.

    Hi Amol and Rahul,
    Actually I dont want the link between sale order and delivery, I want the link between schedule line dates and delivery qty.
    Hope I am clear.
    Thanks in advance.
    Edited by: Rajini R M on Sep 11, 2008 6:12 AM

  • Mapping between Sales Order-Schedule-Line and Delivery-item

    Hi together,
    I want to extend the Datasource 2LIS_12_VCITM (Delivery-number, -item, Order-number,-item is available) by Sales Order Schedule Line.
    Could not find any ERP table (VBEP and LIPS allow a mapping only on item level) for the mapping between Sales Order Schedule Line and Delivery item yet. The use of the extractor 2LIS_12_VCSCL for the extention (e.g. infoset) afterwards is no option.
    Thanks for your help in advance!!
    Assign full points!!
    Sven

    Hi Reddy,
    thanks for your answer.
    I know that I have to add this field.. but the problem is, how to fill this field. I don't know how to map the delivery-item with the schedule line-item.

  • Move Order lines and Delivery Detail lines - Relationship

    Hi All,
    Is there a one - to - one realtionship between Move Order Line and Delivery Detail Line?
    i.e., Each Move Order line will correspond to only one Delivery Details line Record?
    Thanks in advance.
    Regards,
    Gowri

    Hello,
    There is a one - to - many relationship between Move Order Line and Delivery Detail Line when you split lines in delivery.
    select * from mtl_material_transactions t you have source_id.
    select * from WSH_DELIVERABLES_v t you have move_order_id.
    Regards,
    Luko

  • Difference between Scheduling lines and Delivery schedule

    Hi SD Experts
    can u say me the clear difference between Scheduling lines and Delivery schedule.
    where we will maintain deliver schedule. whether delivery schedule is automatically created along scheduling agreements..
    with regards
    James

    Hi James,
    Schedule Lines: Has basically information realted to delivery scheduling in Sales Order level.
    Delivery Scheduling: Is a process using which system will determine what are the different activities which need to be performed and time taken for each activitiy only after which the material can be delivered to the customer.
    Delievry scheduling will be started only from the material availability date i.e., system will first determine the material avail date and then do scheduling. By default Standard SAP system does Backward Scheduling in case material availability falls beyond the required delivery date system will do forward schedluing
    Delivery Scheduling consists of the following Basic activities:
    We give deatils while creating order:
    Order Creation Date
    Required Delivery Date
    Order date - Material availability date - Transportation Planning Date - Loading date - Goods Issue Date - Required Delivery Date
    Time Between GI Date and required Delivery Date is called Transit Time
    Time Between LoadingDate and GI Date is called Loading time
    Time Between Material Availability Date and Loading Date consists of 2 components - Pick / PackTime and Transportation Planning Time
    System has to calculate all this before it determines the confirmed delivery date.
    Give your mail Id I have some Presentation I will send you across.
    REWARD POINTS IF IT HELPS
    Regards
    Srini

Maybe you are looking for

  • Open any type of attachment in mail from a POP account

    When I receive any type of attachment in email (pop account) the attachment shows up as a "winmail.dat" Why is it not showing up as PDF, xls or doc etc...? Iphone 1.1.3 16g I would like to be able to open any type of attachments that come into my ema

  • Quantity tolerances for IR before GR

    Dear all, I have the following problem: -My customer is receiving MIRO invoices before doing GR. In some cases the vendors are sending double invoices with different references but to same PO. This is not acceptable and my customer want quantity tole

  • Discover what albums a photo is in?

    Is there a way to see what albums a photo is in? I have found a photo in my library, but I want to find out what albums it is a member of. Can I do that? In iTunes, you can right-click a song and see what playlists it is in with the "Show in Playlist

  • Oracle Best Practices in 10g When Disabling NUMA

    We have both Linux and Solaris 10 DB servers running 10g on them with NUMA. What is Oracle's best practice for dealing with NUMA in hardware when it can be disabled?

  • Journal Entrie - Failed to get next member of range member UJJ_JRNID

    Hi experts, I am using the BPC NW 7.5 SP04 version and have created a journal template. When I try to save the journal entry, I get the following error "new journal ID: Failed to get next member of range member (UJJ_JRNID - ). " I have this error onl