Exporting Universes Issue

Hi,
We upgraded all the BusinessObjects XI 3.1 to the last Package. I have created Universes and also Webi Reports. Yesterday i had to make some modifications into the universe (Is all created using derived tables and SQL) and suddenly the exportation says that was successful but when i checked the Webi Report the linked universe is empty and the report cant be shown.
I figured a way in order to modify the report in order to bring it back to work, creating copies of it. But i would like to know is there is a way to put the Universe Designer back to work again like it was.
Thanks in advance.
Reynaldo

what BO SP are you using? SP1, SP2, SP3, SP4? What WebI version are you using WebIntelligence from InfoView or WebI Rich Client?
Edited by: PadawanGirl on Jul 29, 2011 5:57 PM

Similar Messages

  • KIMYONG : basic  Export / Attachment issues  가이드

    Purpose
    ======
    이 문서는 Support Analayst / DBA에게 Export /Attachments issues 발생시
    조치할수 있는 기본적인 Troubleshooting Guide를 소개하고자 합니다.
    Explanations
    ======
    Export Analysis
    Turn on export debug,
    Go to Help -> Diagnostics -> Examine
    Set Block = GLOBAL
    Set Field = FND_EXPORT_DEBUG
    Set Value = TRUE
    Then export and observe the messages that are generated during the export process
    Important Parameters.
    set serveroutput on
    declare
    plsql_agent varchar2(200);
    web_server varchar2(200);
    dad varchar2(200);
    gfm_agent varchar2(200);
    protocol varchar2(200);
    database_id varchar2(200);
    jsp_agent varchar2(200);
    check_enabled varchar2(200) ;
    begin
    plsql_agent := fnd_web_config.plsql_agent ;
    dbms_output.put_line('PL SQL Agent ->'||plsql_agent);
    web_server :=fnd_web_config.web_server ;
    dbms_output.put_line('Web Server ->'||web_server);
    dad := fnd_web_config.dad ;
    dbms_output.put_line('DAD ->'||dad);
    gfm_agent := fnd_web_config.gfm_agent ;
    dbms_output.put_line('GFM Agent ->'||gfm_agent);
    protocol := fnd_web_config.protocol ;
    dbms_output.put_line('Protocol ->'||protocol);
    database_id := fnd_web_config.database_id ;
    dbms_output.put_line('Database Id ->'||database_id);
    jsp_agent := fnd_web_config.jsp_agent ;
    dbms_output.put_line('JSP Agent ->'||jsp_agent);
    check_enabled := fnd_web_config.check_enabled('FND_GFM.GET') ;
    dbms_output.put_line('FND_GFM.GET ->'||check_enabled);
    end ;
    Examining SQL Trace for the sequence of events that happen in the Export process
    SQL >alter session set events '10046 trace name context forever, level 12';
    Then run the following block of pl/sql code
    set serveroutput on
    declare
    db_file number;
    mime_type varchar2(255) :='text/plain' ;
    out_string varchar2(32767) :='Just some plain text that is stored' ;
    web_server_prefix varchar2(500);
    url varchar2(500);
    begin
    db_file :=fnd_gfm.file_create(content_type =>mime_type,program_name=>'export');
    fnd_gfm.file_write_line(db_file,out_string);
    db_file :=fnd_gfm.file_close(db_file);
    url:=fnd_gfm.construct_download_url(fnd_web_config.gfm_agent,db_file,TRUE);
    dbms_output.put_line(url);
    end;
    Exit the sql plus session and study the sql trace file as being there in USER_DUMP_DEST
    $ ls -lrt
    Refer to Note # 282806.1 Performance Tuning Approach for Oracle(8.1.6 - 9.2.0.5) on
    UNIX for more information on how to obtain sql tracing .
    Example of download URL :-
    http://finance.sriratu:8001/pls/SR/fndgfm/fnd_gfm.get/776537528/202595/fnd_gfm.tsv
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/820067633/298941/Screen_shots.doc
    Example of Upload Attachment URL:
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A1548EC73FFCF6EADB4F7826B217EDCE92719B62BDA9FF0AF193DC7BC64A2C60AFC5123B50C8C78F9E6807695ED9A7FE7AE87F8E49E80807223756706B3FC777F645FA5A07C7A467B
    http://aoltest2.idc.oracle.com:8000/pls/VIS/OracleSSWA.Execute?
    E=%7B!2DAF44968EBBEC83211B5D5F27F58334FBFB2B90E38AD205&P=%7B!BEFD8114A932C86A5525987DB9C8D9785657497306AAE1FD25D1CC352ADF38DFD69C21355096CBC38D285B083D24F261701F5F278E199044D603A5A8B1D588292099782AC4AF3D97E23B95936809D280
    To check the row being created in the table FND_LOBS during Export or Attachment
    SQL>create table fnd_lobs_bak as
    select file_id,file_name from fnd_lobs ;
    SQL>select * from fnd_lobs
    where file_id not in
    (select file_id from fnd_lobs_bak );
    SQL>select * from fnd_lobs
    where to_char(upload_date,'DD/MM/YYYY')=to_char(sysdate,'DD/MM/YYYY')
    Analysis on an Attachment
    Help -> Diagnostics -> Examine
    Block : DOCUMENT_HEADER
    Field : ATTACHED_DOCUMENT_ID
    Note down <Value>
    SQL>select document_id
    from fnd_attached_documents
    where attached_document_id=<Value>;
    SQL>select media_id
    from fnd_documents_tl
    where document_id=<document_id>;
    SQL>select *
    from fnd_lobs
    where file_id=<media_id>;
    SQL>select *
    from fnd_documents_short_text
    where media_id=<media_id>;
    from fnd_documents_long_text
    where media_id=<media_id>;
    SQL>select *
    from fnd_documents_long_raw
    where media_id=<media_id>;
    FND_LOBS stores information about all LOBs managed by the Generic File Manager (GFM).
    Each row includes the file identifier, name, content-type, and actual data. Each row also
    includes the dates the file was uploaded and will expire, the associated program name and
    tag, and the language and Oracle characterset.
    The file data, which is a binary LOB, is stored exactly as it is uploaded from a client browser,
    which means that no translation work is required during a download to make it HTTP compliant.
    Therefore uploads from non-browser sources will have to prepare the contents
    appropriately (for instance, separating lines with CRLF).
    The program_name and program_tag may be used by clients of the GFM for any purpose,
    such as striping, partitioning, or purging the table if the program is de-installed.
    They are otherwise strictly informative.
    These columns and the expiration date are properly set when the
    procedure FND_GFM.CONFIRM_UPLOAD is called. If not called, the column
    expiration_date remains set, and will eventually be purged by the procedure
    FND_GFM.PURGE_EXPIRED.
    FND_DOCUMENTS_LONG_RAW stores images and OLE
    Objects, such as Word Documents and Excel
    spreadsheets, in the database. If the user elects
    to link an OLE Object to the document, this table
    stores the information necessary for Oracle Forms
    to activate the OLE server, and it saves a
    bit-mapped image of the OLE server's contents.
    If the user does not elect to link an OLE Object,
    the entire document will be stored in this table.
    FND_DOCUMENTS_LONG_TEXT stores information about
    long text documents.
    FND_DOCUMENTS_SHORT_TEXT stores information about
    short text documents.
    To know which Forms provide Attachment feature
    SQL>select *
    from fnd_attachment_functions
    where function_name like '%FND_%';
    Examining FND_LOBS tablespace
    SQL>select tablespace_name
    from dba_tables
    where table_name='FND_LOBS';
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE';
    SQL>select a.tablespace_name TABLESPACE_NAME , a.bytes TOTAL_BYTES,
    sum(b.bytes) FREE_BYTES , count(*) EXTENTS
    from dba_data_files a, dba_free_space b
    where a.file_id = b.file_id AND A.TABLESPACE_NAME=<TABLESPACE_NAME>
    group by a.tablespace_name, a.bytes
    order by a.tablespace_name ;
    Examing Profile Option value
    SQL>select *
    from fnd_profile_options_tl
    where profile_option_name='FND_EXPORT_MIME_TYPE' ;
    SQL>select b.profile_option_name,level_id,profile_option_value
    from fnd_profile_option_values a, fnd_profile_options b
    where a.application_id=b.application_id
    and a.profile_option_id=b.profile_option_id
    and b.profile_option_name in ('FND_EXPORT_MIME_TYPE') ;
    Procedure FND_GFM.GET ANALYSIS
    http://aoltest2.idc.oracle.com:8000/pls/VIS/fndgfm/fnd_gfm.get/560074272/298951/fnd_gfm.doc
    access
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',1)+1,instr('/560074272/298951/fnd_gfm.doc','/',2)-2) access from dual ;
    560074272
    file_id
    SQL>select substr('/560074272/298951/fnd_gfm.doc',instr('/560074272/298951/fnd_gfm.doc','/',2)+1,(instr('/560074272/298951/fnd_gfm.doc','/',-1)-instr('/560074272/298951/fnd_gfm.doc','/',2)-1)) from dual ;
    298951
    Profile Options being referenced in the package FND_GFM
    FND_EXPORT_MIME_TYPE
    FND_NATIVE_CLIENT_ENCODING
    Lookup Type Being used in the package FND_GFM
    SQL>select tag,lookup_code,meaning
    from fnd_lookup_values_vl
    where lookup_type='FND_ISO_CHARACTER_SET_MAP';
    Reference
    ========
    Note 338651.1

  • Problem when exporting Universe to Enterprise

    Hi All,
    I am facing problem when exporting universe to enterprise. I am getting the following error.
    "You do not have the right to add objects to the folder /webi universes" .
    1) I tried logging with admin account still getting the same error.
    2) I tried adding my user id to admin group but still has the same problem.
    I did not make any new changes to security. Do not know what might be the reason. Any ideas would be greatly appreciated.
    Environment: BOXI 3.1, windows server 2003.
    Thanks and Regards
    Sudharsan.

    Hi Prasanna,
    1) I checked the rights on universes for Administartors and Everyone for webi universes folder :
    Universe Security:
          a) Administartors:  Private
          b) Everyone has public.
    User Securtiy:
          a) Administrator : has full access
          b) Everyone : No access
    2) I tried adding my user id to admin group and exported it, but no luck. I also brought a new user into the system (thinking that i might have some restrictions some where)  and added him to admin group and tried with his user id too but still has same problem.
    Thanks
    Sudharsan.

  • Export license issue-URGENT

    We need to cancel Outbound Delivery 1234566 due to a GTS Export License issue.
    This delivery was created before the GTS license was complete.
    This delivery is for a Military Sales Order 123456 to ABCD for Thales shipped from XYZ
    2 Proforma Invoices were created, 123456on 9/18 and 9301154276 and 9/24. 
    GTS License 100000000000000011 was updated on 9/24.  However, the delivery needs to be canceled in order for GTS to assign a Proforma to a license.
    The accounting document, F2 Invoice 123456 has been issued but not cleared.
    Thanks
    Sitanshu

    Use Transaction code /SAPSLL/CL_CP_CUS_EX to display the custom declaration in Customs management. Select the dcoument in change mode. In the menu path, there is an option for 'Cancel' or 'Request Cancellation'. Request cancellation option is used when the declaration has been sent out to authorities for permission and in the meatime, the user decided to cancel..
    For assigning the license, use transaction /SAPSLL/LCD_CHANGE in License determination of Compliance..

  • Unhandled Exception- While Exporting Universe

    Hi ,
    While exporting Universe into CMS , we have got Unhandled Exception: Access_Violation_Exception.
    We are not able to export any universe into CMS.

    Does your account have enough rights to export to CMS?
    Are you able to import the current version of universe on the CMS successfully?
    Edited by: ramaks on Dec 1, 2009 8:21 PM

  • Exporting Universes to CMS in Business Objects....

    Hello All,
    I have BO XIR3 Edge 3.1 installed on my laptop.  Everything works fine EXCEPT when I try to export a Universe to CMS I get the following error message:
    "Failed to retrieve InfoStore service fom CMS. Check that the CMS is available."
    The CMS is running but I am unable to export any universes.
    Does anyone know how to resolve this problem?

    Simon,
    I restarted my system and tried again.  First logged on to CMS, then Universe Designer. Then I did the following:
    From Universe Designer
    File > Export
    Export Universe selection tab opens
    .> Select Domain:
    .> Select Group:
    .> Select Universe (path):
    after some time this error message comes up:
    " File Repository Server Input is down."
    " Could not export the Universe."
    Now this is a NEW problem
    WHAT SHOULD I DO NOW?

  • Error export universes with Import Wizard to BIAR file

    We've some problems exporting universes to a BIAR file using the Import Wizard. Our environment is a BOXI R3.1 on a Windows 2003 machine with Windows AD authentication.
    When we try to export universes with the Import Wizard into a BIAR file, all objects are marked with error "Unknown export failure". This problem occours, since we have defined "Access Restrictions" with BO Universe Designer. When I unmark the option universes and select all, the export works without any problems.
    We're using Windows AD authentification, so the users and groups that are defined in the "Access Restrictions" are AD users and groups.
    How can we backup universes with Access Restrictions? Is there a known problem exporting universes that are using AD groups in the Access Restrictions?

    I have found further information in the import wizard trace logfile
    Server exception caught at .\infostore.cpp(366)
    2008/12/03 10:17:26.536|==| | | 5216|5604| |||||||||||||||(.\infostore.cpp:273) CInfoStore::Query: SELECT SI_SERVER_NAME,SI_CLUSTER_NAME,SI_SERVER_IS_ALIVE,SI_SERVER_IOR,SI_SYSTEM_INFO FROM CI_SYSTEMOBJS WHERE (SI_PARENTID = 16 AND SI_SERVER_KIND = 'aps') OR SI_ID = 4
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||CInfoStore::QueryEx() returned 2 objects with more to come? 0
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||CInfoSessionManager::GetApsListFromNS: APS BOJV01.fundservices.muc:6400 is alive.  Adding to active members
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||CInfoSessionManager::ClusterInfo::UpdateRegistry: Updating bojv01.fundservices.muc:6400; to registry
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||(.\infosessionmgr.cpp:2089) GetApslist: apsList size: 1
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||(.\infosessionmgr.cpp:2090) GetApsListm_Members.GetCount()==1
    2008/12/03 10:17:26.552|==| | | 5216|5604| |||||||||||||||(.\infosessionmgr.cpp:2091) GetApsList m_InactiveMembers.GetSize()==0
    2008/12/03 10:17:26.661|==| | | 5216|5604| |||||||||||||||(.\wireobinit.cpp:125) CWireObject::InitializeStaticPropertyMap() - reference count: 3
    2008/12/03 10:17:26.661|==| | | 5216|5604| |||||||||||||||primer query  to get auth properties
    2008/12/03 10:17:26.661|==| | | 5216|5604| |||||||||||||||(.\infostore.cpp:273) CInfoStore::Query:
    2008/12/03 10:17:26.677|==| | | 5216|5604| |||||||||||||||CInfoStore::Query() SI_info_abuse details: OCA_Abuse exception 7683 at [.\InfoStore.cpp : 2958]  48163 {}
         ...Empty query
    2008/12/03 10:17:26.677|==| | | 5216|5604| |||||||||||||||(.\client_exception_mapper.cpp:257) Server exception: Not a valid query. (FWB 00025)
    OCA_Abuse exception 7683 at [.\InfoStore.cpp : 2958]  48163 {}
         ...Empty query

  • Import and Export Universe Restriction Sets

    Hello Gurus,
    We have a universe which has 100+ Restriction sets. We are in the process of migrating & testing BI4.0. As the developments are still going on in 3.1, Its getting difficult to manage the secuirty(Restriction sets) to deploy in multiple environments.(Restriction sets)
    Is there a vb macro or pre-defined SDK to import and export the Universe Restriction sets from 3.1 Universe Designer to 4.0 Designer.
    Thanks !!

    Why cant use merge them using union/union all if intention is to get them to same sheet? Is it like the metadata is different so that they cant be merged to single sheet?
    If that being the case you need to do it in two steps. 
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My Wiki User Page
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • Error "The Query Returned no Objects" while exporting Universe in UDT?

    Hi,
    I have created a Universe on top of BEx Query using UDT in SAP BO 4.1 and tried to Export the Universe to Repository the following error is appearing.
    "The Query Returned no Objects" so "The Universe couldn't be exported".
    Could you please suggest me what could be the issue and how to resolve this.
    Thanks & Regards,
    Ramana,
    +91 8008665199.

    What version of Oracle 9i are you using? Do you have a standard 'NLS_LANG' environment variable set on client's machines? Or do you set it to different values on different machines?
    Here is one of way you could get around it.
    Could you specify the export parameter 'STATISTICS=NONE' while exporting the table data?
    Try this and see.
    If this is successful, you could use the import utility as usual. You could always compute or estimate statistics on the table after import.

  • Export import issue from higher version to lower version

    Hi,
    I have an export dump file which was taken from 11g database(11.2.0.2.0) and trying to import into lower version of the database 9i(9.2.0.6.0), unable to complete the process.
    Two ways i have found and tested in my test db
    1)TNS entry of 9i database has been put into 11g database
    a)Export dump was successfuly taken from 11g db
    b)Getting below error,while import into 9i database
    IMP-00058: ORACLE error 6550 encountered
    ORA-06550: line 1, column 33:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredIMP-00000: Import terminated unsuccessfully
    2)TNS entry of 11g database put into 9i database version.
    a)During export (trying to take exp dump from 11g db in 9i exp utility),getting below error
    EXP-00008: ORACLE error 1455 encountered
    ORA-01455: converting column overflows integer datatype
    EXP-00000: Export terminated unsuccessfully
    Kindly advice me to overcome from this issue.
    Regards,
    Faiz

    mafaiz wrote:
    Hi,
    I have an export dump file which was taken from 11g database(11.2.0.2.0) and trying to import into lower version of the database 9i(9.2.0.6.0), unable to complete the process.
    Two ways i have found and tested in my test db
    1)TNS entry of 9i database has been put into 11g database
    a)Export dump was successfuly taken from 11g db
    b)Getting below error,while import into 9i database
    IMP-00058: ORACLE error 6550 encountered
    ORA-06550: line 1, column 33:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignoredIMP-00000: Import terminated unsuccessfully
    2)TNS entry of 11g database put into 9i database version.
    a)During export (trying to take exp dump from 11g db in 9i exp utility),getting below error
    EXP-00008: ORACLE error 1455 encountered
    ORA-01455: converting column overflows integer datatype
    EXP-00000: Export terminated unsuccessfully
    Kindly advice me to overcome from this issue.This has nothing to do with APEX. Post on the {forum:id=61} forum.

  • Export Universe after renamed it

    Hi!
    I am using Designer 6.5 and I have imported a universe, saved it with a test-extension and made some changes. Then I renamed it again to the original name and tried to export it.
    Now I get an errormessage which says that the file-name and the universe name already exist in the universe domain and that I need to rename it to export it. But what I really want is to overwrite the original one with mine with the same name. (Exactly as I would have done if i hadn't changed the name)
    Any ideas?
    Regards, Marianne

    Hi!
    If I export my copy, what happens to all reports and users etc that are "connected" to the original one?
    Will that still work? I read in another Forum that if I use "Save as" and rename it, it will get another Id regardless if I later "rename it back" or not. Does another Id affect anything else that I should be ware of?
    Regards, Marianne

  • [Suggestion/Issue] GPO "Start Menu Layout" / PS Export-StartLayout Issue

    To start off with, I have already submitted this to Windows via the Windows Feedback option provided in the client version of Tech Preview.  I have decided to post this on here anyways as this might yield a suggested fix from someone else in the Microsoft
    Community.  I also was unsure if this was a Windows 10 Tech Preview issue (Export-StartLayout is done on the client), or a Server Tech Preview issue as I'm using GPO's.
    When using Export-StartLayout after adding "Network and Sharing Center" and "Devices and Printers" to the start menu, it exports these two tiles with different AppID #'s depending on which user account I'm exporting from.  As a result
    of this, when using the GPO "Start Menu Layout", users do not get the two tiles in question setup, and also locks down the Start Menu so they can't add it.  The lockdown of the Start Menu is by design, however the loss of the tiles presents
    an issue.
    It would be helpfull if they were assigned set AppID's so they can be easily mapped to the Start Menu via the GPO. 

    Hi,
    >> I also was unsure if this was a Windows 10 Tech Preview issue (Export-StartLayout is done on the client), or a Server Tech Preview issue as I'm using GPO's.
    Based on my test, this is not a Windows 10 Tech Preview issue. This situation also happens to Windows 8.1. At this moment, I have to admit that there is no solution known to me for this situation, and thanks for sending a feedback about this
    situation to Microsoft.
    Best regards
    Frank Shen

  • IDcs3 export PDF issues when viewing in Preview

    I appear to be having issues when exporting PDFs from IDcs3. I have drop shadows on text and objects. When i export as a PDF and view it in 'Preview', I get a shadow that extends the area of the object. Drop shadows are not defined, they just have a block blur effect.
    The thing is when I transfer the file over to my MS machine, Acrobat displays the PDF perfectly. Is this a problem with Preview or is it something to do with the export PDF settings.
    Cheers

    Preview is not capable of handling the advance features of exported PDFs.
    Bob

  • InDesign PDF Export Color Issues

    So I've encountered a frustrating problem that I know others have experienced. It involves the PDF export from InDesign where the PDF color is not matching the document view. It's a critical issue regarding soft proofs for designs where color needs to match the desired result. I never had any issues before but now it's kicked in after upgrading to Mountain Lion and CS6.
    Let me preface a few things first...
    Yes, I've callibrated my monitor
    Yes, Creative Suite color settings are in sync.
    Yes, I've tried the changing transparency blend space... makes no difference.
    In my case I have an RGB TIFF placed which has dark midnight blue to light blue tones. When I do an export and it doesn't matter what PDF settings I use the color shifts making it more purplish bllue and the lighter blue tones go away.
    BUT, when I export a JPEG, the JPEG looks PERFECT, just like it should and matches the document view.
    So I figured the problem must've been solved with the new Acrobat XI... I download the trial and installed it. I created a new PDF and it comes up looking like it should. GREAT, except for the price to update to Acrobat Pro XI!
    THEN, some message comes up about trusted certificates?! I click ok... and the color on the PDF goes wrong again! What is the problem with this CRAP? HOW DO I FIX THIS GARBAGE? Is it fixable on the old version (Acrobat X)?
    I've worked in Adobe products for years but they are going backwards and becoming more problematic by the day. Not to mention it's ridiculous to have to pay $200 to get a new version of Acrobat Pro after recently buying CS6. This is an insult to long time professional customers, you should be providing this update FREE to makeup for your broken, out of sync with Apple CRAP.

    Well any local application change to the color settings is going to show up out of sync
    All syncing does is match the application's Working CMYK and RGB settings, but the only case where a Working profile color manages a document is when the doc has no profile assignment. So if I sync to North American General my Working CMYK space is US SWOP, but if I open a document with US Sheetfed assigned, US Sheetfed manages the preview not US SWOP.
    I'm not saying you aren't experiencing a bug, but you have to be sure of what profile assignments or simulation profiles are driving the preview and syncing doesn't do that. How you export (are  you including profiles?, making a conversion?), and what device you are simulating in both programs can make syncing meaningless for existing document's previews.
    I can't test X but with XI if you export a PDF/X-4 (where there's no conversion and all profiles are included), the  preview with Output Preview closed shows RGB objects unchanged—same as ID with Overprint/Sep Preview Off.
    When I open Output Preview the initial Simulation profile is the PDF/X-4 output intent which is the ID doc's assigned profile, in that case  RGB objects preview in the output intent's CMYK space—same as ID with Overprint on.

  • HELP!  Exporting pdf issues - no email links and gray boxes around text

    I'm a newbie to indesign, and trying to learn the program as I go.  I need to export my pdf for onscreen viewing.  When I "print" it works, but I get no email links, and those annoying white lines here and there.  I read that exporting would solve the email link issue, but it opened another can of worms for my project.  Now all my graphics have black or gray boxes across them, almost like censor boxes.  But my email links work. 
       Learning Adobe is like learning a new language, and I have far from mastered it.  So when I exported, I used the lowest resolution presets, assuming it knew what worked better than I did.  After dozens of unsuccessful exports, can someone please help??
         Also, I've been reading posts that say to convert all spots to color to resolve the white line issue.  But it's grayed out in the ink manager.  What is the secret to unlock it?
    Thank you!!

    Thank you for any and all help!
    I have CS5.5, running on windows 7.  It is up to date as of 1 month ago.  Here's a sample of my problem pages.  Also, a screen shot of what it should look like.  My guess is it has something to do with the transparencies, since it's 2+ layers of embossed objects.  If I export in Acrobat 4 (1.3) these boxes don't happen. But then I get the thin white lines across my graphics, and no email links.  As for spot colors, I confess complete ignorance on all color issues,  but  I'm trying to learn as I go.  How can I export this correctly?

