LR4.1RC Exporting sRGB Issue

Hi, when I export in Window 7 with LR4.1RC, it doesnt seem to be attaching the Color Representation: sRGB when I open the properties of the file and look at the details.  So when I preview in windows viewer or any other program but LR or PS it is not rendering with my applied actions.  If I open the image in PS CS5 and choose edit>assign profile and then choose sRGB and save and close then it will finally have the Color Represention: sRGB, I have never had this issue until upgrading.  Anyone have a clue as to what is going on?  See below the "Color represention" should say "sRGB" but it is blank even though I exported in LR with sRGB selected
Thank you,
Sean

What the Windows Properties dialog shows you is the Color Space Exif tag. The only two values allowed in the EXIF color space field are (1) sRGB and (2) unspecified. This basically means that there is no way to tell what color space (ICC profile) to use if the color space is not sRGB.
LR always embeds a profile (but does not set the Color Space tag), which is more relevant than the color space tag (which might be of limitted use if no profile is included).
See also here:http://www.steves-digicams.com/knowledge-center/understanding-embedded-image-info.html
Beat

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

  • 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..

  • LR4.1RC The Moiré brush is missing - where did it go?

    LR4.1RC The Moiré brush is missing - where did it go?

    To be clear in LR4.0 there is a Moiré in the develop module when you click on the adjustment brush at the top right. In LR4.1RC the Moiré option is missing. I'm guessing tis is a bug and that Adobe didn't intentionally remove it.

  • CS5.1 opens in a small window from LR4.1RC

    When I send an image from LR4.1RC to CS5.1 (64bit), CS5 opens in a small window instead of full screen. If I open CS5 directly from the desktop, it does open full screen. I am running Vista. Is this a bug, or something with my OS? Thanks.

    I assume that when PS opens from LR it is just the Restore Down size (the button you have when a window has been Maximized), and that you are able to Maximize the window and everything is fine, that this is just a nuisance. I also assume that when you say opening Photoshop alone it comes up in full screen, you just mean Maximized.
    With that in mind, this shouldn't be an LR or PS bug, because I haven't heard of anybody else running into similar behavior. However, there could be some sort of interference on your system.
    The first thing I would suggest is to create a new user account and test there. This will determine if some setting or other is the root of this behavior.

  • 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.

  • [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.

  • Nikon D7000 LR4 Camera Raw color issues

    I just upgraded my camera from a Nikon D70 to a D7000.
    Problem: When I process the RAW /NEF files with Adobe Lightroom 4 the color is terrible. By that I mean, the images look dull, dark and have no pop. The coloring is not even close to what is displayed on the Nikon camera screen.
    When I use Nikon View NX: The software which is pakaged with the camera produces an image which is, or almost identical to the image on the camera after the photo is taken.
    I like the funcionality of lightroom better than ViewNX, so what I have been doing is processing with ViewNX and then exporting to a TIFF.  Opening up LR4 and then importing and cataloging.  This process is a pain and time consuming. 
    I also have found LR3 does a better job than LR4 at processing the images.
    Is there a way I can tweak or download corrected ACR settings to match my Nikon D7000.

    I have figured out myself the profile correction problem for my Nikon D7000 NEF Problem. It almost match to the one in NX2 or even on camera LCD.  the following is what I have adjusted in my LR4
    Brightness +1.00
    Contrasts +28~33
    Shadow +40~55
    Black -25
    Don't Forget change the Profile setting on Camera Calibration under the Develop mode to match the what you set on your camera. I always shot on Standard mode, therefore I set the Profile to Camera Standard.
    The following is the way I figure it out.
    1.  I imported the photo under "Zeroed" at Import page under Develop setting > Lightroom Genaral Present > Zeroed
    2.  Open one of the imported picture on Develop mode
    3.  Scroll down to Camera Calibration change the profile setting to match they one you set on your camera, in this case I choose Camera standard.
    4. Under the Camera Calibration>Process you will see 2012(Present), changed it to 2010, and change it back to 2012 (present again)
    5. You will notice that the develop setting automaticly change to the following (Brightness -1.00, contrasts -33 and black +25) Let say this is what lightroom did to your picture( from Nikon D7000 NEF)
    6. and then Change everything back to " 0 " will you find your picture nearly close to the one you saw on NX2.0 or Nikon LCD
    If your found the step above is hard to follow, please just change the Brightness +1.00, Contrasts +33 and Black -25, and dont forget adjust a bit of shadow as well.
    for the people who dont know what Nikon done to Nikon D7000, please dont be expert to say "you dont know RAW".  please read more reviews first before helping people who are new to RAW or even stuck on RAW.  This forum is helping people with our knowledge, is not to make people need help to get more confuse.
    For Nikon D7000 user.... Remember turn D-Lightning off.... this is one of the problem will cause LR4 change your tone to more darker, especially on portrait photoshot. Hopefully Adobe will realease the new update soon to match the new system inside Nikon camera.
    Please note that the step above only Apply for Nikon D7000 and Lightroom 4 only. And it is not 100% correct to what you seen on your camera, at least is 80~90% Match!!

  • 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?

  • Excel Export Formatting Issue

    HI,
    I am working with CR XI R2 and asp.net2.0.
    I am facing some formatting issue when the report is exported to excel.
    I have to maintain the same formatting as in the crystal report ,when the data is exported to excel.
    My report is a tabular report.I tried exporting the report from Crystal report designer.Not via web application.
    I have used the data only option.When i used the other option (Excel 97-2000(xls)) the text was getting rotated at 90 degree but other formatting was not exported correctly.So i found data only option was more appropriate in my case.
    I hope same things can be achieved by asp.net also one we get it in the designer.
    while exporting from the designer,the main issues i am facing are
        1) In the report some headings i have put at 90 degree rotation.
            When it gets exported to excel the headings are getting exported with 0 degree rotation.
    2) I have applied some back groud color for groupfooter and page header.
         This setting is also not getting exported .the report is getting exported with out any back ground color formatting
    Is there any way to attach the exported pdf and excel file ,so that the issue would be more clear for you all.
    Please let me know if you require more information.
    Regards,
    smitha
    Edited by: smitha thomas on Jul 3, 2009 6:12 AM
    Edited by: smitha thomas on Jul 3, 2009 7:43 AM

    Hi Smitha,
    Use the  other option of Microsoft Office Excel Workbook(*.xls) instead of (Excel 97-2000(xls))
    *Close the thread if issue solved.
    Regards
    Jambulingam.P

  • Preview Monitor and Exporting Quality Issues

    Hello, in a previous life I was a video editor from the world of Avid and I just picked up Premiere for an emergency side mission at my current place of employment and I have run into a couple issues with CS4.
    1. The preview monitor for the Sequence displays a lower quality of the video that comes from the uploaded Clip and it also does not play back at a steady frame rate. However, when I look at the Clip in the secondary preview monitor that is reserved for clips, titles, etc, the video quality is as high as what is expected. How do get the sequence monitor to playback at the quality the clips are uploaded as and how do I get the playback to do so at a steady 30fps?
    2. My exporting experience was based around dubbing directly to Beta tapes and I never really had to do any digital file exporting. I need some tips on what to export a Sequence as that will retain a high amount of the quality while also keeping the file size to what will fit on a disk. The video length in this case would never be more than 5 minutes as I am only working on sales videos. Also, the file needs to be playable in Windows Media Player.
    Thank you in advance for any help on these issues.

    Please provide
    these details to help us help you.
    Cheers
    Eddie
    PremiereProPedia   (
    RSS feed)
    - Over 300 frequently answered questions
    - Over 250 free tutorials
    - Maintained by editors like
    you
    Forum FAQ

  • ES11X-G4-H essbase export adapter issue

    Hello,
    i have this problem with essbase export adapter for FDM:
    When i perform export step everything seems to be fine but /APPS/myFdmApp/myFile.dat doesn't contain records that i can find with both on web interface and with a query on oracle fdm's system views "VDATAFACT" or "VDATA" (on repository database).
    No errors or reject records infos are shown nor in fdm neither in essbase (system and app) log.
    This happens with very large input file (300mb). Anyone has some ideas on what's happening?
    Thank you in advance,
    Daniele
    FDM: v11.1.2.1
    EsbAdapter: ES11X-G4-H
    S.O.: Win2008 SE R2 (x64)
    RDBMS: Oracle 11.2.0.1.0 (on linux)

    I've opened a service request. Here it is the last message i got from them. Please note that this SR had lasted over 2 month.
    What they say basically is: it doesen't work but FDM is not designed for big amount of data, so we are not going to fix it.
    Which is the max filesize handled by FDM is unknown....
    Daniele
    Hi Daniele,
    Good Morning!
    I tried to Reach you on the Number Mentioned in the SR.We Discussed This Issue With the Product Specialist and They have Suggested Not to Use 200Mb File, because it is too Big for FDM to Handle it, Please Try to Split the File and Load it, FDM is not a ETL tool to Handle Such big File.Please let me know if you want anything Else on This.
    With Regards,
    xxxxx.
    Hello xxxxx,
    could you please provide me the max file size handled by fdm? I'd like to have some docs on that also.
    regards,
    Daniele
    Hi Daniele,
    There is No Limitation as such FDM is not designed to load Millions of records. It's a End user fiinancial tool, not designed to be used as an ETL tool, so there is not a restriction per say, but it's not designed to be used in that manner.
    With Regards,
    xxxxx

  • CSV Export delimeter issues

    Hi,
    I have column in report which contains comma,tab and various special characters. The report displays fine on dashboard but when it is exported via CSV or tab delimited option the cells values shift sideways where it encounters a comma ( in case of csv) which gives incorrect result for the rest of the columns when report is downloaded. Is there a workaround to resolve the issue at OBIEE level?
    Version OBIEE 11g
    Thanks.

    Hi all,
    Thanks for the inputs.
    The issue is now resolved.
    I had amended the " before and after the field in the mapping by writing a simple udf.
    str = '"' + str + '"';
    return str;
    The csv file is now generating properly.
    Since the file has to open as an excel file other options like fixed field lengths and having a different delimiter that , were not working properly.
    This approach works perfectly.

