Reading menu props for menus stored in repository

Hi All,
I need to come up with a way to read the roles on a menu item when the menu is stored in the database. The company I work for use to run a pl/sql routine that pulled this data from the tables in the repository. This no longer works becasue the data is now being stored as a long raw.
I tried to find a way to do a design capture in designer, but you cannot do a design capture on a menu. I was wondering if there is a way around that, and if not how can we get the menu information we need out of the repository?
Thanks for your help.
Respectfully,
Jim
null

Hi,
I have stored all the files referred in code ( player.swf, install_flash_player_active_x.msi and Radvan_001MEDWHI.flv ) at root>documents >test folder in KM repository
<u><i>Julian</i></u>
My requirement is to know, what path i should give for the files highlighted with bold in my code as they are stored in KM .
<i><u>
Praveen</u></i>
Can you please tell me how should I modify these lines in code (name of video file is Radvan_001MEDWHI.flv)
<param name="movie" value="player.swf?file=Radvan_001MEDWHI.flv" >
embed src="player.swf"
pluginspage="install_flash_player_active_x.msi" >
Regards,
Madhvika

Similar Messages

  • Hide the Acrobat Reader Menu Bar

     
    For my Livecycle Designer ES document, I only want the Acrobat Reader end users to use my buttons (SAVE, PRINT, EXIT) rather than the Acrobat Reader Menu Bar to access the same functions. My buttons contain various java scripts that are necessary for form completion. If they bypass these buttons using the Acrobat Reader Menu Bar (example: File, Print), then the form will not capture the data properly.
    Is there a way to hide the Acrobat Reader Menu bar for my specific form through a built in function in Livecycle ES or is there a java script that can be used to hide the Reader Menu Bar?
    Thanks,
    Eric

    Hi Eric,
    I am fairly sure that you cannot access the presence of the Menu Bar. I have tried here but can't get it to work.
    An alternative would be to open the form full screen. When you do this the cursor changes into a click advance (to next page), but you can also turn this off.
    An example is here: https://acrobat.com/#d=JK2I24ZgmsvMr6BtCQNMOg
    I appreciate that the user can elect not to go into full screen or can escape out of it, but it is a rough workaround.
    The following in the docReady event should work:
    app.execMenuItem("FullScreen");
    app.fs.clickAdvances = false;
    Good luck,
    Niall

  • Extract Menu Tree for All Active Menus

    All,
    I am trying to create an extract of the menu tree hierarchy for a group of "active" menus (i.e., active in that the menu is assigned to a responsibility which is assigned to a user). I have used the following query which returns the menu tree for a given MENU_ID (&MENU_ID):
    SELECT      LPAD(' ', 6*(LEVEL-1)) || menu_entry.entry_sequence sequence
         , LPAD(' ', 6*(LEVEL-1)) || menu.user_menu_name SubMenu_Descrition
         , LPAD(' ', 6*(LEVEL-1)) || func.user_function_name Function_Description
         , menu.menu_id
         , func.function_id
         , menu_entry.grant_flag Grant_Flag
         , DECODE(menu_entry.sub_menu_id, null, 'FUNCTION', DECODE(menu_entry.function_id, null, 'SUBMENU', 'BOTH')) Type
    FROM      apps.fnd_menu_entries menu_entry
         , apps.fnd_menus_tl menu
         , apps.fnd_form_functions_tl func
    WHERE      menu_entry.sub_menu_id = menu.menu_id(+)
         AND menu_entry.function_id = func.function_id(+)
         AND grant_flag = 'Y'
         START WITH menu_entry.menu_id =      (
                             SELECT      menu_id
                             FROM      apps.fnd_menus_tl menu2
                             WHERE      menu2.menu_id = '*&menu_id'*)
         CONNECT BY menu_entry.menu_id = PRIOR menu_entry.sub_menu_id
    ORDER SIBLINGS BY menu_entry.entry_sequence;
    I would like to be able to run the above query, and subsequently spool to file, for all of the MENU_IDs returned as a result of the following sub-query (i.e., replace the &menu_id value with the menu_ids returned from the following query):
    SELECT      FM.MENU_ID
    FROM      apps.FND_MENUS FM,
         apps.fnd_user_resp_groups furg,
         apps.fnd_responsibility fr
    WHERE     fm.menu_id = fr.menu_id
         AND furg.responsibility_id = fr.responsibility_id;
    Any help would be appreciated!
    Thanks,

    Hi;
    Please see below threads which may helpful for your issue:
    Migrating menues from oracle 11i to R12
    How to use FNDLOAD for functions, menus and responsibilities
    Menu Deleted
    Also see:
    Menu Deleted
    Regard
    Helios

  • Menu exit for VA01/02/03

    How to find the menu exit for VA01/02/03 transactions?
    Thanks
    Tharani

    hi do like this....use this program and execurte it give the tcode and execute it will give the exits list click on the exit and it will takes to the exit and choose test it gives whether it is a manu exit or function exit..
    REPORT z_find_userexit NO STANDARD PAGE HEADING.
    *&  Enter the transaction code that you want to search through in order
    *&  to find which Standard SAP User Exits exists.
    *& Tables
    TABLES : tstc,     "SAP Transaction Codes
             tadir,    "Directory of Repository Objects
             modsapt,  "SAP Enhancements - Short Texts
             modact,   "Modifications
             trdir,    "System table TRDIR
             tfdir,    "Function Module
             enlfdir,  "Additional Attributes for Function Modules
             tstct.    "Transaction Code Texts
    *& Variables
    DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
    DATA : field1(30).
    DATA : v_devclass LIKE tadir-devclass.
    *& Selection Screen Parameters
    SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
    SELECTION-SCREEN SKIP.
    PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
    SELECTION-SCREEN SKIP.
    SELECTION-SCREEN END OF BLOCK a01.
    *& Start of main program
    START-OF-SELECTION.
    Validate Transaction Code
      SELECT SINGLE * FROM tstc
        WHERE tcode EQ p_tcode.
    Find Repository Objects for transaction code
      IF sy-subrc EQ 0.
        SELECT SINGLE * FROM tadir
           WHERE pgmid    = 'R3TR'
             AND object   = 'PROG'
             AND obj_name = tstc-pgmna.
        MOVE : tadir-devclass TO v_devclass.
        IF sy-subrc NE 0.
          SELECT SINGLE * FROM trdir
             WHERE name = tstc-pgmna.
          IF trdir-subc EQ 'F'.
            SELECT SINGLE * FROM tfdir
              WHERE pname = tstc-pgmna.
            SELECT SINGLE * FROM enlfdir
              WHERE funcname = tfdir-funcname.
            SELECT SINGLE * FROM tadir
              WHERE pgmid    = 'R3TR'
                AND object   = 'FUGR'
                AND obj_name = enlfdir-area.
            MOVE : tadir-devclass TO v_devclass.
          ENDIF.
        ENDIF.
    Find SAP Modifactions
        SELECT * FROM tadir
          INTO TABLE jtab
          WHERE pgmid    = 'R3TR'
            AND object   = 'SMOD'
            AND devclass = v_devclass.
        SELECT SINGLE * FROM tstct
          WHERE sprsl EQ sy-langu
            AND tcode EQ p_tcode.
        FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
        WRITE:/(19) 'Transaction Code - ',
        20(20) p_tcode,
        45(50) tstct-ttext.
        SKIP.
        IF NOT jtab[] IS INITIAL.
          WRITE:/(95) sy-uline.
          FORMAT COLOR COL_HEADING INTENSIFIED ON.
          WRITE:/1 sy-vline,
          2 'Exit Name',
          21 sy-vline ,
          22 'Description',
          95 sy-vline.
          WRITE:/(95) sy-uline.
          LOOP AT jtab.
            SELECT SINGLE * FROM modsapt
            WHERE sprsl = sy-langu AND
            name = jtab-obj_name.
            FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
            WRITE:/1 sy-vline,
            2 jtab-obj_name HOTSPOT ON,
            21 sy-vline ,
            22 modsapt-modtext,
            95 sy-vline.
          ENDLOOP.
          WRITE:/(95) sy-uline.
          DESCRIBE TABLE jtab.
          SKIP.
          FORMAT COLOR COL_TOTAL INTENSIFIED ON.
          WRITE:/ 'No of Exits:' , sy-tfill.
        ELSE.
          FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
          WRITE:/(95) 'No User Exit exists'.
        ENDIF.
      ELSE.
        FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
        WRITE:/(95) 'Transaction Code Does Not Exist'.
      ENDIF.
    Take the user to SMOD for the Exit that was selected.
    AT LINE-SELECTION.
      GET CURSOR FIELD field1.
      CHECK field1(4) EQ 'JTAB'.
      SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
      CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    regards,
    venkat.

  • Background video for menus'

    Newbie: Want a standard scene as menu background for use in different movies. Do I have to edit and burn to DVD to import or is there a better way? Using PE9. Sorry if this has been answered numerous times before. Recording in avchd.

    No. You just add it under the Disc Menus tab as part of authoring your DVD.
    I show you step by step how to do this in my books. http://Muvipix.com/pe10.php
    But basically, you select a menu template under the Disc Menus tab, then click to select its background in the Disc Layout panel. Once you do that, you'll see the Browse button for locating the video or still you want to swap in as the background.

  • Simulator doesn't match disk created for menus

    Hi,
    I have created a multimenu, 2 track DVD. I have set all the menu connections in the tracks to go back to the menu button that corresponds to the marker on the track. This works fine in the simulator and all the menu button pushes go back to the correct menu buttons. However, when I build the project and use DVD player to view it, pushing the menu button for track 1 always takes me back to the Chapters 1-6 menu I have created and it always highlights button 1 to matter where I am in track 1. I tried this over and over after deleting preferences, reinstalling DVD studio, restarting and I always get the same result. Is there something else I can try? Is there anyway to examine the build results to see where the error may be? Is there anyway to correct the build results?
    Thanks

    Welcome to the discussions...
    Just to be clear, you have set a different menu call on each chapter marker so that when the track is played, pressing the 'menu' button should take the viewer to the menu which holds the button for that particular chapter marker, regardless of where they started playback from? So in effect they could start from menu 1, watch a bit of the track and then go to menu 5 if they are at a marker late in the track?
    This should work and I would urge you to check your connections in the connections tab. The alternative is to make a simple script and point the menu call at it instead. If I assume that you have got five buttons per menu that play a marker, and four menus (so 20 markers in total), the script is this:
    mov GPRM0, SPRM7
    goto 6 if GPRM0 >5
    goto 8 if GPRM0 >10
    goto 10 if GPRM0 >15
    Jump Menu1 \[GPRM0\]
    Sub GPRM0, 5
    Jump Menu2 \[GPRM0\]
    Sub GPRM0, 10
    Jump Menu3 \[GPRM0\]
    Sub GPRM0, 15
    Jump Menu4 \[GPRM0\]
    So if you are on a marker 1 through to five, line five jumps you to the first menu. Otherwise line 6 (markers 6 through to 10) takes you to menu 2. Line 8 (markers 11 through to 15) go to menu 3 and beyond marker 15 you go to line 10, and thus menu 4.
    The square brackets are GPRM based button jumps, meaning you will land on the button with the number value the same as the marker on that menu. To make sure that the marker values equal the button values (i.e. 1 through to 5 on each menu) I've subtracted a value accordingly each time.
    The scripted solution is probably overkill, but will work reliably. You should check your connection settings first, and remember that the simulator is NOT a good indication of what will actually happen, only an approximation.
    Good luck!

  • What's a good wysiwyg menu widget for Dreamweaver CS6 Mac?

    I'm trying to build menus in Dreamweaver CS6 Mac, and started using Spry...then learned that Adobe will no loner be supporting Spry and that it may not be as compatible with browsers in the future. 
    What's a good alternative wysiwyg menu widget for Dreamweaver that's makes it easy to create horizontal/vertical pop-down menus/sub menus? I'd be willing to pay for it if it's worth it.   Would be nice if it worked within Dreamweaver using Design/Spit modes the way Spry does, but not essential.  Thanks!

    Project Seven are widely regarded for their commercial DW menu extensions.
    PMM3 is one of the best I've seen
    http://www.projectseven.com/products/menusystems/pmm3/index.htm
    I have no affiliation with Project Seven other than as a happy customer.
    There are other menu systems out there too but I've never used them.

  • HT1420 i am trying to authorize my new computer.  i cannot find any menu option for this in the Itunes store.

    I am trying to authorize my new computer for Itunes.  I cannot find any menu option for this in the computer store

    Authorization and Deauthorization
    Macs:  iTunes Store- About authorization and deauthorization.
    Windows: How to Authorize or Deauthorize iTunes | PCWorld.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.
    More On De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.

  • XML to Forms conversion gives error for menus

    We are trying the ORACLE <---> XML conversion Utility.
    We want to convert a MMB to XML and store it in our repository. When we want to modify it we get the XML from the repository, convert it back to a MMB and edit it. This saves space in the repository DB.
    Problem when we convert or MMB --> XML using like this frmf2xml.bat OVERWRITE=YES TRANS_MENU.mmb
    the XML file is created.
    Now when we try to convert the XML back to a MMB using this code frmxml2f OVERWRITE=YES PRINTTREE=YES USERID=userid/pwd@db TRANS_MENU_mmb.xml we get this error:
    Oracle Forms 10.1.2 XML to Forms Tool
    Copyright(c) 2001, 2005, Oracle. All rights reserved.
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 164, Column 73>: XML-24523: (Error) Invalid value ' INTERNATIONAL_OUT_GOING_CALL_D_MENU ' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 773, Column 73>: XML-24523: (Error) Invalid value 'BILLING_PROCESS_MASTER_FILE_UP_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 823, Column 69>: XML-24523: (Error) Invalid value 'BANK_PAYMENT_AUDIT_REPORTS_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 864, Column 73>: XML-24523: (Error) Invalid value 'INFO_CONNECT_ACCOUNTING_INTERF_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 887, Column 73>: XML-24523: (Error) Invalid value 'DEALER_SOLD_SUBSCRIPTION_TRANS_MENU' for attribute: 'Name'
    file:/F:/Channa/XML_Forms_Conversion/I/TRANS_MENU_mmb.xml<Line 917, Column 73>: XML-24523: (Error) Invalid value 'CHANNA_LEVEL_42444444444444444_MENU' for attribute: 'Name'
    Invalid XML - file TRANS_MENU_mmb.xml does not validate against Forms XML Schema:
    Invalid value 'INTERNATIONAL_OUT_GOING_CALL_D_MENU' for attribute: 'Name'
    I found the problem. For submenus the XML adds a _MENU to the end of the name attribute and when the name of the menu is over 26 chars 26+5 = 31 becomes more than 30 characters.  So when the XML is converted to the MMB we get an error because forms objects cannot have names of lengths > 30.
    I think this could be a bug. We cannot modify the menu just for this since it is not practical.
    Is this a known bug? Any workaround?
    Edited by: Channa on Mar 5, 2010 2:11 AM
    Edited by: Channa on Mar 5, 2010 2:12 AM
    Edited by: Channa on Mar 5, 2010 2:13 AM
    Edited by: Channa on Mar 5, 2010 2:13 AM
    Edited by: Channa on Mar 18, 2010 9:22 PM
    Edited by: Channa on Mar 18, 2010 9:25 PM

    Hi Amol,
    You XML structure contains deep levels. As far as i understand about the StrictXML2PlainBean module, this is not capable of handling deep structures.
    This module is just an alternative to use FCC type functionality for other receiver adapters.
    Please take a look at these links:
    https://help.sap.com/saphelp_nwpi711/helpdata/EN/44/748d595dab6fb5e10000000a155369/content.htm
    StrictXml2PlainBean - to have an XML - EDI conversion?
    In case you want to achieve nested level content conversion, you may try this:
    /people/karthiknarayan.kesavan2/blog/2007/08/22/file-content-conversion-for-multi-hierarchical-structure
    I hope this helps.
    Regards, Gaurav.

  • Is report output stored in repository ?

    Hi,
    When I run a report from BIP console, does BIP store a copy of the report output in repository like the way it is stored for scheduled reports? Is there a option to re-open the report output instead of executing the report again ?
    Thanks
    Swarup

    Thanks for the reply.
    Yes, even I had read that output is stored in a temp dir and it is deleted(mostly after report is transferred to client).
    My second qstn is rephrasing of first the qstn.
    When a scheduled report is executed, its xml-data and output (pdf/rtf/etc) are stored in repository. BIP has options to download or republish them.
    Want to know if there is a similar option for reports we manually run.

  • My safari menu bar is missing --the menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away.  Any ideas how to retrieve it?

    My safari menu bar is missing.  The menu bar for desktop, HD, and apps appears, but when I click on Safari, it disappears, so I can no longer see my buttons for History, etc.  I think my husband (pc user) clicked it away when borrowing my computer.  Any ideas how to retrieve it?  Thanks. 

    I too was having the same problem However, I could access both the menu bar and the dock by hovering my mouse over them so it wasn't a huge problem but I prefered having it there anyway. I was not in full screen mode and I could still go into full screen mode if I wanted to.  I found the easiest solution was to just quit safai and restart it, but it might not work for you considering you couldn't access you menu bar either way.
    I found this article that allows you to hide/show the menu bar and the dock through TextEdit (didn't work for me) http://www.mactricksandtips.com/2009/07/hide-the-menubar-or-dock-in-specific-app s.html It is pretty old so it might not work for lion and a bit risky if you don't know what you're doing so I wouldn't really recommend doing it this way.
    And KSheppard, I know it's not really any of my buisness, but the way to get answers to a question isn't by insulting others and being quick-tempered. Even if you feel like you were insulted first, don't try snapping at people who aren't obligated to help you. Honestly, it just makes everything easier if everybody is cooperative and polite.

  • After updating to Firefox 7.0.1, menu bar for Google,yahoo, Facebook (message,notification,profile,home) and others site are disabled. How can solve this problem?

    after updating to Firefox 7.0.1, menu bar for Google(web ,image,video,map etc),yahoo, Facebook (message,notification,profile,home) and others site are disabled. even I cant log out from different sites cz the log out bar is completely disabled. I tried with Firefox 4;5 and 6, same problem exist . I tried by active all add ons for facebook, same problem exist. If I use internet explorer , I don't find such problem with it.
    How can I solve this problem?

    Thanks a lot for your swift response. And sorry if it was a bit too hectic to go through my detailed query (which I did because it was misunderstood when I asked previously). As I've mentioned above, I was informed that updating to 5.0.1 would '''require''' me to '''delete''' the current version and then install the new one. And doing so will involve losing all my bookmarks. I guess I should have been more specific and detailed there. By losing, I didn't mean losing them forever. I'm aware that they're secured in some place and deleting and installing the software doesn't harm its existence. What I meant that if I install the new version, I'd have to delete the old one. And after installing the new version, I'd have to transfer them (bookmarks) back from wherever they are. Get it? When it updated from 3.6.9 to 3.6.13, and from 3.6.13 to 3.6.18, I didn't need to follow that process. They were already present on their own.
    BTW, I'm having no problems with 3.6.18 but after learning about the existence of version 5.0.1, I'm a bit too eager to lay my hands over it.
    Thanks for your help; hope this wasn't extremely long.

  • Annoucement: New Menu Wizard for Captivate

    I'd like to announce our latest product release - the
    Menu Wizard for Adobe Captivate
    The
    Menu Wizard is a 3rd-party software product that integrates
    directly into published Adobe Captivate movies. The
    Menu Wizard is a Flash movie that provides a dynamic menu -
    a series of buttons that navigates to slides you specify within
    your published Adobe Captivate movies. This is a frequently
    requested feature for Captivate - and is often discussed here in
    the Forums.
    The
    Menu Wizard uses a .XML file read the menu content and
    settings. You can configure many options, including the number of
    menu buttons, button text, background colors (up/over), font, font
    size, font color (up/over), border width and color, drop shadow,
    button size (height,width), location, horizontal/vertical layout,
    transparency, and menu header options. The product is distributed
    as an InstallShield release (setup.exe), with all the necessary
    files, an example movie and menu, and a 19 page Instruction Guide
    (.PDF) document.
    The product website
    Menu Wizard
    Homepage contains detailed information about the product,
    example movies, and FAQs.
    July 23 Update: I've added a 15% discount throught August 6
    for Adobe Forum users. Use the coupon code
    adobeforum
    Thank you,
    Todd Haynes
    KCWebPlaza

    Dirk, the Menu Wizard does not have a feature to
    restrict users from going to various sections (slides) until
    they have visited other sections (slides).
    However, you might be able to accomplish this by 1) using
    some creative branching or 2) breaking your project up into
    separate movies - 1 for each section. At the end of section 1 -
    there is a Click Box or Button that will launch section 2. In this
    case, the Menu Wizard would be used for navigation within 1 movie
    (section) at a time.

  • Getting Menu Reference for a VI other than the current one

    Is there any way to get a Menu reference for a VI that isn't the current VI? There's Current VI's Menubar, but that only works on the current VI. I'd like something that does the same thing, but accepts a VI reference to a higher-level VI. I would expect to find a Property Node entry for it, but there doesn't seem to be one. This is for 8.2.

    eaolson wrote:
    A functional global is what I wound up using. It just seems odd to me that there's no other way to get access to that reference.
    It also seems counter-intuitive to me that a Shortcut Menu reference is only valid inside that particular frame of the Event Structure that caught it. If you're using a producer-consumer architecture, you can not send that refnum off to the consumer loop for handling; it can only used within that frame of the Event Structure.
    I am not sure what you mean. The refnum seems to be accessible from everywhere .
    As i wrote above:
    You can store the Menu Reference to a global variable for example, and you can read it, in any vi you want, just like all variables.
    Note: Do not try to use a property note. Use the menu functions

  • How to create xsd's for each table in repository instead of entire repos

    Hi Gurus,
    Is there any way i could create xsd's for each table in the repository separately instead of creating single xsd file from "Export repository schema" option which creates a single xml file for the entire repository.I need to create xsd for each table in repository...
    Any Help greatly appreciated
    Thanks
    Aravind

    Open the Lookup table you want the XSD for, in Data manger
    Export it to access.( You can select all the fields you want to export to access and then check option "open Access after export")
    Now in Access, again right click the table and export it to XML.
    Provided you have .NET frame work installed on the machine where you are doing this export, you can do the following:
    Use XSD.exe from command prompt and get the XSD.
    Use the following link as a reference for XSD stuff.
    http://msdn.microsoft.com/en-us/library/x6c1kb0s(VS.71).aspx
    (OR)
    Get the whole XML of the repository and distill the whole structure for Lookups and create XSD using any standard XML editor.

Maybe you are looking for

  • Add more PSD Files to layers

    How can i go from having one PSD file open in layers to having two or more, if use the bridge and open two or more then although they are in the layers bar i can still not do as much as if i have one open.

  • Short dump in delta extract  using bgRFC in NW 2004s

    Short dump in delta extract after Support Pack install, using bgRFC.  InfoSet Query extractor from Z-table residing on BW system into ODS.  Init and Full loads load successfully, delta loads short dump. "MESSAGE_TYPE_X"         "SAPLARFC" or "LARFCU2

  • Imovie not playing movies smoothly, help?

    I am relatively new to mac and am not sure how to troubleshoot this problem. I created an imovie and it looked great, now the transitions are not smooth or clear and many of the photos in the movie to which I have applied the ken burns effect hesitat

  • Disappearing Channel Strip slots & Plug-ins?

    Just bouncing down a project i've almost finished. For some reason (and i have experienced this problem before over a few versions of Logic now) the top section of the control strip for outputs 1-2, 3-5, 5-6 and plugs-ins used for them have disappear

  • Xpower Sata III Setup for Boot drive

    Hi again, I need help setting up my sata drive now...So far I have set sata 6gbs controller mode to AHCI. Verfied the Marvell bios recognized my drive correctly and installed windows. Was I supposed to change anything in the marvell bios(Virtual Disk