SRM7.0 Meta Data Handling or Component Configuration

Hi Experts!
Let's say you for some reaseon want to remove the a field in the Shopping Cart at item level. To achieve this you could e.g.
1. Use the Component Configurator (SE80) - and use the browser-based Editor for the WDP ABAP Component Configurator
2. Use the Meta Data Handling Concept and configure the field control there
My guess is that one should use #2 if one need to control the behaviour of the field according to roles or authorities, but is this correct, or are there other considerations that should be taken into account when performing UI adjustments using the above mentioned methods?
brgs Ziggy

Check the below link, this should help you.
http://wiki.sdn.sap.com/wiki/display/SRM/HowtoaddCustomerfieldsinSAP+SRM
Regards,
Jagadish

Similar Messages

  • Bridge meta data handling and filtering

    It would be great if you could add two features:
    1.  adding keywords to multiple files currently if two files share the same  keywords but not in the order, adding new is impossible without  overwriting the existing keywords
    2. filtering by location data, it would be great to filter by country say, just as by keyword, date or other.
    Thanks, Erik

    For adding keywords without removing existing keywords, this script might be of use to you...
    http://www.ps-scripts.com/bb/viewtopic.php?f=19&t=2364&sid=57a50afd1b53b5fc195f0e5dfdbfab0 6

  • Can any body send me the cross component meta data files of any cross compp

    HI,
    I want meta data files of cross component project could u please pass these meta data files as soon as possible.
    Thanks,
    Shabeer Ahmed.

    Hi,
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a137c339-0b01-0010-a688-a87b88706845
    Regards,
    Sundar

  • JCO - Get meta data - Grey status in JCO connections tab

    Hi all,
    I read many post on this topics within this forum but I didn't succeed to get meta data required and to set correctly my connection.
    Let's start quickly to give you my conf
    In the j2ee admin
    -> Services > SLD Data Supplier > CIM Client Generation Settings
    I set fields with : SLD7000 / 50000 and my logon info
    Save and test -> result is ok !
    In my web dynpro application, I am able to get correct BAPI from BCE system using my logon info. And I map my view to display data from the corresponding BAPI called.
    So at this time, in my IDE, the connection to the SAP Backend system SAP works because I can get the list of BAPIs from the BCE SAP Backend System as well.
    Build and deploy my application.
    Now, let's go to webdynpro welcome page on my j2ee server : http://<host>:<port>/webdynpro/welcome
    -> content administration
    -> I select from the left tree browser my application, and open the "JCO Connections" Tab. I can see my connections previously I set in my webdynpro application. But I CAN'T use the button "Create" to configure new JCO connection. ??
    Last thing:
    in the BCE backend system
    transaction : RZ70
    I have, host = sldmain and service = sapgw47
    Also, in the list of data collection programs, everything is checked as active except the program "_SLD_RFC"
    I don't know if it is important....?
    Finally, I give you from the exception I got in my browser only lines "Caused by"....
    Caused by: com.sap.dictionary.runtime.DdException: TypeBroker failed to access SLD: Error while obtaining JCO connection.
    Caused by: com.sap.tc.webdynpro.services.sal.sl.api.WDSystemLandscapeException: Error while obtaining JCO connection.
    Caused by: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create J2EE cluster node in SLD for 'J2E.SystemHome.localhost': com.sap.lcr.api.cimclient.LcrException: CIM_ERR_NOT_FOUND: No such instance: SAP_J2EEEngineCluster.CreationClassName="SAP_J2EEEngineCluster",Name="J2E.SystemHome.localhost"
    Thanks a lot for your support and help,
    Best regards,
    Emmanuel.

    Hi Emmanuel
    You said
    " I select from the left tree browser my application, and open the "JCO Connections" Tab. I can see my connections previously I set in my webdynpro application. But I CAN'T use the button "Create" to configure new JCO connection. ??"
    What is their status ? Is it green on red? Usually create is greyed out if it is green.  What about Edit?
    Try creating a new Web Dynpro component with another destination name ,deploy and then check the Content administrator if these new destinations have Create enabled
    After running RZ70 did you check the Technical System in SLD administration to see if the technical details have been propogated ?
    Regards
    Pran

  • Can not get PK-FK in meta-Data of MySql....Help me pls.

    Hello Every one.
    I can not to get the PK and FK from Meta-Data Database of mysql-4.1.1a-alpha. Anyway I tried to do the
    followihg
    1. OS windows 2000 Pro.
    2. set configuration Script support InnoDB Table Type as the follow in my.ini file.
    [mysqld-nt]
    innodb_data_home_dir = C:\mysql\data
    innodb_data_file_path =\ibdata\ibdata1:2000M // in folder \data\ i was created folder ibdata
    3. I try to create data as reference in example java code and table :persons , shirt as the example in
    Create innodb table Type of mysql doc.
    4. the code test as following
    In the test code i can get the result only from method : getPrimarykey(...); only and the other method ,getExportedKeys, getImportedKey , getCrossReference the result in ResultSet is null.
    anyway, this code i can apply in the oracle db with change db driver .
    I wish the answer why? and the actually the second parameter of this parameter , as refer scheme name , the scheme name is ?
    Thank you
    import java.sql.*;
    public class testMeta {
    public testMeta() {
    ResultSet rs=null;
    String url = "jdbc:mysql://localhost:3306/testinnodb";
    Connection con = null;
    try{
    Class.forName("org.gjt.mm.mysql.Driver");
    }catch(ClassNotFoundException ex){
    System.out.println(ex.getMessage());
    try{
    con = DriverManager.getConnection(url,"root","rootpwd");
    prtS("getConnection complete");
    DatabaseMetaData metaData = con.getMetaData();
    Connection con2 = metaData.getConnection();
    String type[] = new String[1];
    type[0] = new String();
    prtS("*************** GET Schemas ***************");
    rs = metaData.getSchemas();
                   while(rs.next()){
    System.out.println("12345");
    prtS("TABLE_CAT" + " : " + rs.getString(0));
    prtS("TABLE_CAT" + " : " + rs.getString("TABLE_SCHEM "));
                   rs=null;
    prtS("*************** GET PRIMARY KEYS ***************");
    rs = metaData.getPrimaryKeys(con.getCatalog(),null,"persons");
    while(rs.next()){
    prtS("TABLE_CAT" + " : " + rs.getString("TABLE_CAT"));
    prtS("TABLE_SCHEM" + " : " + rs.getString("TABLE_SCHEM"));
    prtS("TABLE_NAME" + " : " + rs.getString("TABLE_NAME"));
    prtS("COLUMN_NAME" + " : " + rs.getString("COLUMN_NAME"));
    prtS("KEY_SEQ" + " : " + rs.getString("KEY_SEQ"));
    prtS("PK_NAME" + " : " + rs.getString("PK_NAME"));
                   rs=null;
    prtS("*************** GET Exported KEYS ***************");
    rs = metaData.getExportedKeys(con.getCatalog(),null,"shirt");
    while(rs.next()){
    prtS("FKCOLUMN_NAME" + " : " + rs.getString("FKCOLUMN_NAME"));
                   rs=null;
    prtS("*************** GET Imported KEYS ***************");
    rs = metaData.getImportedKeys(con.getCatalog(),null,"persons");
    while(rs.next()){
    prtS("PKTABLE_CAT" + " : " + rs.getString("PKTABLE_CAT"));
    rs=null;
    prtS("*************** GET CrossReference ***************");
    rs = metaData.getCrossReference(con.getCatalog(),null,"persons",con.getCatalog(),null,"shirts");
    while(rs.next()){
    prtS("PKTABLE_CAT" + " : " + rs.getString("PKTABLE_CAT"));
    }catch(SQLException ex){
    prtS(ex.getMessage());

    How i know the jdbc driver not compatible to this
    mechanismBy reading the documentation tthat comes with your driver. Recent versions of the MySQL JDBC driver do support the getExportedKeys/ImportegKeys methods but the table needs to be crated as InnoDB.
    So run the SQL command
    show table statusWhats under the Type column for your table? If it isn't InnoDB then this isn't going to work.
    If it is InnoDB but getExportedKeys/ImportegKeys still don't work then you haven't used the "foreign key" constraint in your "create table" command

  • Dynamically how to get the meta data of an ui element which is custom one

    Hi All ,
    In SRM , I want to know the meta data declarations of an UI element in my webdynpro component  ..How to know this ..Can anyone help me in this ..I want to know the meta data of an ui element .
    Sandeep

    You really aren't supposed to read the properties of active UI elements directly.  Instead they should be bound to context attributes and then you read these attributes via normal context APIs.  If you absolutely needed such access because this is a standard SAP WD, then consider that the WDDOMODIFYVIEW is the only part of th event loop where you are allowed access to the View and its UI elements.

  • FPM: Error while creating component Configuration

    Hi,
    I have installed ABAP trial version (NSP), but without loopback adapter. So, now for every WebDynpro application, I have my manually change link from "http://<mymachineName>:8000" to  "http://localhost:8000".
    I create an application on FPM component: FPM_OIF_COMPONENT, then an application configuration for this application.
    I open this Appl. config. in se80 and press "Start configuration".  Now I try to create new component configuration.
    After maintaining description and transport information, I save it.
    At this point, I get a dump:
    "RFC Error while sending logon data"
    CALL_FUNCTION_CONNECT_ERROR in CL_WDR_CFG_COMP_SHBROKER======CP.
    The class: CL_WDR_CFG_COMP_SHBROKER method: INVALIDATE
    has a call:  call function 'WDR_INVALIDATE_CFG_PATTERN' starting new task l_cfg_task
            exporting client = client pattern = l_instance_name .
    where it dumps.
    could you please to resolve what could be wrong? is there some system setting which I missed.
    Regards,
    Daman

    Hi ,
    This exception is raised when a connection or communications failure occurs.
    This exception reports all failures and system problems on the remote machine . so look like there  is some porblem with your system connection .
    Could you please check in your host file , is that entry for system is maintain  or not ?
    Hope this help .
    Regards,
    Dinesh

  • Photoshop CS3 crashes when meta-data is edited

    We are using Photoshop CS3 on our G5 Mac running Leopard. When we open any JPG or EPS file and attempt to edit the meta data it crashes Photoshop completely (before we can even attempt to save the file). It does not matter which meta data field we are editing it happens to all of them. Not sure what has changed on the system as we have not done any updates recently. Thought it might be a corrupt preference file but not sure which one to delete? Any help will be greatly appreciated!
    Sincerely,
    Courtney
    Version:1.0 StartHTML:0000000167 EndHTML:0000046049 StartFragment:0000000451 EndFragment:0000046033        
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE AdobeCrashReport SYSTEM "AdobeCrashReporter.dtd">
    <crashreport version="1.1" crVersion="2.5.0.02272007" applicationName="Photoshop" applicationVersion="10.0" build="10.0 &#40;10.0x20070321 [20070321.m.1480 2007/03/21&#58;16&#58;39&#58;00 cutoff; m branch]&#41;, ©1990-2007 Adobe Systems Incorporated">
    <time year="2012" month="6" day="13" hour="12" minute="38" second="55" />
    <user guid="F048B041-9AD8-4F8C-8952-F1317D9FCF9F" />
    <system platform="macintosh" osversion="10.5.8" applicationlanguage="en" userlanguage="en" oslanguage="en_GB" ram="3072MB" machine="i386" model="MacPro1,1" cpuCount="4" cpuFreq="2660MHz" busFreq="1332MHz" />
    <crash exception="Unmapped Memory Exception" instruction="607823e4">
    <backtrace crashedThread="0">
    <thread index="0">
    <stackStatement index="0" address="0x24dc5ff2" symbolname="unknown"/>
    <stackStatement index="1" address="0x90bd857b" symbolname="__Z30SendEventToEventTargetInternalP14OpaqueEventRefP20Op aqueEventTargetRefP14HandlerCallRec"/>
    <stackStatement index="2" address="0x90bf4ecc" symbolname="_SendEventToEventTarget"/>
    <stackStatement index="3" address="0x90c070a8" symbolname="__Z29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCa llRefP14OpaqueEventRefPv"/>
    <stackStatement index="4" address="0x90bd94f6" symbolname="__Z23DispatchEventToHandlersP14EventTargetRecP14OpaqueEve ntRefP14HandlerCallRec"/>
    <stackStatement index="5" address="0x90bd857b" symbolname="__Z30SendEventToEventTargetInternalP14OpaqueEventRefP20Op aqueEventTargetRefP14HandlerCallRec"/>
    <stackStatement index="6" address="0x90bf4ecc" symbolname="_SendEventToEventTarget"/>
    <stackStatement index="7" address="0x90c61a6c" symbolname="_ToolboxEventDispatcher"/>
    <stackStatement index="8" address="0x90cb4b28" symbolname="_GetOrPeekEvent"/>
    <stackStatement index="9" address="0x90cb47f2" symbolname="_GetNextEventMatchingMask"/>
    <stackStatement index="10" address="0x90cb460e" symbolname="_WNEInternal"/>
    <stackStatement index="11" address="0x90cb456d" symbolname="_WaitNextEvent"/>
    <stackStatement index="12" address="0x90cb32a9" symbolname="_ModalDialog"/>
    <stackStatement index="13" address="0x90ce98a2" symbolname="_RunStandardAlert"/>
    <stackStatement index="14" address="0x00077e9e" symbolname="unknown"/>
    <stackStatement index="15" address="0x000781cc" symbolname="unknown"/>
    <stackStatement index="16" address="0x000d6589" symbolname="unknown"/>
    <stackStatement index="17" address="0x000d6975" symbolname="unknown"/>
    <stackStatement index="18" address="0x0007a0df" symbolname="unknown"/>
    <stackStatement index="19" address="0x00060129" symbolname="unknown"/>
    <stackStatement index="20" address="0x000601bd" symbolname="unknown"/>
    <stackStatement index="21" address="0x000602d0" symbolname="unknown"/>
    <stackStatement index="22" address="0x0021998e" symbolname="unknown"/>
    <stackStatement index="23" address="0x002199e9" symbolname="unknown"/>
    <stackStatement index="24" address="0x00002fd2" symbolname="unknown"/>
    <stackStatement index="25" address="0x00002ef9" symbolname="unknown"/>
    <stackStatement index="26" address="0x00000002" symbolname="unknown"/>
    </thread>
    </backtrace>
    <registerSet>
    <register name="CS" value="0x00000017"/>
    <register name="DS" value="0x0000001f"/>
    <register name="SS" value="0x0000001f"/>
    <register name="ES" value="0x0000001f"/>
    <register name="FS" value="0000000000"/>
    <register name="GS" value="0x00000037"/>
    <register name="EFLAGS" value="0x00010286"/>
    <register name="EIP" value="0x24dc5ff2"/>
    <register name="EAX" value="0x24348904"/>
    <register name="EBX" value="0x0242fc6a"/>
    <register name="ECX" value="0x00000023"/>
    <register name="EDX" value="0x02d0a0e9"/>
    <register name="ESI" value="0x29349900"/>
    <register name="EDI" value="0000000000"/>
    <register name="EBP" value="0xbfffcfd8"/>
    <register name="ESP" value="0xbfffcf6c"/>
    </registerSet>
    <binaryImageSet>
    <binaryImage start="0x00001000" end="0x016e0fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/Adobe Photoshop CS3"/>
    <binaryImage start="0x01b9a000" end="0x01e1afff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeAGM.framework/Versions/A/Ad obeAGM"/>
    <binaryImage start="0x01ec4000" end="0x01fc4fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeACE.framework/Versions/A/Ad obeACE"/>
    <binaryImage start="0x01fe3000" end="0x02004fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeBIBUtils.framework/Versions /A/AdobeBIBUtils"/>
    <binaryImage start="0x02011000" end="0x0202afff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeBIB.framework/Versions/A/Ad obeBIB"/>
    <binaryImage start="0x02034000" end="0x02298fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeCoolType.framework/Versions /A/AdobeCoolType"/>
    <binaryImage start="0x02314000" end="0x02337fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeAXE8SharedExpat.framework/V ersions/A/AdobeAXE8SharedExpat"/>
    <binaryImage start="0x02349000" end="0x0239efff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeXMP.framework/Versions/A/Ad obeXMP"/>
    <binaryImage start="0x023ac000" end="0x023c7fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobePDFSettings.framework/Versi ons/A/AdobePDFSettings"/>
    <binaryImage start="0x023e0000" end="0x02496fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/FileInfo.framework/Versions/A/Fi leInfo"/>
    <binaryImage start="0x024c4000" end="0x024c9fff" type="__TEXT" path="/System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN"/>
    <binaryImage start="0x024d2000" end="0x0263dfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeOwl.framework/Versions/A/Ad obeOwl"/>
    <binaryImage start="0x02696000" end="0x0269cfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeCrashReporter.framework/Ver sions/A/AdobeCrashReporter"/>
    <binaryImage start="0x026a3000" end="0x026bffff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/LogTransport.framework/Versions/ A/LogTransport"/>
    <binaryImage start="0x026ca000" end="0x02a1ffff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeLinguistic.framework/Versio ns/3/AdobeLinguistic"/>
    <binaryImage start="0x02bb8000" end="0x02bfffff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/adobe_caps.framework/Versions/A/ adobe_caps"/>
    <binaryImage start="0x02c0f000" end="0x02c4efff" type="__TEXT" path="/System/Library/PrivateFrameworks/vmutils.framework/Versions/A/ vmutils"/>
    <binaryImage start="0x02f00000" end="0x02f01fff" type="__TEXT" path="/System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings"/>
    <binaryImage start="0x06799000" end="0x067a7fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libSimplifiedChineseConv erter.dylib"/>
    <binaryImage start="0x067ac000" end="0x067befff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libTraditionalChineseCon verter.dylib"/>
    <binaryImage start="0x067c2000" end="0x067c3fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib"/>
    <binaryImage start="0x0687f000" end="0x06889fff" type="__TEXT" path="/System/Library/PrivateFrameworks/URLMount.framework/URLMount"/ >
    <binaryImage start="0x1824b000" end="0x18251fff" type="__TEXT" path="/System/Library/Filesystems/URLMount/afp.URLMounter/Contents/Ma cOS/afp"/>
    <binaryImage start="0x182e7000" end="0x182f1fff" type="__TEXT" path="/System/Library/Frameworks/AppleTalk.framework/Versions/A/Apple Talk"/>
    <binaryImage start="0x183e1000" end="0x18420fff" type="__TEXT" path="/System/Library/Frameworks/AppleShareClientCore.framework/Versi ons/A/AppleShareClientCore"/>
    <binaryImage start="0x1a3ec000" end="0x1a3f7fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/Enable Async IO/Enable Async IO.plugin/Contents/MacOS/Enable Async IO"/>
    <binaryImage start="0x1a3fc000" end="0x1a3fcfff" type="__TEXT" path="/usr/lib/libmx.A.dylib"/>
    <binaryImage start="0x1a500000" end="0x1a50dfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore"/>
    <binaryImage start="0x1a584000" end="0x1a5e9fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore"/>
    <binaryImage start="0x1a687000" end="0x1a6d3fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support"/>
    <binaryImage start="0x1a6da000" end="0x1a82cfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Required/AdobeADM.bundle/Contents/MacOS/AdobeADM"/>
    <binaryImage start="0x1b69d000" end="0x1b69ffff" type="__TEXT" path="/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types"/>
    <binaryImage start="0x1b6a3000" end="0x1b6a4fff" type="__TEXT" path="/Library/ScriptingAdditions/QXPScriptingAdditions.osax/Contents /MacOS/QXPScriptingAdditions"/>
    <binaryImage start="0x1d000000" end="0x1d2bcfff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Required/ScriptingSupport.plugin/Contents/MacOS/Scri ptingSupport"/>
    <binaryImage start="0x1d5e5000" end="0x1da2dfff" type="__TEXT" path="/Library/ScriptingAdditions/XSLT Tools.osax/Contents/MacOS/XSLT Tools"/>
    <binaryImage start="0x1dc00000" end="0x1de08fff" type="__TEXT" path="/System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/Ra wCamera"/>
    <binaryImage start="0x1e5f0000" end="0x1ece1fff" type="__TEXT" path="/Library/Application Support/Adobe/Plug-Ins/CS3/File Formats/Camera Raw.plugin/Contents/MacOS/Camera Raw"/>
    <binaryImage start="0x1f105000" end="0x1f539fff" type="__TEXT" path="/Library/Application Support/Adobe/Adobe Version Cue CS3/Client/3.0.0/VersionCue.framework/VersionCue"/>
    <binaryImage start="0x1f953000" end="0x1f9e5fff" type="__TEXT" path=""/>
    <binaryImage start="0x23593000" end="0x23598fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCore Image.A.dylib"/>
    <binaryImage start="0x23988000" end="0x23b0dfff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Resources/GLEngine. bundle/GLEngine"/>
    <binaryImage start="0x23b3b000" end="0x23cc2fff" type="__TEXT" path="/System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/Ma cOS/GeForceFXGLDriver"/>
    <binaryImage start="0x23cec000" end="0x23d08fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Resource s/GLRendererFloat.bundle/GLRendererFloat"/>
    <binaryImage start="0x252e1000" end="0x25316fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_epic.framework/adobe_epic"/>
    <binaryImage start="0x25336000" end="0x25342fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_eula.framework/adobe_eula"/>
    <binaryImage start="0x25354000" end="0x25362fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_personalization.framework/adobe_per sonalization"/>
    <binaryImage start="0x2536b000" end="0x25378fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/asneu.framework/asneu"/>
    <binaryImage start="0x25399000" end="0x253a9fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/adobe_registration.framework/adobe_regist ration"/>
    <binaryImage start="0x25538000" end="0x259b0fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/AdobeLM_libFNP.dylib"/>
    <binaryImage start="0x25ae8000" end="0x25b40fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/Frameworks/AdobeUpdater.framework/AdobeUpdater"/>
    <binaryImage start="0x40000000" end="0x400a6fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/AdobeJP2K.framework/Versions/A/A dobeJP2K"/>
    <binaryImage start="0x90009000" end="0x90025fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib"/>
    <binaryImage start="0x90026000" end="0x900a0fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/PrintCore.framework/Versions/A/PrintCore"/>
    <binaryImage start="0x900a1000" end="0x900a1fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Acce lerate"/>
    <binaryImage start="0x900a7000" end="0x900a7fff" type="__TEXT" path="/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib"/ >
    <binaryImage start="0x900a8000" end="0x900dffff" type="__TEXT" path="/System/Library/Frameworks/SystemConfiguration.framework/Versio ns/A/SystemConfiguration"/>
    <binaryImage start="0x900e0000" end="0x900f0fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis"/ >
    <binaryImage start="0x90105000" end="0x90129fff" type="__TEXT" path="/usr/lib/libxslt.1.dylib"/>
    <binaryImage start="0x9012a000" end="0x9012ffff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/CommonPanels.framework/Versions/A/CommonPanels"/>
    <binaryImage start="0x90130000" end="0x90328fff" type="__TEXT" path="/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/ JavaScriptCore"/>
    <binaryImage start="0x90329000" end="0x90329fff" type="__TEXT" path="/System/Library/PrivateFrameworks/InstallServer.framework/Versi ons/A/InstallServer"/>
    <binaryImage start="0x904b8000" end="0x90545fff" type="__TEXT" path="/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit"/>
    <binaryImage start="0x90546000" end="0x90565fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib"/ >
    <binaryImage start="0x90583000" end="0x9058ffff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGL.dylib"/>
    <binaryImage start="0x90590000" end="0x90623fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ATS.framework/Versions/A/ATS"/>
    <binaryImage start="0x90624000" end="0x9070cfff" type="__TEXT" path="/System/Library/Frameworks/CoreData.framework/Versions/A/CoreDa ta"/>
    <binaryImage start="0x9070d000" end="0x90766fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGLU.dylib"/>
    <binaryImage start="0x90767000" end="0x90767fff" type="__TEXT" path="/System/Library/Frameworks/AudioUnit.framework/Versions/A/Audio Unit"/>
    <binaryImage start="0x90768000" end="0x907e5fff" type="__TEXT" path="/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreA udio"/>
    <binaryImage start="0x908d5000" end="0x908d5fff" type="__TEXT" path="/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa"/>
    <binaryImage start="0x90929000" end="0x90958fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/AE.framework/Versions/A/AE"/>
    <binaryImage start="0x90959000" end="0x90960fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A .dylib"/>
    <binaryImage start="0x90961000" end="0x909befff" type="__TEXT" path="/usr/lib/libstdc&#43;&#43;.6.dylib"/>
    <binaryImage start="0x909bf000" end="0x90a1bfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/HTMLRendering.framework/Versions/A/HTMLRendering"/>
    <binaryImage start="0x90b67000" end="0x90ba1fff" type="__TEXT" path="/System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/C oreUI"/>
    <binaryImage start="0x90ba5000" end="0x90bb3fff" type="__TEXT" path="/usr/lib/libz.1.dylib"/>
    <binaryImage start="0x90bd1000" end="0x90ed9fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/HIToolbox.framework/Versions/A/HIToolbox"/>
    <binaryImage start="0x90f41000" end="0x90f45fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib"/>
    <binaryImage start="0x90f46000" end="0x90f5efff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/OpenScripting.framework/Versions/A/OpenScripting"/>
    <binaryImage start="0x90f5f000" end="0x91130fff" type="__TEXT" path="/System/Library/Frameworks/Security.framework/Versions/A/Securi ty"/>
    <binaryImage start="0x911cb000" end="0x911cdfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dyl ib"/>
    <binaryImage start="0x911ce000" end="0x91261fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/Ink.framework/Versions/A/Ink"/>
    <binaryImage start="0x91262000" end="0x92162fff" type="__TEXT" path="/System/Library/QuickTime/QuickTimeComponents.component/Content s/MacOS/QuickTimeComponents"/>
    <binaryImage start="0x921b2000" end="0x921b8fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/Print.framework/Versions/A/Print"/>
    <binaryImage start="0x921eb000" end="0x92516fff" type="__TEXT" path="/System/Library/Frameworks/QuickTime.framework/Versions/A/Quick Time"/>
    <binaryImage start="0x92517000" end="0x92524fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL"/ >
    <binaryImage start="0x92526000" end="0x92526fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon"/ >
    <binaryImage start="0x92527000" end="0x92568fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.d ylib"/>
    <binaryImage start="0x92569000" end="0x92630fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vImage.framework/Versions/A/vImage"/>
    <binaryImage start="0x9263b000" end="0x92643fff" type="__TEXT" path="/System/Library/Frameworks/DiskArbitration.framework/Versions/A /DiskArbitration"/>
    <binaryImage start="0x92644000" end="0x926d1fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/LaunchServices.framework/Versions/A/LaunchServices"/>
    <binaryImage start="0x926d2000" end="0x927d9fff" type="__TEXT" path="/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit"/ >
    <binaryImage start="0x927da000" end="0x9290dfff" type="__TEXT" path="/System/Library/Frameworks/CoreFoundation.framework/Versions/A/ CoreFoundation"/>
    <binaryImage start="0x9290e000" end="0x92be8fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/CarbonCore.framework/Versions/A/CarbonCore"/>
    <binaryImage start="0x92be9000" end="0x92cc9fff" type="__TEXT" path="/usr/lib/libobjc.A.dylib"/>
    <binaryImage start="0x92cca000" end="0x92ccafff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/vecLib"/>
    <binaryImage start="0x92f34000" end="0x93a2dfff" type="__TEXT" path="/System/Library/Frameworks/WebKit.framework/Versions/A/Framewor ks/WebCore.framework/Versions/A/WebCore"/>
    <binaryImage start="0x93a2e000" end="0x93a59fff" type="__TEXT" path="/usr/lib/libauto.dylib"/>
    <binaryImage start="0x93a5a000" end="0x93a61fff" type="__TEXT" path="/usr/lib/libgcc_s.1.dylib"/>
    <binaryImage start="0x93aa0000" end="0x93aabfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A .dylib"/>
    <binaryImage start="0x93afe000" end="0x93b05fff" type="__TEXT" path="/System/Library/Frameworks/AGL.framework/Versions/A/AGL"/>
    <binaryImage start="0x93b06000" end="0x93fd7fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGLProgrammability.dylib"/>
    <binaryImage start="0x93fd8000" end="0x94111fff" type="__TEXT" path="/usr/lib/libicucore.A.dylib"/>
    <binaryImage start="0x94112000" end="0x9416cfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreText.framework/Versions/A/CoreText"/>
    <binaryImage start="0x9416d000" end="0x941acfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib"/ >
    <binaryImage start="0x941bd000" end="0x94244fff" type="__TEXT" path="/usr/lib/libsqlite3.0.dylib"/>
    <binaryImage start="0x94245000" end="0x942c2fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libvMisc.dylib"/>
    <binaryImage start="0x942c3000" end="0x942c7fff" type="__TEXT" path="/usr/lib/system/libmathCommon.A.dylib"/>
    <binaryImage start="0x94392000" end="0x94486fff" type="__TEXT" path="/usr/lib/libiconv.2.dylib"/>
    <binaryImage start="0x94487000" end="0x94552fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ColorSync.framework/Versions/A/ColorSync"/>
    <binaryImage start="0x94553000" end="0x94603fff" type="__TEXT" path="/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerber os"/>
    <binaryImage start="0x94604000" end="0x9460efff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/CarbonSound.framework/Versions/A/CarbonSound"/>
    <binaryImage start="0x949ff000" end="0x94ab1fff" type="__TEXT" path="/usr/lib/libcrypto.0.9.7.dylib"/>
    <binaryImage start="0x94c6f000" end="0x94cc0fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/HIServices.framework/Versions/A/HIServices"/>
    <binaryImage start="0x94cc1000" end="0x94d0afff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/Metadata.framework/Versions/A/Metadata"/>
    <binaryImage start="0x94d50000" end="0x94d7dfff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libvDSP.dylib"/>
    <binaryImage start="0x94da4000" end="0x94da4fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/ApplicationServices"/>
    <binaryImage start="0x94da5000" end="0x95445fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics"/>
    <binaryImage start="0x95446000" end="0x9546ffff" type="__TEXT" path="/usr/lib/libcups.2.dylib"/>
    <binaryImage start="0x955f1000" end="0x95606fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/ImageCapture.framework/Versions/A/ImageCapture"/>
    <binaryImage start="0x9571a000" end="0x9571dfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/Help.framework/Versions/A/Help"/>
    <binaryImage start="0x9571e000" end="0x957c5fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/QD.framework/Versions/A/QD"/>
    <binaryImage start="0x958a9000" end="0x958bffff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/DictionaryServices.framework/Versions/A/DictionaryServices"/>
    <binaryImage start="0x958c0000" end="0x95b3cfff" type="__TEXT" path="/System/Library/Frameworks/Foundation.framework/Versions/C/Foun dation"/>
    <binaryImage start="0x95bc0000" end="0x95f7efff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libLAPACK.dylib"/>
    <binaryImage start="0x95f7f000" end="0x9603afff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/OSServices.framework/Versions/A/OSServices"/>
    <binaryImage start="0x96047000" end="0x96063fff" type="__TEXT" path="/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreV ideo"/>
    <binaryImage start="0x96064000" end="0x961b6fff" type="__TEXT" path="/System/Library/Frameworks/AudioToolbox.framework/Versions/A/Au dioToolbox"/>
    <binaryImage start="0x96203000" end="0x96282fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/SearchKit.framework/Versions/A/SearchKit"/>
    <binaryImage start="0x96283000" end="0x9630dfff" type="__TEXT" path="/System/Library/PrivateFrameworks/DesktopServicesPriv.framework /Versions/A/DesktopServicesPriv"/>
    <binaryImage start="0x9630e000" end="0x963effff" type="__TEXT" path="/usr/lib/libxml2.2.dylib"/>
    <binaryImage start="0x96403000" end="0x9640ffff" type="__TEXT" path="/System/Library/PrivateFrameworks/HelpData.framework/Versions/A /HelpData"/>
    <binaryImage start="0x96410000" end="0x967adfff" type="__TEXT" path="/System/Library/Frameworks/QuartzCore.framework/Versions/A/Quar tzCore"/>
    <binaryImage start="0x967ae000" end="0x967ccfff" type="__TEXT" path="/usr/lib/libresolv.9.dylib"/>
    <binaryImage start="0x967cd000" end="0x96874fff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Fr ameworks/CFNetwork.framework/Versions/A/CFNetwork"/>
    <binaryImage start="0x96875000" end="0x97073fff" type="__TEXT" path="/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit"/ >
    <binaryImage start="0x97074000" end="0x97076fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/SecurityHI.framework/Versions/A/SecurityHI"/>
    <binaryImage start="0x97077000" end="0x97487fff" type="__TEXT" path="/System/Library/Frameworks/Accelerate.framework/Versions/A/Fram eworks/vecLib.framework/Versions/A/libBLAS.dylib"/>
    <binaryImage start="0x97488000" end="0x974c6fff" type="__TEXT" path="/System/Library/Frameworks/OpenGL.framework/Versions/A/Librarie s/libGLImage.dylib"/>
    <binaryImage start="0x974c7000" end="0x974c8fff" type="__TEXT" path="/usr/lib/libffi.dylib"/>
    <binaryImage start="0x97743000" end="0x978d2fff" type="__TEXT" path="/System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/ CoreAUC"/>
    <binaryImage start="0x978d3000" end="0x978dcfff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/SpeechRecognition.framework/Versions/A/SpeechRecognition"/>
    <binaryImage start="0x978dd000" end="0x978ddfff" type="__TEXT" path="/System/Library/Frameworks/CoreServices.framework/Versions/A/Co reServices"/>
    <binaryImage start="0x978fc000" end="0x9790cfff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis"/>
    <binaryImage start="0x97912000" end="0x9793afff" type="__TEXT" path="/System/Library/PrivateFrameworks/Shortcut.framework/Versions/A /Shortcut"/>
    <binaryImage start="0x97a74000" end="0x97bdbfff" type="__TEXT" path="/usr/lib/libSystem.B.dylib"/>
    <binaryImage start="0x97bdc000" end="0x97c00fff" type="__TEXT" path="/usr/lib/libssl.0.9.7.dylib"/>
    <binaryImage start="0x97c3e000" end="0x97c80fff" type="__TEXT" path="/System/Library/Frameworks/Carbon.framework/Versions/A/Framewor ks/NavigationServices.framework/Versions/A/NavigationServices"/>
    <binaryImage start="0x97cd0000" end="0x97cd7fff" type="__TEXT" path="/usr/lib/libbsm.dylib"/>
    <binaryImage start="0x97d28000" end="0x97e70fff" type="__TEXT" path="/System/Library/Frameworks/ApplicationServices.framework/Versio ns/A/Frameworks/ImageIO.framework/Versions/A/ImageIO"/>
    <binaryImage start="0xb0000000" end="0xb0004fff" type="__TEXT" path="/Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/../Frameworks/ahclient.framework/Versions/A/ah client"/>
    <binaryImage start="0xba900000" end="0xba916fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libJapaneseConverter.dyl ib"/>
    <binaryImage start="0xbab00000" end="0xbab21fff" type="__TEXT" path="/System/Library/CoreServices/Encodings/libKoreanConverter.dylib "/>
    </binaryImageSet>
    </crash>
    Console Log Message:
    Version:1.0 StartHTML:0000000167 EndHTML:0000002013 StartFragment:0000000451 EndFragment:0000001997        
    Process:         Adobe Photoshop CS3 [306]
    Path:            /Applications/Adobe Photoshop CS3/Adobe Photoshop CS3.app/Contents/MacOS/Adobe Photoshop CS3
    Identifier:      com.adobe.Photoshop
    Version:         10.0 (10.0x20070321 [20070321.m.1480 2007/03/21:16:39:00 cutoff; m branch]) (10.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [105]
    Interval Since Last Report: 27167 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report: 22482 sec
    Per-App Crashes Since Last Report:   2
    Date/Time:       2012-06-13 12:38:57.741 +0100
    OS Version:      Mac OS X 10.5.8 (9L31a)
    Report Version:  6
    Anonymous UUID: 934B74CE-A232-4279-83E3-64E67008480C
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  0

    I can confirm that this is a user preference problem, as there is no problem on a newly created user account. However, deleting the 'obvious' preference files from ~/Library/Preferences (Adobe and Photoshop prefs and plists) has had no effect.
    I have moved ALL preference files from ~/Library/Preferences, restarted and relaunched Photoshop. This has resolved the original Photoshop issue. I now have to reapply all of the other user preferences for all other applications/devices. (Resolving the original issue has probably created more work, but at least we can use Photoshop!)
    It would be nice to hear if anyone has any idea which preference file may of caused the issue.
    Thanks.

  • Bridge CS4 Meta data in web album

    Hi,
    I am looking all over for a way which makes it posibly to show ONLY the description meta data in a web album created with adobe bridge cs4.
    I have been able to have a text for each image in a slide show in every free web album I have tryed. Since I started to use bridge, I have been happy to use it for rating images and stuff like that. But can it really be that Meta data is so difficult to handle in bridges web album?... I think only one of the templates makes it possible to check 'Show metadata', but this is ALL metadata.. very many metadata, and definately not what I want. It can not be the case that bridges web album can not show a description or title only from an images meta or can it? Can anyone help me, have I missed something.
    Hope someone can help me with some hints.. is it possible to make a web album including only description Meta data for each image?
    Thank you very much
    Regards
    Jens

    hmm, maybe bridge is not the right choice after all, maybe Fireworks are better.. but still wondering why this simple possibility is not present in bridge,..

  • Difference between component configuration and application configuration in webdynpro

    what is the difference between component configuration and application configuration in webdynpro?

    Hi Rohit,
    With the component configuration, you can control the behavior of each individual component within a Web Dynpro application or the user interface of individual views. For each component, several records of configuration data can be created.
    Using the application configuration, it is now possible to assign the configuration required in the current application to all the components used.
    In short : Component Config belongs to WDP Component and Appl'n Config. belongs to WDP Appl'n.
    Check this document for more information.
    Web Dynpro for ABAP - Component and Application Configuration
    Thanks
    KH

  • Quicktime Meta-data Access (Creation Time)

    Greetings,
    I'd like to be able to pull the creation time from a quicktime file. A bit of browsing at Apple's QT site left me quite confused. It does seem, however, that the time (or was it just the date) is available as a tag inside the QT file. Anybody have a working bit of code I can steal??
    Background: My digital camera (Kodak 3600) lets me shoot quicktime snippets. But, their transfer software is broken (misorders files). It also doesn't do the file management the way I want it to be done :) So, anyway, I'm putting together a simple swing client to handle the chore. I'd like to be able to get the creation time from the metadata, so I can correctly order the images/videos on my PC archive. I have successfully used JExif to grab Exif tags from the JPGs, and would like to get similar info from the metadata inside the quicktime file.
    Thanks very much for your help,
    Bill Nace

    Don't have working code (though it's an interesting little thing to try when I get back home), but if you're willing to switch from JMF to QuickTime for Java, the "Media" class in that API has a getCreationTime() method that is probably what you're looking for. This returns an int that represents the number of seconds (not milliseconds) elapsed since Midnight, Jan 1, 1904 (ie, the Beginning of Macintosh Time).
    As for getting the Media, start with a Movie, get the right Track, then do Track.getMedia().getCreationTime(). Appropriate caveats about QTJ's difficulty apply, as do apologies for bringing it up in this forum.
    Shot in the dark, but it looks like that's how you do it in QTJ. Don't know if JMF exposes this meta-data in any way (kinda thinking not...)
    --invalidname

  • Adaptor meta data &mapping templtes

    hi
    1. explain about adaptor meta data &mapping templtes what does use with them?
    2.what is exchange fault data and exchange log data under data types
    3.what are web as apart from 6.2 and 6.4?
    4.describe about sap xi 3.0 like SP's what are types
    5.about content
    pls give details mentioned above .
    thanks & regards

    >>1. explain about adaptor meta data &mapping templtes what does use with them?
    Adapter Metadata is the foundation configuration for the Adapters used in XI for message transfer. The functions provided allow either the creation of new Adapters or the modifications of existing ones.
    Just like you can reuse data types in different message types, you can also save parts of message mappings as Mapping Templates and reuse them elsewhere. Once you have saved a mapping template it serves as a copy template that you can then load into other message mappings and modify to fit your requirements.
    >>2.what is exchange fault data and exchange log data under data types
    Fault message types contain data types defining application errors. Application errors are errors that occur on the inbound side of a message transfer when the application could not process successfully.
    >>3.what are web as apart from 6.2 and 6.4?
    The Web Application Server is a platform for efficient development and allows you to implement Web applications. It builds upon proven and stable application server
    technology and Internet-based infrastructure from SAP.
    >>4.describe about sap xi 3.0 like SP's what are types
    check http://service.sap.com
    >>5.about content
    The contents of the Integration Repository are collectively known as XI Content (Process Integration Content); XI content is the integration knowledge that is required for describing collaborative processes (collaboration knowledge).
    For an overview of the XI Content currently provided by SAP, see SAP Service Marketplace at http://service.sap.com/solutions  -> SAP NetWeaver  ->  SAP NetWeaver in Detail  ->  Process Integration  ->  SAP Exchange Infrastructure  ->  SAP XI in Detail  -> XI Content Catalog.

  • How to use custom component configuration

    Hi Experts,
    For a standard webdynpro object I have created a new z component configuration by copying from existing one. In the standard there are already 2 existing component configuration.
    This webdynpro does not have any application created so I am not able to directly assign this component configuration.
    During run time in portal when I view the properties I can see a application for this webdynpro component and the standard component configuration being used.
    My question is how to use the z component configuration I have created in the webdynpro?

    Hi Srinivas
    I researched your problem. I hope the below code helps you. You could add the below code to wddoinit.
    DATA:  lo_api_controller       TYPE REF TO if_wd_component,
              lo_pers_manager      TYPE REF TO if_wd_personalization,
              ls_config_key           TYPE wdy_config_key.
               lo_api_controller = wd_comp_controller->wd_get_api( ).
               lo_pers_manager = lo_api_controller->get_personalization_manager( ).
                     ls_config_key-config_id = 'ZTEST' .
                     lo_pers_manager->load_config_by_key( ls_config_key ).
    Regards
    Lorraine

  • ANSI X12 meta data availability in conversion agent??

    Hello,
    Is there a provision for availability of ANSI X12 meta data in SAP conversion agent. We are trying to process EDI orders using the X12 INDUSTRY standard. Please advise.
    -Kris

    hi,
    SAP Conversion Agent together with SAP Net Weaver, enables  to automate complex integration activities for a multitude of data and document formats. These include unstructured and partially structured documents such as Office files, data streams, printing applications, and other application-specific formats.
    Easily integrate unstructured and semi-structured data into SAP Net  Weaver Process Integration using the Conversion Agent.
    Conversion Agent dynamically converts unstructured messages from   Microsoft Word,Excel,PDF plain text. 
    Semi-structured formats such as HL7,SWIFT,HIPA, ANSI X12 and COBOL to   PI understandable SOAP XML.
              So that it helps to easily integrate the information need into the back-end systems. Conversion can also be used as the reverse process to convert from XML to unstructured or semi-structured formats
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/xi/sap%2bconversion%2bagent%2b-%2bthe%2blong%2bjourney
    Conversion Agent - Handling EDI termination characters
    Conversion Agent a Free Lunch?
    Integrate SAP Conversion Agent by Itemfield with SAP XI
    regards
    sr

  • When I change my meta data in iTunes why does it not get displayed in Sonos or MediaMonkey

    Hello,
    I noticed that when I change the meta data in iTunes for example by right clicking an album -> get info   and than change the Genre of the album and than click OK . It takes the changes in iTunes but I have a Sonos System and when I update my music library the changes are not being displayed . When I now put the album in MediaMonkey I also can not see the genre change . This used to work back in the days .
    Did iTunes change anything in regards to handling and saving meta data ? iTunes does not seem to save the information in the file anymore ?
    Thanks,
    A

    I solved my problem. Here's how:
    1. Right click iTunes and click properties from the "Windows 8 Desktop" (or if you want to call it the 7 desktop thats fine too)
    2. Select the compatibility tab.
    3. Set compatibility mode to Windows 7 and click apply.
    4. Open iTunes, sign into iTunes store, Turn on iTunes Match, Add your computer.
    5. Close Program
    6. Restart Computer

Maybe you are looking for

  • Unable to connect computers to a Windows Server 2012

    I have two brand new Windows 7 Professional computers that I want to connect to a Windows Server 2012 Essentials.  I'm able to download the connector software but when it is searching for the server I receive a message that "Cannot locate or identify

  • Safari 5.1.7 crashes at opening

    Hello, I had to resintall OSX Lion 10.7.4 and since then safari version 5.1.7 crashes when I open the app so I am unable to use it anymore. I did a software upadte and everything seems ok. I tried to restore Safari from a backup but it stays the same

  • Find/Change words (with GREP) and apply a style...

    I need a Script for Find/Change words with GREP, and apply a paragraph style... Thanks...

  • Select Lists - Setting and Referencing (Using) the Select List variable

    I have (a login page and) 3 application pages (call them Day, Week, Month), each with similar selection lists and a chart. I have three requirements. 1) When a new selection is made, the value of the selection list variable is updated --that is, it d

  • Sorting Ultra Search results

    I am in the process of researching Ultra Search and I am planning on building search functionality using the Ultra Search tag library. Part of the requirement of this search is that the search results need to be sorted alphabetically on a particular