How to hide links and tab

Hi All,
I am working on SAP Sourcing 7.0. There are few changes I am trying to do in my system. They are:-
1>I am trying to hide Xpress tab from the top navigation. I went to the Setup->Workbench page. I have seen XPress is Default Buy-Side Template for XPrress Tab and Enable to hide check box is disabled. I tried to edit the page but no success.
I am able to add new page and able to hide. Pl let me know we can hide Xpress tab or not.
2>I am trying to hide Reference guide, setup, about and help links. I am able to hide Reference guide link via making changes in the security profile. But rest of the link I am not able to do. Pl let me know if itu2019s possible or not.
Deepak!!!

Hi Mudit,
Thanks for reply.I was able to hide XPress via hit and trail, once again thanks for input.But this changes are reflecting globally. Is there any way for hiding these links for specific user..?
1>I have observered in the security profile's Access right dropdown System option is available, Once i select, i can see different permission options and setup is among the one of them. What I am thinking I can restrict the user permission at this lavel, if I am not able to hide setup link.
2>One thing i want to share and need you input. I have found below option inside the System Navigation Tabset (Buyside)
Toolbar Container: System Navigation Tabset (Buyside) for  help, RG, about, help link under Gray Navigation Group.
ToolbarID I have created are:-
Help:-eso.system.toolbar.navigation.grayBarGroup.help
Setup:-eso.system.toolbar.navigation.grayBarGroup.srm_toplink_setup
Reference Guide:-eso.system.toolbar.navigation.grayBarGroup.refguide
About:-eso.system.toolbar.navigation.grayBarGroup.srm_toplink_about......please confirm above toolbarIds.
The mazor issue I faced was if I use wrong toolbar id, system starts throwing Oracle error after clicking setup link and all tabs are not visible.
I faced such error yesterday when i was trying for hiding XPress. At this situation how to solve error. I know via giving correct toolID value system will start working fine and i have done the same...:), but is there any other way of resume the system to original state.
Deepak!!!