Maybe you are looking for

  • ARCHIVE LOGS CREATED in WRONG FOLDER

    Hello, I'm facing an issue with the Archive logs. In my Db the parameters for Archive logs are log_archive_dest_1 string LOCATION=/u03/archive/SIEB MANDATORY REOPEN=30 db_create_file_dest string /u01/oradata/SIEB/dbf db_create_online_log_dest_1 strin

  • Regarding Calculated key figure on Formula variable.

    Hi Gurus I have a requirement. My business scinerio in E-recruiting is to find out no of days between requistion creation date and offer made date in each month of year. For example we have around 120 requistion created in calyender year . 10 requist

  • Table name for transport objects ?

    Hello, I  would like to know the name of 1 or few tables where we can found the different BW objects (ODS, Charac, InfoSource...) + user name + package ($tmp, Zxxx, ...) + eventually the transport order nb. I would like to have this (these) table(s)

  • Javascript calling Java value

    Hi, I've got a slight problem on my JSP page. I have a value thru a value, request.getParameter("adcomments");I'm trying to call it via javascript in an input value like the following: <input name="activate" type="radio" value="3" onClick="document.g

  • ADF UIX submit buttom

    Hello, i've in my application 2 tabs: In my template uit <contents> <link text="Form" destination="formPage.do"/> <link text="DoSomethingWithData"/> </contets> I only want push the first tab that contains the form.do page with a form with a submit bu