Issue - DBMS_DATAPUMP - EXPORT, TRANSPORTABLE

Hello everyone,
OS: RHL 64
Database:10.2.0.4
For two days I am struggling with my problem.
The issue is that I am trying to do export trasportable using DBMS_DATAPUMP.
When I am using DBMS_DATAPUMP in my log I see
Starting "DBA_GRP"."EXP_JOB11":
Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
Master table "DBA_GRP"."EXP_JOB11" successfully loaded/unloaded
When I am using
expdp dba_grp/pasw_grp@TST DUMPFILE=tablespacename200812_alex.dmp DIRECTORY=trans_dir TRANSPORT_TABLESPACES=tablespacename200812
in the log file I see
Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
Processing object type TRANSPORTABLE_EXPORT/TABLE
Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
Because DBMS_DATAPUMP misses
Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK and
Processing object type TRANSPORTABLE_EXPORT/TABLE
I am not able to import the transportabe tablespace back to the database.
I have googled, in ask tom, oracle forum and many other web-sites, but was not able to resolve my problem.
Could you please have a look my code?
I believe the issue is in steps: STEP 4 or STEP 4-1 but I am not sure. I may missing another parameter or so.
Thank you very much for your help in advance!
BEGIN
v_dp_num := DBMS_DATAPUMP.OPEN('EXPORT', 'TRANSPORTABLE',NULL,'EXP_JOB11');
DBMS_OUTPUT.put_line('STEP 1 done: job handle no is ' || v_dp_num);
DBMS_DATAPUMP.add_file(handle => v_dp_num,
filename => rec.tablespace_name || '.metadata.log',
DIRECTORY => 'TAB_PART_ARCH',
filetype => DBMS_DATAPUMP.ku$_file_type_log_file
DBMS_OUTPUT.put_line('STEP 2 done');
DBMS_DATAPUMP.add_file(handle => v_dp_num,
filename => rec.tablespace_name || '.metadata.dmp',
DIRECTORY => 'TAB_PART_ARCH',
filetype => DBMS_DATAPUMP.ku$_file_type_dump_file
DBMS_OUTPUT.put_line('STEP 3 done');
DBMS_DATAPUMP.set_parameter(handle => v_dp_num,
name=>'TTS_FULL_CHECK',
value=>1
DBMS_OUTPUT.put_line('STEP 4 done');
DBMS_DATAPUMP.metadata_filter(Handle => v_dp_num,
Name => 'TABLESPACE_EXPR',
value => 'IN (''%tablespacename200812%'')'
DBMS_OUTPUT.put_line('STEP 4-1 done');
DBMS_DATAPUMP.metadata_filter(Handle => v_dp_num,
Name => 'TABLESPACE_LIST',
value => '''tablespacename200812'''
DBMS_OUTPUT.put_line('STEP 5 done');
DBMS_DATAPUMP.start_job(v_dp_num);
EXCEPTION
WHEN OTHERS
THEN
v_sqlerrm := SQLERRM;
sp_log('METADATA FILE CREATION FAILED FOR ' || rec.tablespace_name || ' reason: ' || v_sqlerrm);
DBMS_DATAPUMP.stop_job(v_dp_num);
END;

Hi,
That line
Processing object type TRANSPORTABLE_EXPORT/TABLE
is missing when the datapump can't find any tables in the specified tablespace. You could check it by using this query:
select table_name from dba_tables where tablespace_name in 'YOUR_TABLESPACE_NAME';
I'm going to guess that you won't get any rows back.
Here is an updated .sql script that works fine. In the beginning I drop and then create a tablespace and table. If you have a tablespace or table called that and you run this script, it will drop these 2 exiting objects.
---test_api.sql
set echo on
drop tablespace test including contents;
create tablespace test datafile 'test.f' size 10m reuse;
create table scott.test_table (a number) tablespace test;
insert into scott.test_table values (1);
commit;
alter tablespace test read only;
declare
v_dp_num number;
v_sqlerrm VARCHAR2(4000);
BEGIN
v_dp_num := DBMS_DATAPUMP.OPEN('EXPORT', 'TRANSPORTABLE',NULL,'EXP_JOB25');
DBMS_DATAPUMP.add_file(handle => v_dp_num,
filename => 'metadata.log',
DIRECTORY => 'DPUMP_DIR',
filetype => DBMS_DATAPUMP.ku$_file_type_log_file
DBMS_DATAPUMP.add_file(handle => v_dp_num,
filename => 'metadata.dmp',
DIRECTORY => 'DPUMP_DIR',
filetype => DBMS_DATAPUMP.ku$_file_type_dump_file
DBMS_DATAPUMP.set_parameter(handle => v_dp_num,
name=>'TTS_FULL_CHECK',
value=>1
DBMS_DATAPUMP.metadata_filter(Handle => v_dp_num,
Name => 'TABLESPACE_EXPR',
value => 'IN (''TEST'')'
DBMS_DATAPUMP.start_job(v_dp_num);
EXCEPTION
WHEN OTHERS
THEN
v_sqlerrm := SQLERRM;
DBMS_DATAPUMP.stop_job(v_dp_num);
END;
------ metadata.log output
Starting "SYS"."EXP_JOB25":
Processing object type TRANSPORTABLE_EXPORT/PLUGTS_BLK
Processing object type TRANSPORTABLE_EXPORT/TABLE
Processing object type TRANSPORTABLE_EXPORT/POST_INSTANCE/PLUGTS_BLK
Master table "SYS"."EXP_JOB25" successfully loaded/unloaded
Dump file set for SYS.EXP_JOB25 is:
/ade/dgagne_l6/oracle/work/metadata.dmp
Datafiles required for transportable tablespace TEST:
/ade/dgagne_l6/oracle/dbs/test.f
Job "SYS"."EXP_JOB25" successfully completed at 16:35:10
Please let me know if you have success in getting your tables in the dumpfile.
Processing object type TRANSPORTABLE_EXPORT/TABLE
Thanks
Dean

Similar Messages

  • Error while exporting transport requests

    Dears,
    In our PI 7.1 server,configured with CTS +,We are getting below error while exporting transport requests:
    Caused by: com.sap.tc.di.draft.ts.TsExecutionException: Error executing function (check stacktrace for details): EPS_OPEN_OUTPUT_FILE, (service=com.sap.tms)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.TmsJCoExceptions.throwTsServiceException(TmsJCoExceptions.java:74)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.EpsJCoAdapter.openFile(EpsJCoAdapter.java:98)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.AbapEpsOutputStream.open(AbapEpsOutputStream.java:83)
    ... 40 more
    Caused by: com.sap.conn.jco.AbapException: (126) OPEN_FAILED: OPEN_FAILED
    at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.execute(MiddlewareJavaRfc.java:1492)
    at com.sap.conn.jco.rt.ClientConnection.execute(ClientConnection.java:1065)
    at com.sap.conn.jco.rt.RfcDestination.execute(RfcDestination.java:987)
    at com.sap.conn.jco.rt.RfcDestination.execute(RfcDestination.java:977)
    at com.sap.conn.jco.rt.AbapFunction.execute(AbapFunction.java:300)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.JCoAdapter.executeFunction(JCoAdapter.java:103)
    at com.sap.tc.di.draft.cts.impl.adapters.jco.EpsJCoAdapter.openFile(EpsJCoAdapter.java:78)
    In SE01 it show tp 12 while releasing request.
    Please suggest.
    Shivam
    Edited by: Shivam Mittal on Mar 16, 2010 1:04 PM

    File Permission Issue.

  • Import and Export transport requests on Netweaver 2004s Sp11 Sneak Preview

    Hi Experts,
    I have configured the transportation system <STMS> in order to import and export transport requests on the NSP system. The configuration is working properly as files can be imported and exported out of the C:\sapmnt\trans directory. (configuration distributed by STMS -> Overview -> Systems -> Extras -> Distribute TMS Configuration, Folder SAPMNT shared).
    The problem I'm facing with the import of some example transports is given by the hanging import queues. In phase 'Import ABAP Dictionary Objects' I have the following message for almost all objects -> '... was not imported in this step'.
    I tried to solve this issue by running SE38->RDDNEWPP with DDIC user to schedule job RDDIMPDP for TP imports. I also made the config in TP_DOMAIN_NSP.PFL with SYSTEM_PF = C:\SAP\NSP\SYS\profile\DEFAULT.PFL.
    The error is still in logfile SLOG0732.NSP
    ERROR:       The following call returned with exit code 7:
    ERROR:         sapevt.exe SAP_TRIGGER_RDDIMPDP -t name=NSP
    and logfile dev_evt
    ERROR ***: MsSndTypeOnce, rc = -20
    ERROR ***: Event raise failed
    With the exports there is a similar issue in the EXPORT phase, given the note
    0 entries from WDY_APPLICATIONT exported.
    Batch process is available (parameter rdisp/wp_no_btc = 1)
    Profile has been activated by rz10->utilities->import profile->ofactive servers.
    Any ideas what still can be wrong? Does the import export and DDIC activation really work with the sneak preview?
    Thanks
    Christoph

    Hi Peter
    First of all thanks for your advice.
    I did No. 1. 2. 3. steps.
    Step 4. reacts with the folowing error message.
    Transport control program tp ended with error code 02008.
    Errors: error in transportprofile (param missing, unknown).
    My  license expires in four days. I tried to extend it via http://www.sap.com/minisap
    1. System-ID *   
    2. Hardware-Schlüssel (HWID) *   ?
    3.Systemnummer  ?
    What is to be entered in 1 and 2.
    Where should I look for HWID and Sysnr ?
    Thanks a lot again for your help
    With regards
    Fisseha

  • Issue with export in Excel in WAD

    Hi
    I have an issue with export to excel in WAD. I have a web template with two or more tabs.
    On the webtemplate I have two buttons to export to excel. One to export the content from the active tab and one button to export content in all tabs.
    My problem is that when I export to excel it always add the current/active content twice. I've tried with both buttons and they work as expected except that they export one table to much (the active).
    can anyone help / give a clue what to look for.
    br,
    John
    Edited by: John Dolph on Apr 15, 2010 10:50 AM

    Hi
    Sorry I has been a while but the problem still occurs,
    I've defined my export button group like this in a seperate template and I expected that it would only return the resultset from TAB_A and TAB_B but it also export the resultset from the tab I'm currently on.
    <bi:TEMPLATE_PARAMETERS name="TEMPLATE_PARAMETERS" />
                <bi:BUTTON_GROUP_ITEM name="TAB_BUTTONs" designheight="23" designwidth="300" >
                    <bi:BUTTON_LIST type="ORDEREDLIST" >
                        <bi:BUTTON type="COMPOSITE" index="2" >
                            <bi:CAPTION value="EXCEL" />
                            <bi:TOOLTIP value="Table, Graph and/or Table/Graph download to PDF" />
                            <bi:ACTION type="CHOICE" value="INSTRUCTION" >
                                <bi:INSTRUCTION >
                                    <bi:EXPORT >
                                        <bi:ITEM_REF_LIST type="UNORDEREDLIST" >
                                            <bi:ITEM_REF index="1" value="TAB_A_ANALYSIS" />
                                            <bi:ITEM_REF index="2" value="TAB_A_CHART" />
                                            <bi:ITEM_REF index="3" value="TAB_B_ANALYSIS" />
                                            <bi:ITEM_REF index="4" value="TAB_B_CHART" />
                                        </bi:ITEM_REF_LIST>
                                        <bi:EXPORT_FORMAT value="XLS" />
                                    </bi:EXPORT>
                                </bi:INSTRUCTION>
                            </bi:ACTION>
                        </bi:BUTTON>

  • SSRS 2012 Conditional Formatting Color Issues When Exporting to Excel

    Hi all,
    We recently upgraded to SQL 2012 from SQL2008 R2. I'm having a strange issue with SSRS2012.
    One of the report has conditional formattings on cell background colors. Everything works fine when render the report in browser or preview mode. However, the conditional formatting stop working when export the report to Excel (no issues if
    export to pdf). All cells are high-lightened with pre-defined color although it should only high-lighten those cells that fulfil the condition.
    Has someone encountered this issue before ? Thanks for any help.

    Hi ZZ02,
    I have test the scenario in my testing environment, however, everything goes well when exporting to Excel format. The issue might be related to the expression for the conditional background color. To make further analysis, please post the expression as well
    as the report design structure.
    Additionally, in SQL Server 2012 Reporting Services, the Excel rendering extension renders a report to the native format of Microsoft Excel 2007-2010, the format of which is ExcelOpenXML. By default, the previous version of the Excel rendering extension,
    compatible with Microsoft Excel 2003, is disabled. At this time, I suggest that you enable the Excel 2003 rendering extension by modifying the RSReportServer.config file. After that, the Excel 2003 rendering format will be available on report manager (not
    available in Report Designer). So, please export the report from report manager and check the result again.
    For more information about enable the Excel 2003 rendering extension, please see:
    http://social.msdn.microsoft.com/Forums/en/sqlreportingservices/thread/0713de27-dcc0-4e51-81ac-5272647d171f
    Regards,
    Mike Yin
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here. 
    Mike Yin
    TechNet Community Support

  • Issue while exporting report in PDF using crystal report XI

    Hello,
    I am facing issue while exporting a report to PDF through crystal report XI. Reports are generating properly in the crystal report browser but when I am exporting the reports in PDF or trying to get print by clicking on print button, reports not generating properly.
    Allignment in the exported PDF reports getting changed and reports margin is also changes. Due to this some part of report is chopped and printed on the next page.
    I have deployed my application on IBM WebSphere 6.1 server and I am getting following error which might help to identify this issue.
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: The response has already been commited.---- Error code:0 Error code name:succeeded
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKException.throwReportSDKException(Unknown Source)
         at com.crystaldecisions.report.web.component.o.a(Unknown Source)
         at com.crystaldecisions.report.web.event.br.a(Unknown Source)
         at com.crystaldecisions.report.web.event.w.a(Unknown Source)
         at com.crystaldecisions.report.web.event.b7.broadcast(Unknown Source)
         at com.crystaldecisions.report.web.event.av.a(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.do(Unknown Source)
         at com.crystaldecisions.report.web.WorkflowController.doLifecycle(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
         at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)
         at com.ibm._jsp._CrystalReportViewer._jspService(_CrystalReportViewer.java:107)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:85)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:966)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:463)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:115)
         at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:168)
         at com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.java:92)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1425)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:92)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:465)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:394)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1812)
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:152)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:213)
         at com.ibm.io.async.AbstractAsyncFuture.fireCompletionActions(AbstractAsyncFuture.java:195)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:193)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:725)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:847)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1498)
    Caused by: com.ibm.wsspi.webcontainer.ClosedConnectionException: OutputStream encountered error during write
         at com.ibm.ws.webcontainer.channel.WCCByteBufferOutputStream.write(WCCByteBufferOutputStream.java:80)
         at com.ibm.ws.webcontainer.srt.SRTOutputStream.write(SRTOutputStream.java:96)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.writeOut(BufferedServletOutputStream.java:438)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.flushBytes(BufferedServletOutputStream.java:344)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.flush(BufferedServletOutputStream.java:323)
         at com.ibm.wsspi.webcontainer.util.BufferedServletOutputStream.flushBuffer(BufferedServletOutputStream.java:478)
         at com.ibm.ws.webcontainer.srt.SRTServletResponse.flushBuffer(SRTServletResponse.java:452)
         at com.ibm.ws.webcontainer.srt.SRTServletResponse.flushBuffer(SRTServletResponse.java:436)
         at com.crystaldecisions.report.web.viewer.JSPViewerResponse.flushBuffer(Unknown Source)
         ... 33 more
    Caused by: java.io.IOException: Async IO operation failed, reason: RC: 64  The specified network name is no longer available.
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:203)
         ... 3 more
    Thanks in advance
    Alok P.

    The stack trace is caused by whitespace in your CrystalReportViewer.jsp file.  Look up SAP Note 1199025 for the resolution.
    It's not related to the PDF formatting issue.  There's been changes to the formatting with the most recent version - Crystal Reports for Eclipse 2.0 - so if you haven't already, I recommend you upgrade.
    Note that there's differences in font metric calculation when using Adobe PDF format such that there's no way to get exact agreement between output of the CR and PDF.  But the latest version helps greatly.
    Sincerely,
    Ted Ueda

  • C#/SharePoint -View State related issue while exporting data to excel

    We have web application based on SharePoint. We have a list view to display data based on Search Criteria. We have total of around 16000 data. When we try to export all data to excel it gives an error. The cause of the issue is:
    View State is used to save the state of page i.e. the previous state. When the export to excel link is clicked, the data present in the grid is actually saved in view state so that the overhead of again generating
    the data(as per the selection criteria) can be avoided. Now, this View state has a limitation of storage of these records. When we put in some selection criteria, the no. of records is less hence no problem in actually storing the view state. But when there
    is no selection criteria, 16306 records are too much to be stored in view state. Hence the error occurs.
    We tried to solve this issue by creating a compressor class and overriding two methods:
     LoadPageStateFromPersistenceMedium
    SavePageStateToPersistenceMedium
    This has resolved the issue with Export to Excel. However, there is now some issue in the paging of the list view. The list view has a column with hyperlink which opens related data in a form. While we click on the link in 2<sup>nd</sup>
    page of the list view, it displays data for the link in the 1<sup>st</sup> page at same row.
    Please suggest how to resolve this issue or any workaround for this

    We have web application based on SharePoint. We have a list view to display data based on Search Criteria. We have total of around 16000 data. When we try to export all data to excel it gives an error. The cause of the issue is:
    View State is used to save the state of page i.e. the previous state. When the export to excel link is clicked, the data present in the grid is actually saved in view state so that the overhead of again generating
    the data(as per the selection criteria) can be avoided. Now, this View state has a limitation of storage of these records. When we put in some selection criteria, the no. of records is less hence no problem in actually storing the view state. But when there
    is no selection criteria, 16306 records are too much to be stored in view state. Hence the error occurs.
    We tried to solve this issue by creating a compressor class and overriding two methods:
     LoadPageStateFromPersistenceMedium
    SavePageStateToPersistenceMedium
    This has resolved the issue with Export to Excel. However, there is now some issue in the paging of the list view. The list view has a column with hyperlink which opens related data in a form. While we click on the link in 2<sup>nd</sup>
    page of the list view, it displays data for the link in the 1<sup>st</sup> page at same row.
    Please suggest how to resolve this issue or any workaround for this

  • Particular Tigger exclude using DBMS_DATAPUMP export in SCHEMA mode, how?

    Hi,
    Is it possible to specify exclude filter for particular object type and name (TRIGGER, name = TRG_CHECK)
    when DBMS_DATAPUMP export in SCHEMA mode is used?
    If yes, how? (I could not find any examples).
    Thanks.

    Hi,
    Yes, it 's possbile
    Go for "DBMS_DATAPUMP.metadata_filter"
    tr it I did not checked
    Where you can use name expression at table mode as NAME_EXPR as '!=''DEPT'''
    or
    dbms_datapump.metadata_filter(vhandle,’EXCLUDE_PATH_LIST’,”’TRIGGER”,”GRANT”’);
    DBMS_DATAPUMP.metadata_filter( handle => l_dp_handle,
    name => 'NAME_EXPR',
    value => 'NOT IN (''TRIG_NAME')',
    object_type => 'TRIGGER');
    - Pavan Kumar N

  • Font issue in exported PDF from indesign

    Font issue in exported PDF from indesign:
    In Indesign file we have kept a sentence in “Univers LT Std” (San serif font) with all caps style that was orginally in lower case. Refer below
    When we selected the sentence in exported PDF some of the characters are not selected. Refer below.
    If we enable “create tagged PDF“ in export PDF setting, then the problem is solved. Refer below.
    Can you please check why this problem happened? In another project also we have faced this same problem but different font “Frutiger LT Std” with all caps style. Here also same San serif font. Please check and advise to solve this issue permanently.

    Without tags a PDF is a silly amount of letters, images and lines, with tags all itams a kept in their semantic context. So work with tags as it is the only way to get correct selections and export to other file types like Word DOCX.
    Without tags InDesign reads from left to right from top to bottom and the font geometry might influence the correct order of letters.
    Why should anyone work without tags today? If you open a tagged PDF in Acrobat DC it is much faster than without tags.

  • Issue in export to PDF in  WAD

    HI gurus
    I have an issue in taking export to PDF in WAD reporting
    In my WAD ,I have the below in order
    1)company logo,
    2)An info field ,showing fiscal period and date
    3)report designer,to fetch data
    4)An infofield to show the user id
    the WAD out put is coming properly
    But When i take an PDF output the I get three pages
    1) and 2) are in first page , 3) is in second page  4) is in third page which is a single line
    I want everyting in one page .please help me how to achive this
    Thanks
    Regads
    Pradeep

    Hi Pradeep,
    I dont think this can be done.  There are various issues with exporting web items to PDF, one of them being formating.  We had a similar issues and opened an OSS with SAP and they stated this was how it was designed and SAP do not provide a better way of formatting PDFs.
    Thanks,
    Nick.

  • I am having issues suddenly exporting files. It reads error exporting 25 files, As I attempt to choose another destination folder the folders show a black square where the folder sign previously was. I am in my busy season and this has created a huge dela

    I am having issues suddenly exporting files. It reads error exporting 25 files, As I attempt to choose another destination folder the folders show a black square where the folder sign previously was. I am in my busy season and this has created a huge delay!!! HELP!!!!

    oh and if you use a creative cloud version of Lightroom it could also be that the logon to the cloud is messed up. Logging out and logging back in from preferences in the creative cloud app will fix that. Due to the release of Lightroom CC it appears that adobe's servers have been overwhelmed a bit And many people have strange problems that are solved by logging out and back in.

  • Issue related to transportation of objects

    Hi Experts,
    I am very new to BODS tool.I have an issue related to transportation of Objects.
    Please be noted that , there was already a project (X) existing in dev system and the same project (X) is already exists in quality system as well.
    Now we got the requirement to replace the new source table to the existing source table in one of the dataflowin the Project(X). So in dev system for the same project (X) ,we have created a new datastore and imported a new source table into that datstore and used this table in that particular Dataflow to replace the existing table in the same project(X).
    After doine this changes, its working fine in Dev system.
    Now I wanted this changes to be transported in qual system as well.
    So I have logged into Designer in quality system. In central repoistory, I was able to see two central repositories.One for Central Repoistory of DEV and Other Central Repoistory of Quality.I hope I need to view Central Repoistory of Dev( please correct me If .In this central repository(dev) I was able to view the same Project(X) but the latest changes were not reflected ( I mean to say new datastore and new source table in the dataflow were not been seen). So I have refreshed the central repoistory,still I was unable to view the latest changes in the same project(X).
    Could anyone please guide me, what all steps I need to do, to get this changes reflected in quality system as well.
    Please be noted that, I am working on BODS 4.2 version
    Appreciate for your quick responses.
    Thanks in advance.

    Hi Cris,
    First remember that when ever you are doing changes in existing project first you have to take the latest version of that project then you can do your changes.
    Step1: Take latest version of code from Central Repository of DEV  into your local repository then do yuor changes.
    Go to Tools---->Central Repositories then select Central Repository of DEV then activate it. then get latest project from Central Repository of DEV.
    Getting latest project from central---->Go to Tools---->Central repository library---> select your project---->rightclict---get latest version--->objects and depence.
    I am not sure you made changes in latest code or not?
    Step2: After you made changes in your local repo go to Tools---->Central repository library---> select your project---->rightclict---checkout-----objects and depence without replacement.
    Step3: Go to Tools---->Central repository library---> select your project---->rightclict---checkin-----objects and depence. Now your changes moved to Central Repository of DEV.
    Step4: Login to Quality system.
    Step5: In Qaulity---Go to Tools---->Central Repositories then select Central Repository of DEV then activate it. then get latest project from Central Repository of DEV to Qaulity system.
    Getting latest project from central---->Go to Tools---->Central repository library---> select your project---->rightclict---get latest version--->objects and depence.
    Now Latest code transported to QA.
    Thanks & Regards,
    Balamurugan G

  • No system in the system landscape exports transport requests

    Hi gurus,
    We are trying to implement the Change Request Management scenario in
    Solution Manager 4.0 SP12 in a POC.
    The TMS are created with Solution Manager as Controller and with the settings are correct.
    We have created a Maintenance Project with the following landscape :
    system1 - Client 100 as Development System - Type of Rol "Source System"
    system2 - Client 200 as Quality System - Type of Rol "Target System"
    system2 - Client 100 as Production System - Type of Rol "Production System"
    In the Change Request tab, when we check "Activate Change Request Management" checkbox, the following error is shown:
    "System system2-100 is to be changed in a Solution Manager project, but no
    system in the system landscape exports transport requests which are
    imported into this system."
    What is happening? Any idea??
    Thanks

    The reason may be, that your "POC" is not valid due to the fact, that you use "clients" and not "systems" to transport
    What you can try to verify that is - take out the QA client/system out of the transport route and try then to activate just with DEV --> PRD.
    We wanted to setup something similar in the past and TMS failed to get configured properly - due to exact that reason.
    Markus

  • Hi there! So I am using Lightroom 3 on a pc and I have ran into an issue when exporting images. The DPI and image size (in inches) that I am selecting during the export process. For example I just exported a collection and set the dpi to 180 and the size

    Hi there! So I am using Lightroom 3 on a pc and I have ran into an issue when exporting images. The DPI and image size (in inches) that I am selecting during the export process. For example I just exported a collection and set the dpi to 180 and the size to 7 inches on the long edge. My exported result is 457 dpi and sized at 3200x2134 pixels.. Any ideas on why this is happening and what I can do to correct it?

    The DPI setting in a digital image has no meaning at all. You need to learn how to calculate what you need in your exported image. The only measurement in a digital image that has any meaning is the number of pixels in each direction. It doesn't matter what you set that DPI to (actually it's PPI or pixels per inch). The image will have the same number of pixels regardless of the setting. If you need an image that is 5 x 7" (for example) at 200 PPI then you would want an image that measured:
    5 x 200 = 1000 pixels
    7 x 200 = 1400 pixels
    So you would need an image that is 1000 x 1400 pixels to have a 5 x 7" image at 200 PPI. The reason your exported image had such a high PPI setting is because you specified the number of inches you wanted the image to be. And there were enough pixels in the image that it calculated out to be that high PPI setting.
    I apologize, I don't explain this very well. But you need to learn to do the math to determine how large you really want your exported images to be.

  • How do I get rid of memory issue when exporting in imovie

    How do I get rid of memory issue when exporting in imovie?

    Delete the content that is filling it up. Text messages, iMessages, SMS, emails, Safari Cache; essentially all data for all of the built in apps.

Maybe you are looking for