Similar Messages

  • How to hide link and full screen view in Safari?

    Hi All,
    I am demonstrating a product on the web i want to hide the link and have a full screen view in safari.
    Thanks

    “hide the link” meaning “hide the address bar”.

  • How to hide Print and Filter option from dynamic ALV

    Hi,
    I have created the dynamic ALV. now User don't wan't Filter , export,print Option on the ALV dispaly.
    Could you please tell me How to hide Print and Filter option from dynamic ALV.
    Thanks and regards
    Amita.

    Hi,
    Please go through the following link to get an better idea on ALV.
    [https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/1190424a-0801-0010-84b5-ef03fd2d33d9&overridelayout=true]
    This is the code  which you have to write in  WDDOINIT
    DATA LO_CMP_USAGE TYPE REF TO IF_WD_COMPONENT_USAGE.
    LO_CMP_USAGE =   WD_THIS->WD_CPUSE_ALV_TEST( ).
    IF LO_CMP_USAGE->HAS_ACTIVE_COMPONENT( ) IS INITIAL.
      LO_CMP_USAGE->CREATE_COMPONENT( ).
    ENDIF.
    DATA LO_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .
          LO_INTERFACECONTROLLER =   WD_THIS->WD_CPIFC_ALV_TEST( ).
            DATA LO_VALUE TYPE REF TO CL_SALV_WD_CONFIG_TABLE.
            LO_VALUE = LO_INTERFACECONTROLLER->GET_MODEL(
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_EXPORT_ALLOWED( abap_false ).
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_PDF_ALLOWED( abap_false ).
    lo_value->IF_SALV_WD_STD_FUNCTIONS~SET_VIEW_LIST_ALLOWED( abap_false ).

  • How to hide Job index tab in PPOME

    Guys,
    Pls advise how to hide Job index tab in PPOME.
    Thanks

    Hi,
    The job index tab page is IT0783. You can check this through transaction OOFRAMEWORKCUST. In the same transaction, double click on u201CTab Page in Scenario for each Object Typeu201D folder under u201CScenario Definition (Hierarchy Framework)u201D in the left column. The scenario for PPOME is OME0. Look for the entry for OME0 and tab page IT0783 and check the u201Cdo not displayu201D box the last column.
    Hope this helps.
    p.s. Please search the forum on this topic. There are plenty of threads on PPOME tab page customization.
    Donnie

  • How to update link and import data of relocated incx file into inca file?

    Subject : <br />how to update link and import data of relocated incx file into inca file.?<br />The incx file was originally part of the inca file and it has been relocated.<br />-------------------<br /><br />Hello All,<br /><br />I am working on InDesignCS2 and InCopyCS2.<br />From indesign I am creating an assignment file as well as incopy files.(.inca and .incx file created through exporing).<br />Now indesign hardcodes the path of the incx files in inca file.So if I put the incx files in different folder then after opening the inca file in InCopy , I am getting the alert stating that " The document doesn't consists of any incopy story" and all the linked story will flag a red question mark icon.<br />So I tried to recreate and update the links.<br />Below is my code for that<br /><br />//code start*****************************<br />//creating kDataLinkHelperBoss<br />InterfacePtr<IDataLinkHelper> dataLinkHelper(static_cast<IDataLinkHelper*><br />(CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)));<br /><br />/**<br />The newFileToBeLinkedPath is the path of the incx file which is relocated.<br />And it was previously part of the inca file.<br />eg. earlier it was c:\\test.incx now it is d:\\test.incx<br />*/<br />IDFile newIDFileToBeLinked(newFileToBeLinkedPath);<br /><br />//create the datelink<br />IDataLink * dlk = dataLinkHelper->CreateDataLink(newIDFileToBeLinked);<br /><br />NameInfo name;<br />PMString type;<br />uint32 fileType;<br /><br />dlk->GetNameInfo(&name,&type,&fileType);<br /><br />//relink the story     <br />InterfacePtr<ICommand> relinkCmd(CmdUtils::CreateCommand(kRestoreLinkCmdBoss)); <br /><br />InterfacePtr<IRestoreLinkCmdData> relinkCmdData(relinkCmd, IID_IRESTORELINKCMDDATA);<br /><br />relinkCmdData->Set(database, dataLinkUID, &name, &type, fileType, IDataLink::kLinkNormal); <br /><br />ErrorCode err = CmdUtils::ProcessCommand(relinkCmd); <br /><br />//Update the link now                         <br />InterfacePtr<IUpdateLink> updateLink(dataLinkHelper, UseDefaultIID()); <br />UID newLinkUID; <br />err = updateLink->DoUpdateLink(dl, &newLinkUID, kFullUI); <br />//code end*********************<br /><br />I am able to create the proper link.But the data which is there in the incx file is not getting imported in the linked story.But if I modify the newlinked story from the inca file,the incx file will be getting update.(all its previous content will be deleted.)<br />I tried using <br />Utils<IInCopyWorkflow>()->ImportStory()<br /> ,But its import the incx file in xml format.<br /><br />What is the solution of this then?<br />Kindly help me as I am terribly stuck since last few days.<br /><br />Thanks and Regards,<br />Yopangjo

    >
    I can say that anybody with
    no experience could easily do an export/import in
    MSSQLServer 2000.
    Anybody with no experience should not mess up my Oracle Databases !

  • How to Hide Menus and Icons in SAP Login Screen.

    Hi
    Can Any one Guide me on How to Hide Menus and Icons in SAP Screen.
    Example: System Drop Down Menu, Help Drop Down menu Etc and
    ICONS: Trash Button, Truck Button , Print Button
    Using OS Level Regedit or SAP Level using any Parameter.
    Thanks & Regards
    Daniel . K

    AFAIK the system menu can´t be hidden - because people won´t be able to log off (but by using the X in the right upper corner). Additionally it contains additional transactions (own data etc.) that users should be able to change.
    Markus

  • How to Hide Catalog and New link fron BI

    Hi,
    I want to Hide Catalog Link and New Link Option form the navigation bar that appear in top right corner of BI. How would i achieve this
    The purpose of doing this restrict users from creating new analysis and also not able to view folders inside shared folders

    Check in Administration->Manage previleges->Home and Header
    ~ http://cool-bi,com

  • How to hide a single tab in tabcontrol

    Hi, I want to hide a single tab on a multi-tab tabcontrol based on login. If the particular bit is set, show 1st and 3rd and so on. I just gone through help files.I couldn't find any.
    Raj. 
    Solved!
    Go to Solution.

    EightBit wrote:
    How did you make the page property with "PageVis." I create a property node but then can only link to things in Pane, aka I can't find how to link to Page
    8bit, you should be aware you replied to a 4 yeaar old solved thread (Not the best way to attract attention- next time feel fre to start a new thread)
    Try this:
    A Tab is a container for "Pages" the Pages each have a "Page.visible" property.  since the pages are in the tab container you cant access there properties directly from the "Pane"
    Jeff

  • How to hide addnl data tab from CVO1N Transction

    Dear Friend's
    While creation of Document through CVO1N Transction first we fill up the data in "Document Data" tab then system gives"Addnl Data" tab.
    Here i don't need this "Addnl Data" tab.
    Pls guide me how i can hide the same tab.Give me the steps so i can implement.
    Thanks in Advance.
    Regds.
    Sandeep

    Additonal tab control with the assignment of class type and class in the document type. Removing class type and class will eliminate this additional data tab. In this case if any additional data is required then you will have to manually assigne class type and class within document each time
    However this is not what you want, you want to assign additional data after you have created a document, therefore solution could be make characteristics and class as an optional field so that system does not enforce you to maintain information at the time of creation. Second solution could be thought of as screen variant

  • How to hide/show and move screenelements at runtime

    Hi Guys
        Currently, i have a requirment that, in the same screen, when user choose different different option in the dropdown list, there should be different screenelements and table control with different columns showing below it.
    Now, i have two plans below:
    1), hide/show and move position of screen elements and table control at runtime
    2), call different subscreen
    I hope i can take the first way since the second way will modify structure of program ( As it is infotype screen ), any one knows how to implement the first solution?

    Hi,
    I would suggest you to call different subscreens and load them dynamically based on your parameters.Since different subscreen are called your coding and functionality could also be seperated by writing in the PAI and PBO of the correspondiong Screens.
    if you have decided to go by your first method then try the below code.
    a) if it is normal UI elements like text box etc
    LOOP AT SCREEN.
        IF <var> = ' value '.
            screen-invisible = '0'.
            MODIFY SCREEN.
      endif
    ENDLOOP.
    Here <var> refers to the screen field name and value refers to its value.
    b) To hide columns in a Table control.
    DATA cols LIKE LINE OF tc-cols.
      LOOP AT tc-cols INTO cols.
        IF cols-screen-group1 = 'G1'.
          cols-invisible = 'X'. "HIDE THIS COLUMN
          MODIFY tc-cols
          FROM cols
          TRANSPORTING invisible.
        ENDIF.
        CLEAR cols.
      ENDLOOP.
    PS: here TC refers to the name of the table control.
    Lemme know if you face any problems.
    Cheers,
    RK

  • How to hide username and passward in  web reports

    Dear friends
    Im runing one report on web but its showing the username and passward in the URL (address bar) can you please help me how to hide that passward.......
    let suppose the username/passward is scott/tiger
    thanks with regards

    for hide the password follow thses steps
    user_name := get_application_property(username);
    pass := get_application_property(password);
    conn := get_application_property(connect_string);
    con_url := 'userid='||user_name||'/'||pass||'@'||conn;
    /* Convert the connect string into a hexadecimal character string. */
    FOR i IN 1..LENGTH(con_url) LOOP
    v_a := ltrim(to_char(trunc(ascii(substr(con_url,i,1))/16)));
    if v_a = '10' THEN v_a := 'A';
    elsif v_a = '11' THEN v_a := 'B';
    elsif v_a = '12' THEN v_a := 'C';
    elsif v_a = '13' THEN v_a := 'D';
    elsif v_a = '14' THEN v_a := 'E';
    elsif v_a = '15' THEN v_a := 'F';
    end if;
    v_b := ltrim(to_char(mod(ascii(substr(con_url,i,1)),16)));
    if v_b = '10' THEN v_b := 'A';
    elsif v_b = '11' THEN v_b := 'B';
    elsif v_b = '12' THEN v_b := 'C';
    elsif v_b = '13' THEN v_b := 'D';
    elsif v_b = '14' THEN v_b := 'E';
    elsif v_b = '15' THEN v_b := 'F';
    end if;
    con_url_temp := con_url_temp||'%'||v_a||v_b;
    END LOOP;
    path:='/reports/rwservlet?server=repserver4&destype=cache&'||con_url_temp||'&report='||rep_path);
    web.show_document(path);
    kuljeet pal singh

  • How to hide rows and columns by AppleScript or Automator for printing

    Hello,
    I have to hide first empty rows (I do it by: organize - Column B is not empty)
    then: By context-menu in Header of Column K: Hide column
    and: By context-menu in Header of Column L: Hide column
    How can I make this 3 Steps automatic with AppleScript or Automator or maybe by formula?
    Thanks for any help

    Here is an edited version which allow you to choose the custom template on the fly.
    No need to edit a property in the script.
    --[SCRIPT printtable(s)_choosecustom]
    Enregistrer le script en tant que Script ou Application : printtable(s)_choosecustom.xxx
    déplacer le fichier ainsi créé dans le dossier
    <VolumeDeDémarrage>:Users:<votreCompte>:Library:Scripts:Applications:Numbers:
    Il vous faudra peut-être créer le dossier Numbers et peut-être même le dossier Applications.
    Sélectionner une partie de table, une table ou même plusieurs tables.
    Aller au menu Scripts , choisir Numbers puis choisir “printtable(s)_choosecustom”
    Le script crée un nouveau document depuis un modèle perso sélectionné,
    puis applique « Colle les valeurs » au contenu du presse-papiers.
    Il envoie enfin la commande d'impression.
    --=====
    L'aide du Finder explique:
    L'Utilitaire AppleScript permet d'activer le Menu des scripts :
    Ouvrez l'Utilitaire AppleScript situé dans le dossier Applications/AppleScript.
    Cochez la case "Afficher le menu des scripts dans la barre de menus".
    Sous 10.6.x,
    aller dans le panneau "Général" du dialogue Préférences de l'Éditeur Applescript
    puis cocher la case "Afficher le menu des scripts dans la barre des menus".
    --=====
    Save the script as a Script or an Application : printtable(s)_choosecustom.xxx
    Move the newly created file into the folder:
    <startup Volume>:Users:<yourAccount>:Library:Scripts:Applications:Numbers:
    Maybe you would have to create the folder Numbers and even the folder Applications by yourself.
    Select a subset of a table, a table or even several tables.
    Go to the Scripts Menu, choose Numbers, then choose “printtable(s)_choosecustom”
    The script create a new document based on the selected custom template,
    then apply “Paste Values” to the clipboard's contents.
    At last, it issue the print command.
    --=====
    The Finder's Help explains:
    To make the Script menu appear:
    Open the AppleScript utility located in Applications/AppleScript.
    Select the "Show Script Menu in menu bar" checkbox.
    Under 10.6.x,
    go to the General panel of AppleScript Editor’s Preferences dialog box
    and check the “Show Script menu in menu bar” option.
    --=====
    Yvan KOENIG (VALLAURIS, France)
    2011/02/20
    2011/03/16 -- replaced the Blank template by a custom one defined thru the property custom_template
    2011/03/17 -- Let choose the custom template, no longer Paste but Paste Values.
    --=====
    property theApp : "Numbers"
    --=====
    on run
    --my doyourduty()
    run script doyourduty
    end run
    script doyourduty
    --on doyourduty()
    my activateGUIscripting()
    Copy the selected items *)
    my raccourci(theApp, "c", "c") (* cmd + c *)
    Create a new document based upon Blank.template *)
    set myNewDoc to my makeAnIworkDocFromCustom()
    As it's a custom template, there is no default table to delete.
    Delete the default table *)
    tell application "Numbers" to tell document 1 to tell sheet 1 to delete table 1
    my selectMenu("Numbers", 4, 8) (* Paste Values *)
    my raccourci(theApp, "p", "c") (* cmd + p = Print *)
    my raccourci(theApp, return, "") (* return = validate the Print command*)
    --end doyourduty
    end script
    --=====
    Creates a new iWork document from a custom template and returns its name.
    example:
    set myNewDoc to my makeAnIworkDocFromCustom()
    on makeAnIworkDocFromCustom()
    set nb_chiffres to 3 (*
    2 = allow 99 templates
    3 = allow 999 templates *)
    Grab the localized names of the templates folders *)
    tell application "Numbers"
    set templates_loc to localized string "Templates"
    -- set myTemplates_loc to localized string "My Templates"
    end tell -- to application a
    Define the path to the folder storing custom templates *)
    --set chemindesmodeles to "" & (path to library folder from user domain) & "Application Support:iWork:Numbers:" & templates_loc & ":" & myTemplates_loc & ":"
    set chemindesmodeles to "" & (path to library folder from user domain) & "Application Support:iWork:Numbers:" & templates_loc & ":"
    Grab the list of every items stored in the folder *)
    tell application "Finder"
    set entire_contents to entire contents of folder chemindesmodeles
    end tell
    Build two lists. One contain the path to every custom templates.
    The other contain the names of these templates and the names of subfolders *)
    set indx to 1
    set cheminde_mesmodeles to {}
    set nomsde_mesmodeles to {}
    set le_conteneur to ""
    tell application "System Events"
    repeat with i from 1 to count of entire_contents
    set un_element to item i of entire_contents as text
    try
    if type identifier of disk item un_element is in {"com.apple.iwork.numbers.template", "com.apple.iwork.numbers.sfftemplate"} then
    if name of container of disk item un_element is not le_conteneur then
    set le_conteneur to name of container of disk item un_element
    copy (text 1 thru nb_chiffres of "---") & space & le_conteneur to end of nomsde_mesmodeles
    end if
    copy un_element to end of cheminde_mesmodeles
    copy text -nb_chiffres thru -1 of ("00" & indx) & space & name of disk item un_element to end of nomsde_mesmodeles
    set indx to indx + 1
    end if
    end try
    end repeat
    end tell -- System Events
    if my parleAnglais() then
    set le_titre to "Numbers’s custom templates"
    else
    set le_titre to "Modèles personnalisés de Numbers"
    end if
    Choose the template to use.
    If you select a subfolder name, the script beep and ask one more time *)
    tell application (path to frontmost application as string)
    repeat
    set mon_choix to choose from list nomsde_mesmodeles with title le_titre
    if mon_choix is false then error number -128
    try
    set mon_choix to text 1 thru nb_chiffres of (item 1 of mon_choix) as integer
    exit repeat
    on error
    beep 1
    end try
    end repeat
    end tell
    tell application "Numbers"
    set nb_doc to count of documents
    open (item mon_choix of cheminde_mesmodeles)
    repeat until (count of documents) > nb_doc
    delay 0.1
    end repeat
    set doc_name to name of document 1
    end tell -- the_App
    return doc_name
    end makeAnIworkDocFromCustom
    --=====
    on parleAnglais()
    local z
    try
    tell application theApp to set z to localized string "Cancel"
    on error
    set z to "Cancel"
    end try
    return (z is not "Annuler")
    end parleAnglais
    --=====
    on activateGUIscripting()
    (* to be sure than GUI scripting will be active *)
    tell application "System Events"
    if not (UI elements enabled) then set (UI elements enabled) to true
    end tell
    end activateGUIscripting
    --=====
    ==== Uses GUIscripting ====
    This handler may be used to 'type' text, invisible characters if the third parameter is an empty string.
    It may be used to 'type' keyboard raccourcis if the third parameter describe the required modifier keys.
    I changed its name « shortcut » to « raccourci » to get rid of a name conflict in Smile.
    on raccourci(a, t, d)
    local k
    tell application a to activate
    tell application "System Events" to tell application process a
    set frontmost to true
    try
    t * 1
    if d is "" then
    key code t
    else if d is "c" then
    key code t using {command down}
    else if d is "a" then
    key code t using {option down}
    else if d is "k" then
    key code t using {control down}
    else if d is "s" then
    key code t using {shift down}
    else if d is in {"ac", "ca"} then
    key code t using {command down, option down}
    else if d is in {"as", "sa"} then
    key code t using {shift down, option down}
    else if d is in {"sc", "cs"} then
    key code t using {command down, shift down}
    else if d is in {"kc", "ck"} then
    key code t using {command down, control down}
    else if d is in {"ks", "sk"} then
    key code t using {shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "k" then
    key code t using {command down, shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "a" then
    key code t using {command down, shift down, option down}
    end if
    on error
    repeat with k in t
    if d is "" then
    keystroke (k as text)
    else if d is "c" then
    keystroke (k as text) using {command down}
    else if d is "a" then
    keystroke k using {option down}
    else if d is "k" then
    keystroke (k as text) using {control down}
    else if d is "s" then
    keystroke k using {shift down}
    else if d is in {"ac", "ca"} then
    keystroke (k as text) using {command down, option down}
    else if d is in {"as", "sa"} then
    keystroke (k as text) using {shift down, option down}
    else if d is in {"sc", "cs"} then
    keystroke (k as text) using {command down, shift down}
    else if d is in {"kc", "ck"} then
    keystroke (k as text) using {command down, control down}
    else if d is in {"ks", "sk"} then
    keystroke (k as text) using {shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "k" then
    keystroke (k as text) using {command down, shift down, control down}
    else if (d contains "c") and (d contains "s") and d contains "a" then
    keystroke (k as text) using {command down, shift down, option down}
    end if
    end repeat
    end try
    end tell
    end raccourci
    --=====
    my selectMenu("Numbers",4, 8)
    ==== Uses GUIscripting ====
    on selectMenu(theApp, mt, mi)
    tell application theApp
    activate
    tell application "System Events" to tell process theApp to tell menu bar 1 to ¬
    tell menu bar item mt to tell menu 1 to click menu item mi
    end tell -- application theApp
    end selectMenu
    --=====
    --[/SCRIPT]
    Yvan KOENIG (VALLAURIS, France) jeudi 17 mars 2011 21:29:15

  • How to create links and how to use that links to go to other pages?

    my question is....how to create links...i mean by using make link option.....when we do right click on a word,etc in the design view.....and my other question is.....how to use that links to go to other pages.....i mean when i click on a link...it takes me to another web page.....

    Please do not post the same subject to more than one forum.

  • Firefox 35 won't hide address and tab bar in full screen on OS X 10.10

    Hi, when I put firefox full screen, I expect the address bar and tab bar to auto-hide. From google searching it seems like this was expected behavior some time ago. A pic -> 1000 words.
    http://imgur.com/Z0iz1Pa
    I also tried disabling all add-ons and nothing changed.

    ''cor-el [[#answer-688304|said]]''
    <blockquote>
    You would normally see the context menu with Hide Toolbars and Exit Full Screen mode if you right-click a toolbar in full screen mode.
    Do you have any code in Stylish that could be causing issues like that?
    </blockquote>
    Nope, zero styles in Stylish currently, this is a new install. As well I've tried going full-screen with all addons disabled and I get the exact same result.
    I'm on OS X 10.10.2, FF 35.0.1

  • How to add Comma and Tabs in Calc Script Header

    Hi,
    I need to add in the begging of the report script the following lines:
    PNL
    OPENB
    1/31/2020
    12
    R,N,Y
    5     6     7     2     3     1     I     C     8     9     A     D     V     V     V     V     V     V     V     V     V     V     V     V
    The last line is tab delimited.
    The problem is that the TEXT formula ignores commas and tab, so I can't create the last 2 lines.
    Please help,
    Rami

    Hi,
    R,N,Y
    5     6     7     2     3     1     I     C     8     9     A     D     V     V     V     V     V     V     V     V     V     V     V     V
    The last line is tab delimited.Whether these are the members? Please can you let us know what you are trying.
    Thanks

Maybe you are looking for

  • Does iTunes update 11.0.2 solves the problem of iPhone USB tethering to MacBook Pro?

    Wondering if the itune update 11.0.2 provides any fix to the connection problem using USB for iPhone tethering.

  • Itunes can't find music library on computer

    Somehow I've moved my music on my computer and itunes cannot find any of it. I can't play anything on the computer, an exclamation point is next to it and the computer tells me itunes cannot find the music. Help! What did I do and how do I fix this?

  • Compressor will not start batchs

    Hi guys, I'm having some major problems, every time I send my projects to Compressor from FCP or even when I drop exported self contained video projects, after I drop in the settings (usually 90 min. video 2 pass) and hit submit it just sits there an

  • Does Adobe support runtime media hosting?

    Hi Team, We are currnetly using lots of Adobe solutions but wondering if adobe supports runtime photo/video hosting. Essentially looking to allow our guest to upload their profile picture and couple more pictures of their life time events like weddin

  • Lightroom catalog on separate drive?

    I know the two normally go together, but is it posssible to put the Lightroom catalog on a separate drive from the previews?