Maybe you are looking for

  • Every time I add a photo to a slideshow it messes up my entire slideshow. It puts the pics in a completely different order. What can I do to stop this?

    When using iphoto, every time I add a photo to a slideshow, it rearranges all the photos in the slideshow.  Then I have to go back and put them back in the order that I wanted. What can I do so it doesn't do this?

  • Z30 Extended warranty for black screen

    Hello everyone, I see that BlackBerry is now offering an Extended Warranty for the Z30's with the Black Screen issue.  I'm wondering if I have the same problem and if this warranty might apply to me.  After the update, my Z30 would have the bottom 1/

  • MERGE: unexpected behaviour, oracle 11g

    Hi all, I'm facing a strange behaviour with Merge statement. In particular in doc Oracle we read: "MERGE is a deterministic statement. That is, you +*cannot update*+ the same row of the target table multiple times in the same MERGE statement." My sou

  • Itunes has encountered a problem!!!! please help

    Hi, i am having problems with itunes and quicktime, both of them are already installed on my pc, but they wont open at all.... i have a compaq pc windows xp and when i try to open itunes it says "Itunes has encountered a problem and needs to close, s

  • How to make flush w/ menu

    See this accordion menu on the top left? http://web.mac.com/abenningfield/iWeb/Jabberwocky/Home.html I added the side bars. No matter what I do it won't go flush w/ the menu. The menu is js/css/html.......the side bar is just inspector created (inser