Export symbols in a lib chain with dlopen

If I create a parent executable which loads a single library through dlopen, if I have compiled the main executable with -rdynamic, then I can use its simbols in the library with the clasule "extern". This is not a problem and it's working, but....
If I have an already made executable (which is out of my control) which loads my library1, and my library1 loads another library2 (also mine), then, even if I link library1 with -rdynamic, library2 cant see symbols from library1...
In a word, rdynamic sems to be working within executables but not within shared libraries....
How can I make it and why its not working?
Thanks

The best place to ask this question is in the Open Solaris "linking" forum:
http://www.opensolaris.org/jive/forum.jspa?forumID=63

Similar Messages

  • Failed to load ODBC library symbol: /export/home/odbc/ODBC60/lib/libodbc.so

    I've been trying to create a database link from a MySQL database to Oracle using the Oracle dg4odbc gateway. I downloaded and installed DataDirect's ODBC package which includes mysql ODBC library (ddmysql24.so) and a generic ODBC libary (libodbc.so). After creating the DSN in odbc.ini, I tested it and it can connect to the mysql database. Then I created the init{SID}.ora file in hs/admin directory, added dg4odbc lines in the listener.ora, and added lines in tnsnames.ora. Then I tnspinged the new SID with success. Finally, I created the database link. However, when I tried to access the database, I got the ORA-28500 error. In the trace log, I found the following:
    Entered hgolofns at 2009/11/01-06:27:20
    libname=/export/home/odbc/ODBC60/lib/libodbc.so, funcname=SQLAllocHandle
    hoaerr:28500
    Exiting hgolofns at 2009/11/01-06:27:20
    Failed to load ODBC library symbol: /export/home/odbc/ODBC60/lib/libodbc.so(SQLAllocHandle)
    Exiting hgolofn, rc=28500 at 2009/11/01-06:27:20
    Exiting hgoinit, rc=28500 at 2009/11/01-06:27:20 with error ptr FILE:hgoinit.c LINE:282 ID:Loading ODBC aray of function ptrs
    Entered hgoexit at 2009/11/01-06:27:20
    I searched the functions within libodbc.so and found all the SQLAlloc* functions in this library. Why do I still get the error?
    Thanks for your help. Jeffrey
    Here's the entire trace log:
    Oracle Corporation --- SUNDAY NOV 01 2009 06:27:20.637
    Version 11.1.0.6.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "4"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of "HS_TRANSACTION_LOG"
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL32UTF8"
    setting HS_FDS_TIMESTAMP_AS_DATE to default of "TRUE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    setting HS_FDS_FETCH_ROWS to default of "100"
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_CHARACTER_SEMANTICS to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    HOSGIP returned value of "FALSE" for HS_FDS_SUPPORT_STATISTICS
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStat
    istics"
    Exiting hgosdip, rc=0
    ORACLE_SID is "MOODLE"
    Product-Info:
    Port Rls/Upd:6/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.1.0.6.0_0006, Instance:MOODLE
    Exiting hgogprd, rc=0
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=10
    HOCXU_DRV_NCHAR=873
    HOCXU_DB_CSET=873
    HOCXU_SEM_VER=102000
    Entered hgolofn at 2009/11/01-06:27:20
    HOSGIP for "HS_FDS_SHAREABLE_NAME" returned "/export/home/odbc/ODBC60/lib/libodbc.so"
    Entered hgolofns at 2009/11/01-06:27:20
    libname=/export/home/odbc/ODBC60/lib/libodbc.so, funcname=SQLAllocHandle
    hoaerr:28500
    Exiting hgolofns at 2009/11/01-06:27:20
    Failed to load ODBC library symbol: /export/home/odbc/ODBC60/lib/libodbc.so(SQLAllocHandle)
    Exiting hgolofn, rc=28500 at 2009/11/01-06:27:20
    Exiting hgoinit, rc=28500 at 2009/11/01-06:27:20 with error ptr FILE:hgoinit.c LINE:282 ID:Loading ODBC aray of function ptrs
    Entered hgoexit at 2009/11/01-06:27:20

    on which platform did you install DG4ODBC? On a 64bit? In this case did you install the 64bit DD ODBC driver?
    What is the output of: file dg4odbc
    and: file /export/home/odbc/ODBC60/lib/libodbc.so
    can you also please clarify your statement: .. and a generic ODBC libary (libodbc.so). Datadirect ODBC drivers come with their own driver manager ... and you have to use their driver manager with their drivers.

  • Exporting symbols in a .exe for external DLLs

    Hello, 
    I am facing a strange problem.
    Basically, I have my application that loads a DLL (I developped).
    My DLL exports functions I can call from my application : OK
    I would also like to call functions of my application from my DLL : it does not work.
    To do that, in my DLL, I call :
    HMODULE hModule = GetModuleHandle("application.exe");
    FARPROC hFunc = GetProcAddress(hModule, "appFunction"); // (defined by : void __declspec(dllexport)  appFunction(void) in my application
    hModule is non-zero but hFunc is NULL. When I use a tool to see exported symbols by application.exe, there is none.
    So my question is : Can I export symbols from a .exe with LabWindows 8.5 ?
    thanks in advance
    Solved!
    Go to Solution.

    Thank you for your answer,
    I had already tried with :
    HMODULE hModule = LoadLibrary("application.exe");  
    and
    HMODULE hModule = LoadLibraryEx("application.exe", NULL, 0);  
    it gives the same result.
    To be more precise here is the source code of dll.dll :
    #include <Windows.h>
    #include <stdio.h>
    typedef void(*APPLI_PRINTF7)(void);
    __declspec(dllexport) void dllFunction(void)
    HMODULE hModule = LoadLibrary("application.exe");
    FARPROC pFunc = GetProcAddress(hModule, "appli_printf7");
    if(pFunc)
    ((APPLI_PRINTF7)pFunc)();
    else
    printf("error = %d\n", GetLastError());
    return;
     and here is the code of application.exe
    #include <Windows.h>
    #include <stdio.h>
    typedef void(*DLL_FUNC)(void);
    __declspec(dllexport) void appli_printf7(void)
    printf("7");
    return;
    int main(void)
    HMODULE hModule = LoadLibrary("dll.dll");
    FARPROC pFunc = GetProcAddress(hModule, "dllFunction");
    ((DLL_FUNC)pFunc)();
    return 0;
    I compiled dll.dll once and for all with LabWindows (8.5), and I compiled exactly the same code for application.exe with LabWindows (8.5) and Visual Studio 2013.
    It works with Visual Studio (the dll finds appli_printf7 and 7 is printed on the screen), but doesnt with LabWindows (the dll does not find appli_printf7 and prompt the error 127 (The specified procedure could not be found.)).
    I used Dependency Walker (and dllexp to confirm) to find out that appli_printf7 is actually NOT exported with LabWindows, and is exported with Visual Studio.
    Therefore, it is normal that the dll can't find the symbol if it is not exported.
    My questions are :
    - Why is that so ???
    - Is there a setting to set in order to make LabWindows export symbols marked by __declspec(dllexport) for .exe projects ?
    - Is this a problem fixed with a newer version of LabWindows ?
    - My dll is actually a plugin to my application. If I can't load symbols from my application, how can I provide an API for my dll in order to make generic functions available to it ? Is there a workaround for it ?
    Edit : I tried with LabWindows 2012, same problem..
    Thanks in advance 

  • Can you enumerate exported symbols in a loaded SWF?

    We have a number of SWFs that we use as asset libraries.  These SWFs each contain a bunch of statically exported symbols.
    I'm trying to make a tool to help catalog our assets.  I want the tool to be able to load these library SWFs and extract a list of all the exported symbols each contains.  Is that possible to do?  I can't find a way to enumerate or iterate over the exported symbols in the application domains of the loaded SWFs.
    (I could swear I saw an example of doing this in documentation somewhere, but now I can't find it... I'm wondering if I dreamed it, or misinterpreted some other example.)
    I'd be game for doctoring up the library SWFs in some way, e.g. make them use some custom helper class as their document class, if that would help.

    A friend of mine and I came to this post hoping to be told how to do it, after getting just "use jsfl" we set off on our journey to learn a bit about it.
    After an hour, we did it!... Kinda. Thanks for suggesting jsfl.
    So in CS5, we go File > New > Flash JavaScript File
    Then we looked at some jsfl docs ( http://help.adobe.com/en_US/Flash/10.0_ExtendingFlash/WS5b3ccc516d4fbf351e63e3d118a901b0bd -8000.html) tried and tried, looked at the docs some more, tried some more and eventually came up with this script:
    var doc = fl.openDocument("file:///PutFilePathHere/YourFlashFilesName.fla");
    var itemArray = fl.getDocumentDOM().library.items;
    var iLength = itemArray.length;
    fl.trace(iLength.toString());
    fl.outputPanel.clear();
    for(var i = 0; i < iLength; ++i)
        if(itemArray[i] == "[object SymbolItem]")
            var str = itemArray[i].name;
            var iLastIndex = (str.lastIndexOf("/"));
            if(iLastIndex > -1)
                str = str.slice(iLastIndex+1);
                fl.trace(str);
    fl.outputPanel.save("file:///PutFilePathHere/ExportedSymbols.txt");
    And yay! A text document filled with all the symbols in in the library. Ok, ok, it's not perfect because it includes symbols that weren't marked as "export for actionscript 3" which is what we initially wanted, but we're either going to perfect it or just deal with it and put identifiers on our LinkageNames (like EX_Tree, EX_Fire for exported to as3 symbols, and just leave the other symbols alone).

  • Error export from my database sql 2005 with Windows 2003 abap+java

    Hi all
    I'm trying to create an Export from my database sql 2005 with Windows 2003, but SAPINST starts with an error. ABAP+JAVA stack
    While running the export preparation, I am getting the following error;
    INFO 2010-09-08 12:12:43
    Output of C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key is written to the logfile C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/UTL.java.log.
    WARNING 2010-09-08 12:12:46
    Execution of the command "C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key" finished with return code 64. Output:
    java version "1.4.2_13"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2_13-b06)
    Java HotSpot(TM) 64-Bit Server VM (build 1.4.2_13-b06, mixed mode)
    ERROR 2010-09-08 12:12:46
    CJS-30071  Execution of UTL tool 'C:\j2sdk1.4.2_13-x64\bin\java.exe -classpath D:\usr\sap\BID\SYS\global\sltools\sharedlib\launcher.jar -showversion -Xmx256m com.sap.engine.offline.OfflineToolStart com.sap.sl.ut.manager.UtlMain
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jce.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_jsse.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_smime.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/iaik_ssl.jar;
    JRBIWD/sapmnt/BID/SYS/global/security/lib/tools/w3c_http.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.infoprovider_lib.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comsl.ut.manager.offline.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/antlr.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/exception.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/jddi.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/logging.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/offlineconfiguration.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/opensqlsta.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/tc_sec_secstorefs.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/sap.comtcsdtcvlimpl.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SDMutil.jar;D:/usr/sap/BID/SYS/global/sltools/sharedlib/SLUtil.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\base.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\util.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\sqlserver.jar;D:\usr\sap\BID\DVEBMGS01\exe\mssjdbc\spy.jar -export -type=keydb "-expfile=C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/usages_data.xml" -log=UTL_load_usages.log -sid=BID -dsn=jdbc/pool/BID -ssprops=D:/usr/sap/BID/SYS/global/security/data/SecStore.properties -ssk=D:/usr/sap/BID/SYS/global/security/data/SecStore.key' aborts due to database connection error with return code 64.<br>DIAGNOSIS: The connection parameters are wrong or the database server is shutdown.<br> SOLUTION: Check 'UTL_load_usages.log' and 'C:/Program Files/sapinst_instdir/NW04S/LM/COPY/MSS/EXP/CENTRAL/AS/PREEXP/UTL.java.log' for more information.
    ERROR 2010-09-08 12:12:46
    FCO-00011  The step getUsageTypes with step key |NW_Prepare_Export|ind|ind|ind|ind|0|0|NW_Java_Prepare_Export_Dialog|ind|ind|ind|ind|5|0|getUsageTypes was executed with status ERROR .
    Could anyone please help me out on this, if possible?
    Thanks
    JM

    Hi,
    please ensure that you use a SAP supported JDK as below:
    716604    for the Sun JDK (Windows, Linux, Solaris)
    709140    Recommended JDK and VM Settings for the WebAS630/640/7.0
    And the re try the export pls.
    Regards,
    Snow

  • How can I export a smallformat flatten PDF-file with transparant parts in?

    My post on a PDF - more clear with images (english):
    http://www.logicontrol.be/gallery/documents/help-eng.pdf
    Deze post in nederlandstalige versie:
    http://www.logicontrol.be/gallery/documents/help-nl.pdf
    Scope?
    I'dd like to export an Indesign-file (.indd) to a PDF-file that has to be:
    - the smallest possible file size
    - which displays images and text sharp on the screen
    - which also certainly remain transparent parts of .psd-files after exporting
    - that is flattened for easy print
    The problem?
    ▪ How and with which of settings can I export such a file from InDesign 5.0?
    ▪ If necessary in combination with some settings (after exporting) in our Adobe Acrobat 9 Pro?
    Further explanation
    The export file contains lots of text, graphics, photographs and drawings. Many of these items are .psd-files that contain transparent areas. The intention is that this transparent parts actually remain transparent even after exporting/flattening /decreasing the PDF.
    ▪ With InDesign 5.0?
    → In the window Export Adobe PDF: (images see: http://www.logicontrol.be/gallery/documents/help-eng.pdf )
    Should I start from a default PDF preset   (if yes > which one??)
    Possibilities are: High Quality Print / PDFX-1a: 2001 / PDFX-3:2002 / PDFX-4:2007 / Press Quality / Smallest File Size
    Or is it better to create a PDF preset on my own?     (if yes > which settings??)
    Standard > PDF/X-format?
    Compatibility > PDF-version?
    Compression > If artwork should be compressed and downsampled, and if so,
                            which method and settings to I have to use ?
    Ouput > How can I control colors and PDF/X output intent profiles in the PDF-file?
    Advanced > How can I control fonts, OPI specifications, transparency flattening, and JDF instructions are
                      in the PDF file?
    ▪ With Adobe Acrobat 9 Pro?
    → How can I reduce the file size extra, so more reducing after exporting into PDF ?
    → How can I flatten the exported file (if not done during the export) ?
    !! Important, when I export/reduce/flatten the file, I ‘dd like that the parts of images who were transparent before, stays also transparent after !!
    WHAT CAN I DO ??

    Hello,
    I'm sorry you're having trouble. Unfortunately, this forum is for the ExportPDF service of Acrobat.com. The ExportPDF service functions as a PDF to *.docx file convertion and we can't help with problems specific to the desktop version of Acrobat or InDesign.  I'm happy to point you in the right direction.
    Acrobat Users moderated forums:
    http://forums.adobe.com/community/acrobat
    InDesign forums:
    http://forums.adobe.com/community/indesign/indesign_general
    Good luck!

  • Export data from BW to oralce with open hub service.

    Hi Dear all,
    When I tried to export data from BW to oralce with open hub service. There is no available RFC destination for this oracle system. That means i need to create a RFC destination for the oracle server.
    How can i achive this, in SM59? But U don't know much how to configure this. Is there any expert can help me there?
    Kevin

    Hi kevinhuang  ,
    RFC connection.......... You can check in SM59 tcode...Double click on the the desired Source system
    or
    RSA1-->Source systems and then right click on Source system and Check
    To test RFC connection...RSA1 ....Source system....... Right click on desired source system >> Connection Parameter.....Test connection
    Pls go thru this links,
    http://help.sap.com/saphelp_nw70/helpdata/EN/43/79f902dfb06fc9e10000000a1553f6/frameset.htm
    BI Open Hub Destination and data transfer process setup
    http://www.ibm.com/developerworks/data/library/techarticle/dm-0802li/index.html
    Hope this helps U.
    Regards
    Chandra Sekhar
    Edited by: Chandra  Sekhar T on Apr 21, 2009 3:36 PM

  • Export List Of Images Selected Along With Some MetaData

    It would be extremely beneficial for LightRoom to have the ability to have an Export feature that creates an ASCII or XML file format (or other common format) of the image file names (and path) that are highlighted/selected. Since LightRoom is a great program that can be used for client previews, this export feature would allow future integration with billing packages to complete the order.
    Ideally the export file would contain the selected image path and file name, and metadata such as cropping size selected (especially if selected from the drop-down selection of crop sizes), keyword tags (and/or folder name), title, rating and label.
    Thank you for your consideration of this feature request.

    I definitely need something similar as well.
    E.g. I have a website with a slideshow functionality in it - it would be really useful to export in a textfile the custom order of the pictures prepared for a new slideshow.

  • Transportation of process chains with ABAP variants

    Hi,
    Could you please help me in finding out how to transport process chains with ABAP variants.
    I can transport them, however when transporting them, I overwrite the already existing variants, which is very unfortunate...
    Could you please advice.
    Thank you in advance!
    /Brian

    Hi Ramesh,
    Option 1:
    You can directly create the process chain in Production. Most of the times ppl do have access to create a process chain in Prod. Kindly check whether you have the authorization to do so.
    Option 2:-
    I did not suggest to delete the old info-packages in QA and Prod. Let them continue to exist but you may not use them once the process chain is in place. You create the process chain, test it and move it up to Prod. I dont' think the new infopackages will hamper your delta load. The delta is not dependent on the infopackage.
    If I were you, I would try the second option and if it does not work during testing then go for the first option.
    Bye
    Dinesh.

  • Is there any way to see unread mails/chains with unread mails on iPad?

    I use iPad with MS Exchange and have many emails and have not found a way to work with chains with unread emails. Is there a way to do it? Maybe together with MSE?

    In Finder, just drag the divider bar further to the right while holding down the option key to see the full label (using the 'option' key will make the width preference stick).
    On the desktop icon, hold down 'contro'l and click on the icon. Choose 'Show view options' then make the grid spacing larger.

  • Exporting video results in still image with original sound background

    I've tried several times to export my home movie (MOV) into smaller formats using the export function. It worked fine on QT 6 but now I'm on version 7 and it's not working. The final product is a still image of the first frame and the original recording. I've tried exporting to various formats as well with the same result. Any help out there? Thanks!!!

    Would it matter if the very first file from the camera was an AVI file? I first had QT convert that file to an MOV file which plays just fine.
    As long as the MOV file plays in QT, it shouldn't matter at all. In fact, placing it in a known "space" should indicate it is convertible to other target formats even if only on your system configuration.

  • HT1414 the only thing apearing in screen is itunes symbol and a usb connexion with an arrow

    the only thing apearing in screen is itunes symbol and a usb connexion with an arrow and if you connect the Iphone to the computer and open Itunes, it says that it has not been possible to connect to the server of updatings of iphone.
    Thnks for your prompt help

    If the Device has been modified, this will not necessarily work...
    See Here...
    http://support.apple.com/kb/HT1808

  • Using Planning Sequence in a Process Chain With input variants

    Hi,
    I have a COPY planning function which has multiple FROM and TO options like (From:Fiscal Year To Fiscal Year, From Version TO Version). In the layout they select the options for which they want to COPY and execute the function.
    How can I replicate the same approach in a process chain with the varaints, how can i create the FROM and TO variables in the process chain.
    Thanks
    Rashmi.

    Hi.
    You can save variable variant for planning sequence in modeler and then use it in process chain.
    In process chain you choose "Execute planning sequence" and add planning sequence with variant.
    All this if you using IP instead BPS.
    Regards.

  • How to setup job chain with time dependant steps

    Hi
    I need to setup the following job chain with next job step waiting until specified time before starting
    Step 1 Job A Time 07:30 if complete go to job step 2
    Step 2 Job B start time 09:00 if complete go to job step 3
    Step 3 Job C start time 09:30 (end job)
    Have tried to use a pre-condition in step 2 and 3 but that just caused thoes steps to be skipped.
    can somebody point me in the right direction
    Thanks in advance
    Jon

    Hi Anton/Babu
    Thanks for your help, I managed to set this up by embedding multiple Job Chains with their own time window in a master job chain.
    As we continue our roll out not sure how scalable the solution will be as you have to create multiple job chains for essentially the same job with the only difference being a specific time window.
    I guess only time will tell.
    Thanks for you help again guys
    Jon

  • Trigger a program in ECC from BI using a process chain with out Program

    Hi,
    How can we trigger a program which is in ECC system from BI using a process chain with out writing any program.
    is it possible? if yes how can we achieve this.
    Thanks & Regards,
    Madhu

    Madhu,
    Not possible, indeed need event or Remote Function Call using an ABAP program.
    Other option would be to use a 3rd party tool like Control-M to run programs/jobs on whatever system in your landscape (but requires investments of course).
    Grtx
    Marco

Maybe you are looking for

  • Applying subset rules in Oracle streams

    Hi All, I am working to configure Streams.I am abe to do repliacation on table table unidirectional & bidirectional. I am facing problem in add_subset rules as capture,propagation & apply process is not showing error. The fillowing is the script i am

  • Authority check in infoset query for field with multiple entries

    how can i perform the authority check in sq02 "at selection screen" for a multiple entry field e.g. EKORG low  0001 - high  0005 or EKORG 0001, 0004, 0005 I already added the following statements How the field for EKORG check must be filled if EKORG

  • Difference between KP06 and KP26

    Hi, Could anyone explain me when to use KP06 and when to use KP26 and the basic technical difference between these two transaction codes. Regards, DSK

  • MICROPHONE IS NOT WORKING WITH WINDOWS 8

    HI,RECENTLY IAM UPGRADED MY LAPTOP HP G60 WINDOWS VISTA TO WINDOWS 8.FROM THAT,INTERNAL AND EXTERNAL MICROPHONE IS NOT WORKING..IS IT I NEED ANY DRIVER SOFTWARE?ANYBODY HAVE SOLUTION FOR THIS ISSE?

  • Why does my main drive not show in devices/finder

    Mybe I am trying to do something that I don't actually need to do,,,, when I watch tutorials they mention that your local drive is seen in devices which is found in finder, the only time that the devices 'folder' shows is if I insert an SD card, I th