Disappearing (missing) delivery content

Symptom
User has composed and saved content and now delivery is empty (has no content).
Cause
User composes Delivery content on the Campaign Dashboard and Saves the Delivery. The "dirty" version of the Delivery is not committed to the database until the Campaign is saved. However, the Save button is not activated at this point.
Next, the user goes into the campaign workflow and opens the Delivery activity there, makes a change, such as entering a subject line or changing the Delivery label and (not noticing that the content is missing) saves the Delivery and saves the workflow. The empty delivery is now committed to the database. When the user next opens the delivery on the campaign dashboard, the content is gone.
Fix
There is not really a fix except to recreate the content.
Preventative
After initially choosing a template and saving the delivery and workflow, only edit the delivery in one place, ideally the Campaign Dashboard.
You can force the Save button to activate by making a change to the Campaign properties, even if you change and change back. Then Save the Campaign.

Looks like my AdBlock Plus plug-in is responsible, in Firefox
at least. Maybe Pithhelmet or some other plug-in in Safari (haven't
troubleshot that yet). Lesson: disabling
plug-ins/extensions/add-ons should always be part of your initial
troubling shooting regimen.

Similar Messages

  • Over riding setting Delivery Content in 11g

    Hi,
    We migrated from 10g to 11g BP2.
    We are advised from our admins that we need to create 'Delivery content' in 'My accounts' sections as mentioned in
    http://www.biztech.com/blog/2012/10/setting-up-ibots-in-obiee-11-g/
    3. Setup the delivery option for End User
    But we are not willing to do that. Since we cant ask every mail recipents to go and set it.
    Please suggest any other options to override this activity.
    Regards
    MuRam
    Edited by: MuRam on Dec 10, 2012 1:42 AM

    Hi MuRam,
    is the attribute mail set for each user in your security provider (like embedded ldap)? Is an smtp server configured, that can send emails to that address? If both is true, you can modify each users defaultdevice ([catalog]/root/users/[user_id]/_prefs/defaultdevice) to ^A^@^A^@^@^@^E^@^@^@email^P^@^@^@sasystem:pcemail (<< that's a representation of the binary value in the file).
    Regards

  • Missing BI content datasources

    Hi all. I have an issue... I'm trying to activate some BI content datasources, but there are missing a lot of them. Do somebody knows why?
    Here are my system status:
    SAP_BW     700     0017     SAPKW70017     SAP NetWeaver BI 7.0
    BI_CONT     703     0009     SAPKIBIIP9     Business Intelligence Content
    Note: It only happens in my BW DEV system. In BW QAS (same installation) there are all the missing datasources.

    There have not many BI content datasources in BI.
    If you are considering ERP data source, you should check RSA6 in ERP/QAS and Compare it with RSA6 in ERP/DEV.
    Transport all datasources in interests from ERP/DEV to ERP/QAS and replicated them to BI/QAS at once, and you will find the missing BI Content data sources.
    hope it can help.
    regards,
    K

  • How to set password in obiee delivery content reports (pdf format)

    Hi
    Dear All
    i Need your help on the Obiee !
    i hvae one Requirement how to set password in obiee delivery content (pdf format) its possible. what are the things i to do
    Kindly Advice me
    Advance Thanks
    satya

    933154 wrote: My profile says PDF, config, report, settings says PDF and I get an Excel when I run screening reports. Very odd.You may want to make sure that the file where the system setting gets stored can be updated. In your <Intradoc_Dir>\urm\data\reportpublisher\config\config.hda file, there is a result set named "RPAdminConfigInfo". The third column of that result set should match the value being shown on the configuration settings page. I've changed the format value in the UI, and this file gets updated (and thus I'm getting my screening reports in the format specified in this config file.)
    933154 wrote: Also, I wasn't clear on the second part of the question. The Screening Reports appear to use the template INTERNALITEMDETAILRPTTEMPLATE. Is that configuration set somewhere? Is there any way to have the screening reports use a different template or is changing that template the only way to change the screening report layout?Templates are not configurable in that respect - the template name values being called for a service are hardwired in the code (you'd need to override in a component - just not worth the hassle). I'd either edit the existing rtf file, or just check in a new revision to the existing one if the differences are that profound. You'd still need to conform to the BI Publisher standards/methodology in either case.

  • Dynamic Delivery Content issue

    Hi everyone!!
    Im trying to reference information in the XML data to be put into the delivery content but i can`t get it work :S
    Im using this format ${ELEMENT} but it looks like its a null element :S
    This is the java:
    import oracle.apps.xdo.batch.DocumentProcessor;
    public class BurstingTest
    public BurstingTest()
    try
         DocumentProcessor dp = new DocumentProcessor
         ("C:\\burst\\sample\\SampleControlFileV2.xml", "c:\\burst\\sample\\employee.xml","c:\\burst\\sample");
         dp.process();
    catch (Exception e)
    { System.out.println(e);   }
    public static void main(String[] args)
    BurstingTest burst1 = new BurstingTest();
    this is the XML data
    <?xml version="1.0" encoding="UTF-8"?>
    <DATA>
    <LIST_DEPT>
    <DEPT>
    <DEPTNO>20</DEPTNO>
    <MANAGER_EMAIL>"[email protected]"</MANAGER_EMAIL>
    <LIST_EMPLOYEE>
    <EMPLOYEE>
    <EMPNO>7369</EMPNO>
    <ENAME>SMITH</ENAME>
    <JOB>CLERK</JOB>
    <MGR>7902</MGR>
    <HIREDATE>1980-12-17T00:00:00.000-08:00</HIREDATE>
    <SAL>800</SAL>
    <COMM>100</COMM>
    <DEPTNO>20</DEPTNO>
    <EMAIL>"[email protected]"</EMAIL>
    </EMPLOYEE>
    </LIST_EMPLOYEE>
    </DEPT>
    </LIST_DEPT>
    </DATA>
    And this is the Control File
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:globalData location="stream">
    </xapi:globalData >
    <xapi:request select="/DATA/LIST_DEPT/DEPT/LIST_EMPLOYEE/EMPLOYEE">
    <xapi:delivery>
    <xapi:email server="smtp.server" port="25" from="no-reply@mail" reply-to ="[email protected]">
    <xapi:message id="123" to="*${EMAIL}*" attachment="true" content-type="html/text" subject="*${EMPNO}*"> Dear *${ENAME}*, Please review the attached document.</xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document key="*${EMPNO}*" output="c:\burst\sample\burstingmail.xls" output-type="excel" delivery="123">
    <xapi:template type="rtf" location="c:\\burst\\sample\\employee.rtf">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    So the problem is that the subject is always null also the address and in the message after Dear.
    Please help me !!
    I`ve been looking in the manual an over internet and I still dont have the solution :'(
    Thanks in advance!!
    Edited by: user8750191 on Apr 8, 2010 6:38 PM

    ok, i just got the new patch and its solved.
    Thanks!!

  • Agent delivery content delivered in tab delimited when csv selected

    I am facing an issue and I can't tell whether this is a bug or not. Running OBIEE 11.1.1.5 and creating an agent. When specifying the delivery content format to CSV it is always delivered as tab delimited. Is this a known issue? Is there any work around to have the output be CSV. Running the analysis and exporting manually exports correctly to csv. However it is not working in the agent

    After some research it appears that maybe I can specify the delimiter used by the obiee agent. By default it is set to tab whereas I want to change it to a comma. Any help would appreciated.

  • SP23 missing BI content when processing EWA data

    Hello,
    In a recently upgraded solman system i am trying to process downloaded EWA data. For this a batch job SM:EXEC SERVICES is scheduled.
    This job cancels however with message InfoCube 0SMD_PE2D is not available in version A.
    When I search for this infocube in RSA1 i do not find it, so it seems I am missing some content.
    Is this true? Or am i doing something wrong here?. Do I need to activate some ehp1 funtionality for this?
    Thanks for any help
    Tom

    >
    Tom van Rooyen wrote:
    > One error at least was that in SOLMAN_SETUP the BI activation failed because the myself source system was not present at the time. Still the job went technically OK, which is not good practise
    Tom,
    Could you please open a separate thread in SDN or open a customer message on SV-SMG-INS to discuss the expected behavior within SOLMAN_SETUP.
    I would also appreciate to avoid running into issues during EWA processing. Detection should have been possible earlier for users.
    Thanks,
    Ruediger

  • IBot Delivery Content type

    Experts,
    I have a strange problem. I am sending a request as a part of delivery content. I have specified the type as html. But in an email, I am getting the results in plain black and white with table. I am not getting the actual green bar coloring and blue headers as the results show up in OBI. I am going mad finding out the reason. Could anybody help.
    thx,
    parag

    Turribeach,
    I just found one more thing. When I am using Oracle BI Delivers in the From field, then the HTML format is NOT coming. When I am using any valid email address of an employee, the mail is coming in a right format. Any idea.
    thx,
    parag

  • Missing delivery information in 2LIS_12_VCITM

    Please let me know how to check particular sales order details data  in 2LIS_12_VCITM delivery data source.  my problem here is I am missing delivery data coming from 2LIS_12_VCITM to one of the dso IN BW side. so i need to find out weather particular sales order having the  delivery information or not in source system.

    Hi,
    Check in the R/3 tablesLIKP and LIPS for the delivery information.
    Make a note of the the missing deliveries and resetup them and reload to BW.
    You can aslo check from sales order with the tcode Va03. display sales order and goto environment --> document changes
    where you can see the sales order attached to delivery info.
    Hope this helps.
    Regards,
    Reddy

  • NQSError 77006 When configuring agent delivery content to be PDF

    I am encountering a problem when configuring an agent in OBIEE to send the delivery content as PDF. Here is the exact error.
    [nQSError: 77006] Oracle BI Presentation Server Error: A fatal error occurred while processing the request. The server responded with: Sax parser returned an exception.
    Message: Entity 'nbsp' was not found, Entity publicId: , Entity systemId: , Line number: 23, Column number: 443
    Error Codes: UH6MBRBC
    Location: saw.subsystem.pdf.postprocess, saw.subsystem.portal.pdf, saw.delivers.rpc.getDeviceContent, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Error Codes: AGEGTYVF
    AgentID: /shared/RetailPro/Custom/ETL Monitoring Report - Agent
    ...Trying Agent Get Response Content loop again.... Sleeping for 6 seconds.[nQSError: 77006] Oracle BI Presentation Server Error: A fatal error occurred while processing the request. The server responded with: Sax parser returned an exception.
    Message: Entity 'nbsp' was not found, Entity publicId: , Entity systemId: , Line number: 23, Column number: 443
    Error Codes: UH6MBRBC
    Location: saw.subsystem.pdf.postprocess, saw.subsystem.portal.pdf, saw.delivers.rpc.getDeviceContent, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Error Codes: AGEGTYVF
    AgentID: /shared/RetailPro/Custom/ETL Monitoring Report - Agent
    ...Trying Agent Get Response Content loop again.... Sleeping for 3 seconds.[nQSError: 77006] Oracle BI Presentation Server Error: A fatal error occurred while processing the request. The server responded with: Sax parser returned an exception.
    Message: Entity 'nbsp' was not found, Entity publicId: , Entity systemId: , Line number: 23, Column number: 443
    Error Codes: UH6MBRBC
    Location: saw.subsystem.pdf.postprocess, saw.subsystem.portal.pdf, saw.delivers.rpc.getDeviceContent, saw.rpc.server.responder, saw.rpc.server, saw.rpc.server.handleConnection, saw.rpc.server.dispatch, saw.threadpool, saw.threadpool, saw.threads
    Error Codes: AGEGTYVF
    AgentID: /shared/RetailPro/Custom/ETL Monitoring Report - Agent
    Exceeded number of request retries for method GetResponseContent.
    I'm sure it has something do with the instanceconfig.xml but I don't have problems with any other delivery content option. I also don't have a problem with any other installs. Has anyone seen this?

    Hi Joe,
    It might be a related to Print to PDF bug.
    Bug 13429298 or Bug 8507739 for SAX PARSER
    Regards,
    Jay

  • ICE Missing Delivery Rule

    I have setup a syndicator and subscriber on Netweaver 04 SP15 systems.  When trying to setup a Pull of an offer, I get a error saying "Missing Delivery Rule."  I've provided information on every options for the Pull under Delivery rules.  Any assistance would be most helpful

    Hi
    Is ur Target folder empty? If its not u'll get a warning saying that the "Target folder is not empty". If u r giving OK and moving forward, you should specify the delivery rule again. Otherwise you will get "Missing delivery rule" error.
    Hope this will help you..
    Regards
    Aparnna

  • Portal Content Created is disappearing/missing the next day!! NOde Synchron

    Hello SDN Portal Friends:
    Greetings!
    We have our DEV portal setup with 3 server nodes and a dispactcher. The dispatcher and two servers are running in PRoductive mode and one server in DEBUG mode. See below.
    *Dispatcher*:-- Productive Use: Yes
    Server0:-- Productive Use: Yes
    Server1:-- Productive Use: Yes
    Server2:-- Productive Use: Yes DEbug Use: Yes
    Then yesterday, we newly created a BI report iview, added it to a workset and added the ws to the role and role to a group and every one in that group were able to see the new work. and OK it is. Today morning, Alas! Everything disappeared. The iview, the workset, the role changes, all  went away. We are not not on VPN or any such thing. Plain network.with in the same domain.
    Some of our colleagues suspect it to be a node synchronization issue, which I am very ignorant about.
    Please, please, please think about this and help us understand it and solve the problem.
    YOur help is highly appreciated.
    Prasad Nutalapati

    Hi Prasad,
    I agree with Sushil, It must have been the PCD and/or Navigation Cache... These two caches also apply when you do not have a FPN, so in other words also for you scenario.
    What really confirmed this suspicion is your quote:
    Prasad V.Nutalapati wrote:
    > One good news. when we restarted the server the content came back OK. Surprise. we still don't know the reason. though.
    Cheers,
    B

  • App store icon gone missing/Web Content Filter - Apple Configurator

    I am using Apple Configurator to manage the iPads at my school. I changed the settings on my school's profile, within Apple Configurator, so that the App store was not available. The App store icon disappeared and all was good. I decided to change the settings back, to allow the App store, saved the settings and refreshed a group of iPads. The App store icon is still missing and it doesn't appear that my new settings have been applied. I quit Configurator and tried again, but no success. I am running Configurator 1.5 and the ipads are running iOS 7.1.
    Also, I have unchecked the "Allow use of You Tube" button because I want You Tube disabled, but Configurator still allows the use of You Tube through Safari. Is there any way to disable the use of You Tube without using the ridiculous "Web Content Filter", that when activated, limits adult content (good), which seems to include a lot of valuable educational sites (bad)? To me the only other option available seems to be to tick "Specific Websites Only" and spend the next year typing in all the possible sites that might have educational merit, ergo, my use of the word 'ridiculous'. Is there something I am missing?

    Locate it in the Apps folder and drag it to the dock.

  • Encore missing library and buttons, and link to retrieve missing funtional content down

    I registered and downloaded the new creative cloud, and apparently there is some content missing in several programs.  In Encore, the library and buttons are missing.  Supposedly the answers is to download additional functional content here..  http://helpx.adobe.com/x-productkb/multi/library-functional-content-missing.html   But the link is down.

    Hi Stephen Porter
    Link is working fine for me ...Don't Worry ..I am pasting the content from the abobe link here :
    Issue
    When you access the Library panel in Adobe Encore, the panel contains no content. Additionally, there is no subfolder named Library within the Adobe Encore application folder on your hard disk.
    When you access the title templates in Adobe Premiere Pro, the title templates are missing.
    When you access the template projects in After Effects, the template projects are missing.
    To the topSolution: Install the CS6 Functional Content
    Creative Cloud and disc product customersDownload and install the functional content for Adobe Premiere Pro and Encore.
    After Effects template projects were migrated to the After Effects Exchange.
    Adobe Premiere Pro and Encore Functional Content is available here:
    Mac OS (1.1 GB)
    Windows (734 MB)Installation instructionsMac OS
    Double-click the .dmg file to mount a disk image containing the installers.
    Choose to install Encore, or Adobe Premiere Pro functional content, or both packages. Open the folder for each package and locate the installer.
    Run "Install.app" to begin the installation process.
    After installing the first package of functional content, the installer ejects the disk image. Remount the disk image to run the second installer.
    Windows
    Note:If you installed the previous functional content packages, it's possible that you have Templates and Textures folders in the Program Files\Adobe\Adobe Premiere Pro CS6\Presets folder. Delete these folders before installing.
    Extract the contents of the downloaded zip file to a convenient location (for example, the Desktop).
    Run the .exe file to create install folders for the Encore and Adobe Premiere functional content installers.
    Navigate to the folder for the content you want to install and execute the installer.
    Electronic Software Delivery (ESD) customers only
    Download and install functional content for Encore, After Effects, and Adobe Premiere Pro. Note: Skip steps 1-6 if you have already downloaded functional content for Encore, After Effects, and Adobe Premiere Pro.
    In a web browser, go to www.adobe.com/membership.
    Sign in with your Adobe ID and password.
    Click View Order History.
    Look at the row with your order number and click Download.
    On the download page, look at the row with the description for function content. For example, for CS5, look for “Adobe Premiere Pro CS5: Download contains additional ReadMe files plus content (menus, buttons, and backgrounds) for Adobe Encore CS5.”
    Download this content using Akamai Download Manager or Alternate Download Method.
    Close Encore and Adobe Premiere Pro.
    (Mac OS) Double-click the .dmg file that you downloaded. On the Adobe Premiere Pro CS5 Content disk image, open the Encore Functional Content folder. Double-click Setup.
    (Windows) There are two files that you downloaded (for CS5, these files are PremierePro_5_Content_LS7.exe and PremierePro_5_Content_LS7.7z). Double-click the.exe file to extract the folders and files. Browse to the Encore functional content folder within the extracted folders. Double-click Setup. Following are detailed steps for Windows: 
    Go to the folder where you have downloaded files from the download page. For example, Desktop\Premiere. 
    Double-click PremierePro_5_Content_LS7.exe. The installation files are extracted to a folder named Adobe CS5. For example, Desktop\Adobe CS5.
    Go to the Adobe CS5\Premiere Pro Family Content Installers\Adobe Encore CS5 Functional Content folder.
    Double-click Set-up.exe. Installation starts. Follow the instructions to complete installation.
    To the topAdditional solution: Install the Resource Central library content
    Download the extra library content
    Choose your language to begin the download:
    English French German Japanese Italian Spanish Korean
    Extract the Library content to the Library folder
    Extract the zip file that you just downloaded to create a .7z file (for example, en-US.7z).
    Extract the .7z file to any convenient location (for example, the Desktop). This step creates a folder based on the language you selected.
    7-zip for Windows (available for download at http://www.7-zip.org/download.html)
    The Unarchiver for Mac OS (available for download at http://wakaba.c3.cx/s/apps/unarchiver.html)
    Copy the contents of the language folder (for example, en-US) to the following location:Windows: C:/Program Files/Adobe/Adobe Encore CS6/
    Mac OS: Applications/Adobe Encore CS6/
    If you choose a custom Library folder location other than the default location, launch Adobe Encore and browse to your custom Library folder location.Windows: Edit > Preferences > MediaMac OS: Encore > Preferences > Media

  • Tcode for report: PO missed delivery date

    Dear SAP Gurus,
    Kindly let me know is there any T-code for report which list the purchase orders missed for delivery date.
    Please help.
    Regards,
    Prashanth

    Dear
    your can your TCODE -  ME2M.
    Select Delivery Date field do the following step
    1. click on Multiple selection Button
    2. click on maintain selection option
    3. select single value and click continue.
    run the report. This may be useful to you.
    Regards,
    Pravin Kadam.

Maybe you are looking for

  • Data Extraction issue from the data source 2LIS_08TRTLP

    Hi All,         We are facing one issue in time of extraction from data source 2LIS_08TRTLP(Shipment Delivery Item Data per Stage) in BW. For some out bound delivery no. Gross weight(BRGEW) is coming zero though there is value showing in the source s

  • Yet again help re speed problem

    First todays stats ADSL line status at 1359 on 01/04/11 Connection Information Line state Connected Connection time 0 days, 00:00:19 Downstream 1,151 Kbps Upstream 888 Kbps ADSL Settings VPI/VCI 0/38 Type PPPoA Modulation G.992.5 Annex A Latency type

  • Selection query problem

    hi all..... i want to setct some data from table vbrp ,vbrk and vbfa . on selection screen i have vbrk-vbeln and vbfa-erdat i hav written one code for tht but thts not working can nybdy plz help me in this.. parameter : p_vbeln type vbrk-vbeln ,     

  • Crash when upload

    Hi since i delete the "Evernote" plug-in to safari i get crash everytime i do upload .. sometime Flash player in safari get crash too ... this log for last crash.. Process: Safari [639] Path: /Applications/Safari.app/Contents/MacOS/Safari Identifier:

  • Multiselect item defined height issue

    I'm using a multiselect item and I'm trying to determine why when it has no rows returned into it, it ignores the specific height I've defined for it and vertically "shrinks" a half dozen rows or so. The end result is the items under it in the same c