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

Similar Messages

  • ICloud lack of preferences and attachment issues

    I've been using iCloud mail for a few weeks after leaving Outlook/Hotmail due to problems. It seems like I've traded off one set is issues for another set with iCloud mail.
    There appears to be no preferences available at all to set up preferred body typefaces and styles, email signature (ie. setting sections in bold or italics), colours or anything like what I could do through Outlook. Even this forum box has more type settings, smileys and indent settings than iCloud
    More annoyingly, any pdfs I attach and send through iCloud mail more often get a renamed to something along the lines of 'ATT000046.pdf'. This creates real issues for me as a freelance designer reliant on jobs being sent to my clients which are precisely named. I cannot work out why some clients receive the correctly named file, and others receive an 'ATT........' one.
    Some files also change to .dat files (a Windows file!?) – this often happens when I zip several pdfs together.
    It's getting really frustrating having no great functionality and the attachment issues too, I'd say iCloud mail is worse than Outlook.
    Can anyone help?

    This has happened to me as well and it's making me seriously consider going back to gmail.  My pdf attachments are being received as .dat files.  Plus, just this morning a pdf that I received came over as a .dat file into my iCloud mailbox.  I forwarded the message to my gmail account and it was a perfect pdf that I opened.
    I got my Mac about a year ago (which I LOVE) and I decided to go all Apple all the time.  But
    -The iCloud email thing has so many quirks, like thei .dat file thing. 
    -The Apple maps aren't as good as the Google Maps app.  I was in NYC this weekend with the family and I tried to use both- Google just worked better (it hurts me to say that).
    -I know that iCloud for documents is the wave of the future (or so they say), but Dropbox just works so effortlessly for my document storage.
    -I know that iWoks is the future, but I can't collaborate with Pages-- my clients all need .doc files and I can't always export to a .doc file.  Sometimes Pages won't let me export, other times things like indentations are off. I got picked for the beta test of iWorks in the cloud and it's nice, but limited in functionality
    I'm wondering if I should be all Apple devices and go back to gmail/google maps/office.  I don't want to do that- I want to be all Apple...not sure what to do because this is driving me crazy. I'm thinking of waiting for iOS7 to come out and see how it works. I know that Apple Maps is being updated too.  Not sure.
    Sorry for the rant.

  • Basic Exporting Question

    My main question is a very basic exporting question, but here is a super-condensed explanation of my big-picture goal for context:
    Large (~450 MB) aiff on CD --> trim w/ Quicktime --> small (~16 MB) MP3 in iTunes
    I would like to take an audio file (aiff) that is approximately 450 MB and export it from Quicktime and in doing so, reduce the file size and convert it to MP3. When I simply try to export it, it doesn't ask me about what size I want, nor does it give the option of MP3 formatting.
    I have figured out how to reach my goal, but it's a mess. After I make my trims in QT, I have to:
    1. select "share" instead of "export".
    2. It asks me what size I want and I select small.
    3. The file is then exported as a Quicktime movie into Mail and the size is reduced from 450 MB to about 20 MB.
    4. I then have to "right-click" on the attachment in the email that is created,
    5. save the attachment,
    6. discard the email,
    7. import the file into iTunes, and
    8. create an MP3 in iTunes to finally arrive at my goal.
    This seems like a ridiculously convoluted process to change a large aiff to a small MP3 and put it in iTunes. Any suggestions?

    Thanks. I guess the basic answer to my question is that it can't be done in one or two fell swoops. The problem is that it starts on a burned disc, and I need to make edits to it before it ends up in iTunes (to be eventually used in iWeb). I was hoping to avoid juggling back and forth between iTunes and QT. I either would have to send it back to QT to do the edits after -->iTunes-->mp3, or import the large file from the CD to QT, make the edits, save changes, import large file to iTunes, convert to mp3.

  • Attachment issue

    I'm having this attachment issue since last 6 months or so, before I was sending around upto 10 jpg attachments through my curve, what happens now that even a small jpg image takes ages to remain in process of sending and than after some time I get error msg that msg could not be send "unknown error" My intelegent service provider Mobilink puts all blame to blackberry main server.

    Your carrier should not say this to you. Blaming RIM will not take away the responsibilty of your carrier!! If RIM is to be blamed then carrier should escalate the issue to RIM. They can't take such a long time to resolve!!!
    I'm considering that you're on BIS service. All the BES users should consult with their respective BES admins. 
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • SQL Server 2008 .MDF File attaching issue

    Hy all guys here is big Happy news about the SQL Server 2008 database.mdf file attaching issue on Windows 8.1 and SQL Server 2008
    I found the solution like this
    first you go to the directory of your computer and go to that folder where your database and other files are like
    folder having database and files then > Right click and > security > then give full rights from which user you LOGIN and then apply > ok after that go to SQL Server 2008 > Right Click > run as administrator
    Hurray your problem will be resolve I Resolved my issue too  thanks to providing every solution
    if you guys find solution please give me best regards thanks  

    Hi Farhan-Islam,
    Glad to hear that your issue had been solved by yourself. Thank you for your sharing which will help other forum members who have the similar issue.
    Regards,
    Lydia Zhang

  • Office 2010 standard attachment issue

    Hi All,
    We have encounter an attachment issue when we upgraded the MS office from Office XP to Office 2010. When we attach 2 or more attachments (I tried .PDF or .JPG). Office application will not response and the outlook trace icon will appear "Outlook is
    retrieve data from exchange server". The attachment will appear at the message after 5-10 mins (The longest time was ~45mins to attach a 1MB .pdf).
    I also tried to disable the outlook add-ins and run as safe mode (run outlook /safe). But the problem still exist.
    Our exchange server is running at version 6.5.7638.1
    Best Regards,
    Samuel Chu

    Hi,
    The "retrieve data" popups are usually an indication that the client is taking unusually long time to receive information back from the server, or contact the server. The causes for the popups are:
       - Exchange server performance problems
       - client (or add-in) problems
       - network related issues
       - large number of items in mailboxes
       - Active Directory related issues (performance issues etc)
    Does this issue happen to all your clients or just a few users? If it happens to just a few users, please first make sure the mailbox size is not too large. Make sure these users don't have a large number of items in a folder. See:
    http://support.microsoft.com/kb/905803
    If all or major of your clients are experiencing this issue, then the problem is most likely server related (or network on the server side related), I'd recommend you post a question in the Exchange forum to get further assistance:
    https://social.technet.microsoft.com/Forums/office/en-US/home?category=exchangeserver
    For more information, you can refer to this blog article:
    http://blogs.technet.com/b/exchange/archive/2005/05/25/405353.aspx
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

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

  • Safari 5.1 HTML5 HTTP basic access authentication issue video does not load

    I have a .m4v video referenced in a page with the HTML5 video tag in a folder which is in a password protected folder housed on iPage.
    Safari 5.0.5 plays the video fine.  Safari 5.1 fails to load/play the video in the protected folder.  If I move the video to a not protected folder, Safari 5.1 plays it fine.
    This is on iPage.  Back on MobileMe all is fine with 5.1.
    I think this is a HTTP basic access authentication issue with 5.1.
    Anyone have similar issue? Work around?

    Yes, I can also confirm this behaviour. This is in Safari 5.1.1, but I also see the exact same thing in WebKit nightlies.

  • 11I FND_LOBS EXPORT 및 ATTACHMENT DATA 의 삭제

    제품 : AOL
    작성날짜 : 2003-12-02
    11I FND_LOBS EXPORT 및 ATTACHMENT DATA 의 삭제
    ==========================================
    PURPOSE
    FND_LOBS table 에서 Export 및 Attachment 시 발생한 data 삭제하여 수행 성능을 향상시킴.
    Explanation
    1)Data 건수 확인
    select program_name, count(*) from fnd_lobs
    group by program_name;
    2) 데이터 Purge
    'Purge Obsolete Generic File Manager Data' Concurrent manager program을 SYSADMIN group 에 Assign 하여 Enable 시킨다.
    'export' Parameter 를 선택하여 Concurrent Program을 수행한다.
    Expiration date은 Applications에서 자동으로 설정한다.
    Example
    Reference Documents
    Note 171272.1 - How to Drop Old/Expired Export and Attachment Data From
    FND_LOBS.

    제품 : AOL
    작성날짜 : 2003-12-02
    11I FND_LOBS EXPORT 및 ATTACHMENT DATA 의 삭제
    ==========================================
    PURPOSE
    FND_LOBS table 에서 Export 및 Attachment 시 발생한 data 삭제하여 수행 성능을 향상시킴.
    Explanation
    1)Data 건수 확인
    select program_name, count(*) from fnd_lobs
    group by program_name;
    2) 데이터 Purge
    'Purge Obsolete Generic File Manager Data' Concurrent manager program을 SYSADMIN group 에 Assign 하여 Enable 시킨다.
    'export' Parameter 를 선택하여 Concurrent Program을 수행한다.
    Expiration date은 Applications에서 자동으로 설정한다.
    Example
    Reference Documents
    Note 171272.1 - How to Drop Old/Expired Export and Attachment Data From
    FND_LOBS.

  • Basic Export Issue - DVD and websize AVI/MPEG

    Hello All,
    I am having a heck of a time figuring out how to export my sequence to either a DVD, ISO, or AVI.  I am sure it is something I am just overlooking.
    I made a sequence with a song a few photos and some movie clips.  When I goto Export.  I go with NTSC DV Widescreen 24 (because that is what it is).  When I export the file it ends up 26GB!  Crazy!  I just want a 4.5Gb ISO or a 25 Mb AVI to export for the web.
    Can someone please assist on this quite trivial issue because I have all of this wonderful media and no freakin' clue how to watch it  :-)
    Thanks much!
    -Kelly

    Yes, Kelly, Hunt is always here, hiding in the corner, waiting to help.
    But don't hide in the corner; use the search functions and "help"!  Then come here for forum assistance.  Then use help again if the forum answer only gets you part way!
    a)  You can google; just a plain old google for most anything.  Often that has worked better, but, as Hunt says, the searches here are improved.
    b) Todd says (he's one of the ones, maybe the only one, who beats Hunt around the head) to use the community search within Adobe, which uses the google engine.  This page is the main Premeire forum link, and the second paragraph under "Read this before asking questions on this forum" gives 3 links (really examples) of searching adobe regarding Premiere.
    http://forums.adobe.com/community/premiere
    Here's one of those links/examples.
    http://community.adobe.com/help/search.html?q=sequence&lbl=premierepro_product_adobelr&sit e=premierepro_cs5_all&hl=en_US&lr=en_US&self=1&area=0
    See the "Adobe reference only"?  It's filtered for the help documents.  Just hit the "x" and it will give all all Adobe content for Premiere - so you see tu torials, blogs, even the (now old but still useful) Premiere wiki.
    There's even a link to add this as a search engine in your browser settings.
    Try it; you'll like it!
    Okay Hunt, you can come out now.

  • 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

  • PL SQL web service call to export attachment

    Hi,
    I am trying to export a project from Primavera DB using the ExportProject web service from PL/SQL. Have a basic question
    - How can the PL/SQL receive the exported file from a web service? I now that the Export service uses MTOM (Message Transmission Optimization Mechanism) to send the output files as attachments. Is the attachment coming in the SOAP message itself?
    - How can i find the attachment?
    would really appreciate any help

    Hi,
    The below error trace you've provided doesn't confirm that Weblogic server has thrown the error.
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: WSDLException: faultCode=OTHER_ERROR: Failed to read WSDL from http://svr:8892/wsTest2-getSame-context-root/TestMePort?wsdl: HTTP connection error code is 500 at oracle.sysman.emSDK.webservices.wsdlparser.ParsedWSDLFactoryImpl.getParsedWSDL(ParsedWSDLFactoryImpl.java:157) at oracle.sysman.emSDK.webservices.wsdlparser.ParsedWSDLFactoryImpl.getParsedWSDL(ParsedWSDLFactoryImpl.java:87) at oracle.sysman.emas.model.wsmgt.WSTestModel.init(WSTestModel.java:325) at
    Please paste complete stacktrace of the error to check and also include the caused by section in the error.
    Thanks,
    Vijaya

  • 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

  • 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

  • Lightroom 4.4 jpeg export watermark issue

    Not sure abbout the older LR versions because I only tried this on LR 4.4.. After I edited my Raw images shot by Nikon D600, I'd like to export them to Jpeg format with my watermark. The watermark will not show if I exported the images in original size (6016 x 4016) as shot. However the watermark works fine if I resize the images to a smaller size, such as 1200 x 1024. Has anyone experienced the same issue? How can I work around it?

    Irrespective of the rights/wrongs about exporting full resolution jpegs, the problem you describe sounds like the long-standing watermark bug. Basically there are certain circumstances whereby a text-based watermark will not show on the exported jpeg, and the factors that influence this are as follows:
    The font being used for the watermark.....only certain fonts may be affected, e.g. Lucida Calligraphy is one. But even then the bug may not occur, as it also depends on:
    a) The pixel dimensions specified for the output file. The larger the pixel size, the greater the risk that the bug will bite (as you have already discovered).
    and/or
    b) The proportional size as specified in the watermark editor....again the larger the size, the more likely the bug will bite.
    So the workarounds are:
    1) Try a different font.
    2) Try reducing the pixel dimensions for the output file.
    3) Or try reducing the specified proportional size.

Maybe you are looking for

  • ITunes U Raw Data Report fail to show Chinese Character

    As catpioned. The tsv file seems in wrong encoding. All chinese characters are displayed as question marks ---> "????" . To Apple Support, please fix it as soon as possible. To other iTunes U Site Administrator, did you encounter the same problem?

  • Customer Master Error

    when  i open XD03 system gives error as "No authorization to display accounts from account group COMMON SOLD TO PARTY" I dnt know y it is cmng and i have all rights for create display.

  • How to solve gift certificate or prepaid card code you entered has not been properly activated ,,please answer

    gift certificate or prepaid card code you entered has not been properly activated

  • Slt problem

    in slt i was added new records into the table and by using slt i was got that records in hana database, while slt in replication i was added new field in to the table and i was trying to activate the but iam getting error like this,how can i activate

  • My siri does not work

    I just got my iPhone 4s today.  When I tried to use Siri, she replied to me "I'm sorry but I cannot answer your questions right now. Something has gone wrong and I cannot help you."  I tried multiple types of questions, turned the phone on and off, t