Custom thumbs views and creating collections

Been looking for answers to a couple of questions in Bridge Scripting.
The first has been asked before and i don't think answered (at least not in this forum). Can one make a customized view dynamically via code - i.e. the ability to set a thumbnail node and NOT view all of the images in that directory. Someone had mentioned using a custom browse scheme but i have to admit documentation for this kind of code is somewhat lacking... I would like to be able to set exactly what shows in Content Browser using code. (obviously not using thumbnail.children as that is read only.)
SEcond, is there a way to create a collection via code? I would like to create a 'find' function with keywords to search for and folder to search in, on the fly, and then save it as a collection, all with scripting.
OK, i lied i actually have a third question... how to set things like view filter or sort programmatically?
whew... okay, that's it for this evening. I'm really hoping Bridge scripting can do these sorts of things, as it feels much to limited otherwise.
thanks all, any helps is always appreciated... short of actually doing my work for me (which you're welcome to do :)
Steve Sterling
Adidam

Pam,
I actually want somewhat of the similar material.  In this thread I found a partial answer:
Genil/BOL - Define Simple Objects
The package CRM_GENIL_SAMPLE shows how to use the simple objects to create the new BOL object.  However that only gets you part of the way there.  It would be nice if there was a full end to end example of what you want to do, which basically build a component from scratch.
For you second example I think you can enhance an existing view and then add a "value" node in the context.  In the value node set/get methods or the enhanced custom controller you can then call your RFC function module.   I think that is how it is supposed to wrok.
EEWB is really only for creating new fields/tables.  The worst part also if you already have things created from a previous release using the darn EEWB, then you have to manually migrate that work.  However I would take the new webclient over the PCUI, on almost any given day.  The SAPGUI vs webclient is a tossup.
Take care,
Stephen

Similar Messages

  • Customed maintenance view and assign T-Code

    Hello SAP exports,
    I have one question needs your help!
    We do not want the end users to maintenance V_T008 table directly by using SM30 in PRD.
    Therefore, I copy V_T008 view and create a custom view ZV_T008 by using SE11.
    The purpose is to create a maintenance view (ZV_T008) and assign a new T-Code in order to let user allows to maintenace ONLY in V_T001C table in PRD without using SM30.
    Is above the solution workable?
    I know how to assign a program to a new T-Code by using T-Code SE93.
    But, I do not know how to assign a maintenance view (ZV_T008) to a new T-Code.
    Please help.
    Thank you.
    Regards,
    Sylvia Chen

    Great thanks for the tips!
    Now I can run T-Code and SAP display the data table immediately.
    I can modify the data table directly without using SM30.
    This is great!
    Two more things need to solve.
    Can SAP only show one of the record of the data table?
    There are 10 records in the data table.
    The user ONLY needs to modify one record when the ZV_T008-ZAHLS = "K".
    The other thing needs to solve is following:
    when user inputs T-Code, SAP display the data table immediately.
    But, the description field (ZV_T008-TEXTL) is able to modify.
    How can I make this field become not able to modify?
    If you can provide the above solution, it will make me a very Merry Christmas!
    Regards,
    Sylvia Chen

  • Table name for Customer Account Group and created by Data

    Dear Gurus,
    Kindly le t me know the table name having a list of Customer a/c groups and created by data. if there is no such table thn pls let me know the alternatives for fetching the same data.
    Wishes
    Abhishek

    hI
    Go to Se11 and give table name KNA1 and go to display
    you can able to see the Customer AccountGroup field :KTOKD
    Thanks
    Vasu

  • Question on Create View and Create Procedure

    Hi everybody,
    Can procedure return multiple rows and columns?
    Can I create a view by use of (includes) this procedure?
    Is it only create view by use of subquery or base tables, how about other objects?
    [For example]
    CREATE OR REPLACE PROCEDURE sp_BPSGetStaffRightsByApp
         i_staffid IN varchar2,
         o_curfunctionid IN OUT a.cursor2
    AS
    BEGIN
         OPEN o_curfunctionid FOR
         select func_id, user_name, remarks from bps_user_detail
         where user_id = i_staffid;
    END;
    Thanks.
    Brigitta

    Brigitta
    Firstly the difference between is FUNCTIONS can be used in SELECT STATEMENTS because they return a value
    because of the Speciality of a Function.
    A procedure never returns a value but you will receive the value thru a parameter only. Hence you cannot use the
    procedure in a Select statement which applies for a View also.
    A refcursor returns a recordset. The record set is a collection of One or More records with Single or multiple columns.
    Here is the workaround on the same thing
    create or replace package types
    as
    type cursorType is ref cursor;
    end;
    10:44:48 SQL> variable v refcursor
    10:45:09 SQL> exec open :v for select empno,ename from emp;
    PL/SQL procedure successfully completed.
    10:45:20 SQL> select :v from dual;
    select :v from dual
    ERROR at line 1:
    ORA-00604: error occurred at recursive SQL level 1
    ORA-01009: missing mandatory parameter
    Elapsed: 00:00:00.41
    10:45:25 SQL> print v
    ERROR:
    ORA-24338: statement handle not executed
    SP2-0625: Error printing variable "v"
    10:45:31 SQL> exec open :v for select empno,ename from emp;
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    10:45:55 SQL> print v
    EMPNO ENAME
    1011 SCORPIONKINGBLADE01
    7566 JONES
    7654 MARTIN
    7698 BLAKE
    7782 CLARK
    7788 SCOTT
    7839 KING
    7844 TURNER
    7876 ADAMS
    7900 JAMES
    7902 FORD
    7934 MILLER
    12 rows selected.
    Elapsed: 00:00:00.62
    1 create or replace function fres(dno number) return types.cursortype as
    2 cr types.cursortype;
    3 begin
    4 open cr for select * from emp where deptno = dno;
    5 return cr;
    6* end;
    10:47:42 SQL> select fres(10) from dual;
    select fres(10) from dual
    ERROR at line 1:
    ORA-00902: invalid datatype
    Elapsed: 00:00:00.87
    10:47:51 SQL> exec :v := fres(10);
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.15
    10:48:04 SQL> print v
    EMPNO JOB MGR HIREDATE SAL DEPTNO ENAME COMM
    1011 MANAGER12345690 1011 05-JUN-02 999909 10 SCORPIONKINGBLADE01 99
    7782 MANAGER 7839 09-JUN-81 2360 10 CLARK
    7839 PRESIDENT 17-NOV-81 4910 10 KING
    7934 CLERK 7782 23-JAN-82 1210 10 MILLER
    4 rows selected.
    Elapsed: 00:00:00.31
    I hope you got the concept
    cheers
    prakash

  • Error while creating a view and creating navigation link

    Hi,
    i created one view with one button and on click of button it has to navigate to DeleteOperationview.This is the exception i am getting while running.
    can u plz tell me where the problem might beee...
    com.sap.tc.webdynpro.services.exceptions.CreationFailedException: Cannot create view element implementation com.sap.tc.webdynpro.clientserver.uielib.standard.impl.Caption
    *     at com.sap.tc.webdynpro.progmodel.view.ViewElementFactory.createElement(ViewElementFactory.java:161)*
    *     at com.sap.tc.webdynpro.progmodel.view.View.createElement(View.java:177)*
    *     at com.utc.pwc.tasklistm.wdp.InternalDeleteOperation.wdCreateUITreeForGroup(InternalDeleteOperation.java:282)*
    *     at com.utc.pwc.tasklistm.wdp.InternalDeleteOperation.wdCreateUITree(InternalDeleteOperation.java:259)*
    *     at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.createUITree(DelegatingView.java:74)*
    *     at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:443)*
    *     at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)*
    *     at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:709)*
    *     at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:555*
    Regards
    Padma N

    Hi Padma,
    In Outline check the <b>id </b> property of the <b> Caption-Header </b> view elements from the properties window it seems some of the ids are duplicate it should be unique.
    Other wise delete the container elements and design the view layout once again.
    Re: dynpro table -dynamically change table header name
    Regards,
    Mithu

  • How to create wizard for a custom mainenance view/view cluster

    Hi Experts,
    I have created 5 custom maintenance view and have maintained all the views sequencially and have made the first mainenance view as the start view & header entry and all other views are child or subview of the header view in a custom view cluster. But I want a wizard to help the user / end user successfully enter all the required values for all child views, it will help  the user to navigate  from the start view to all the child views where the fields of the wizard will be associated to the child maintenance views.
    Please suggest how to create wizard for view cluster.
    I'll give max reward point for the helpful answer.
    Thanks in advance
    koustav

    Hello Pasapula
    When you are in the View Cluster maintenance dialog (SE54) click on dialog "Events".
    Below the field for the view cluster you have an additional field <b>FORM routines main program</b>. There you have to add the main program containing the FORM routines called by the VC events.
    For example: I had defined a normal report containing an include with all the FORM routines. The report contains only the following lines of coding:
    report zus_0120_u1.
    * Common Data und access routines for user exits in VC maintenance
    include LSVCMCOD.
    include  zus_0120_f1. "FORM routines for VC events
    Now in the "Events" dialog of the view cluster maintenance you assign your FORM routines to the events.
    Regards
      Uwe

  • How To create custom login and create user pages

    Where can I find documentation that discusses how I can create a custom login page and create new user page?
    Also, I cannot find how to get away from the default login page.
    I am using 9iAS/Portal R2.
    Bill G...

    Well - I did find some docs;
    Chapter 8 of the Oracle9 iAS Single Sign-On.pdf file titled "Customizing the Single Sign-On Interface" has some good info but I'm wondering about the "create new user part".
    Bill G...

  • Performance ora:view and collection()

    ora:view allows an XML structured table to be used in a XQuery "for" clause, while collection processes a set of documents in a directory. Normally these are two different sets of data.
    However, with XDB I can have a WEBDAV directory which can consist of documents, all of which are stored in schema based structured storage.
    Given this situation, where the ora:view and the collection() happen to be the exact same set of data (and this condition may be a rare corner case for many people), is there a performance difference between these two methods of access?
    The underlying question I am wondering is whether collection() will be rewritten to take advantage of any indexing on the structured data, in this sitution.
    A collection() directory can consist of XML in both structured and unstructured storage, in this case does the query reduce everything to the lowest common denominator (CLOB), or are any of the advantages of structured storage utilized?
    Thanks,
    Howard

    Howard,
    That's a good question. You should use ora:view() instead of collection(). Using ora:view() will give you better performance. Please contact me directly (geoff dot lee at oracle dot com) to discuss further.
    Regards,
    Geoff

  • SAP Cloud Application Studio Create Custom Web Service From Custom Business Object and Consume in External System

    Hi Experts,
    I have requirement to create custom business object and create Web Service for that and use in external system (SAP ECC / SAP CRM / Third Party).
    1) Is it possible to create custom object web service and used in external system ?
    2) When we create the Web service from custom business object what the necessary steps(action : Create , Read , Update) require?
    3) Sample Scenario :
    My Custom Business Object
    businessobject Custom_Integration {
      element EP_VAL1 : LANGUAGEINDEPENDENT_MEDIUM_Text;
      element EP_VAL2 : LANGUAGEINDEPENDENT_MEDIUM_Text;
      element IP_RES : LANGUAGEINDEPENDENT_MEDIUM_Text;
    I have created the Web Service using this custom business object.
    3) How i can use this web service in external system? what are the prerequisite steps in external system to consume this service in it?
    Please anyone have idea about this how to do this and how to achieve this using SDK and custom business object.
    Many Thanks
    Mithun

    Hello Mithun,
    Does this section in the documentation help you:
    SAP Cloud Applications Studio Help -> Developers Desktop -> Web Services
    The entry "Task -> Create a Web Service" describes how to create a Web Service on your own BO
    The entry "Task -> Test a Web Service" helps you how you can use it in a foreign tool / application.
    HTH,
       Horst

  • Creating Views and DS

    I have to create a DS on the tables VBRK, VBRP, KNA1 and ADRC by getting fields from these tables. The i have to get about 10 fields from these from tables. I have observed that VBRK, VBRP have VBELN_VF as a common key field.Can i therefore create a view on these tables by using the field for join condition. VBRP as has POSNR_VF as the other key field. When i have to create delta's, what would be the best strategy for this data source. I do not have any date or time fields in the data source.
    Thanks,
    Neha.

    Hi Neha,
    If there is a Primary Key/Foreign Key relationship between these 2 tables that can identify a unique record that you want, you can always create a database view and create a DS on this view. Try to see yourself that by joining the 2 tables on VBELN_VF, you are able to get those unique records you want to see in the reports.
    Regarding deltas, if you do not have any date field, see if you have any numeric pointer. Otherwise, it is not opssible to have delta.
    Hope this helps.
    Thanks and Regards
    Subray Hegde

  • SQL query for custom alert view

    I have created a custom alert view and scoped to show alerts related to group of servers.
    Alert view Criteria: Resolution State - New, Severity - Warning and Critical, Group - "Group 1"
    I am trying to query the Operations Manager database to show the alerts with same criteria using below query.
    select MonitoringObjectName, ResolutionState, Priority, Severity, TimeRaised, TimeAdded, TimeResolved, AlertStringName, AlertStringDescription from AlertView where ResolutionState = '0' AND (Severity = '2' or Severity = '1')
    AND
    MonitoringObjectId IN (select TargetObjectId from RelationshipGenericView
    where SourceObjectDisplayName = 'Group 1')
    in Console i see both warning and critical alerts where as in SQL query output i see only critical alerts.  Could you please correct if I am using wrong query. also please share your suggessions if i am completely wrong on this.
    Kind Regards,
    Bommi
    ~Bommi

    your query looks perfectly fine. Are you sure if the alerts you see in the console are of the 'Resolution State =0' (New). It might be the case where the alert have moved to a fidderent resolution state.
    Also, take a sample warming alert from console, query for the same in DB and check the Severity value. If it is '2'.
    Regards,
    Saravanan

  • Diff bt Help view and Maintanence view

    hi gem's
    i need the diff bt Help view and Maintanence view with example...............

    Hi
    The followings are different types of views:
    - Database View (SE11)
    Database views are implement an inner join, that is, only records of the primary table (selected via the join operation) for which the corresponding records of the secondary tables also exist are fetched. Inconsistencies between primary and secondary table could, therefore, lead to a reduced selection set.
    In database views, the join conditions can be formulated using equality relationships between any base fields. In the other types of view, they must be taken from existing foreign keys. That is, tables can only be collected in a maintenance or help view if they are linked to one another via foreign keys.
    - Help View ( SE54)
    Help views are used to output additional information when the online help system is called.
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    - Projection View
    Projection views are used to suppress or mask certain fields in a table (projection), thus minimizing the number of interfaces. This means that only the data that is actually required is exchanged when the database is accessed.
    A projection view can draw upon only one table. Selection conditions cannot be specified for projection views.
    - Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    1.Go to se11
    2. select view radiobutton and give a name
    3. Create
    4. select type of view you want to create. Such as database view.
    5. give short description
    6. give a table name such as mara
    7. press the pushbutton relationship. here you will find all the tables which are allowed to create view with mara.
    8. select one or mane tables.
    8 copy
    9.save , check and activate.
    Regards
    Anji

  • What r the trns code for maintenance view, help view and projection view

    hi all
    what r the transaction code for maintenance view, help view and projection view
    can anyone tell me how to create maitenance, help and projection view.
    with an example
    regs
    hari

    <b>What is the Different Types and Usage of Views
    The followings are different types of views:</b>
    - <b>Database View   (SE11)</b>
    Database views are implement an inner join, that is, only records of the primary table (selected via the join operation) for which the corresponding records of the secondary tables also exist are fetched. Inconsistencies between primary and secondary table could, therefore, lead to a reduced selection set. 
    In database views, the join conditions can be formulated using equality relationships between any base fields. In the other types of view, they must be taken from existing foreign keys. That is, tables can only be collected in a maintenance or help view if they are linked to one another via foreign keys.
    - <b>Help View    ( SE54)</b>
    Help views are used to output additional information when the online help system is called. 
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view. 
    -<b> Projection View  (SE11)</b>
    Projection views are used to suppress or mask certain fields in a table (projection), thus minimizing the number of interfaces. This means that only the data that is actually required is exchanged when the database is accessed.
    A projection view can draw upon only one table. Selection conditions cannot be specified for projection views.
    <b>- Maintenance View   ( SE54 )</b>
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    reward   points if it is usefull...
    Girish

  • Difference among the Help view,Database view and Maintanance View

    hi,
    can Anyone pls let me know the Difference among the Help view,Database view and Maintanance View
    thanks&regards
    rama

    The followings are different types of views:
    Database View (SE11)
    Database views are implement an inner join, that is, only records of the primary table (selected via the join operation) for which the corresponding records of the secondary tables also exist are fetched. Inconsistencies between primary and secondary table could, therefore, lead to a reduced selection set.
    In database views, the join conditions can be formulated using equality relationships between any base fields. In the other types of view, they must be taken from existing foreign keys. That is, tables can only be collected in a maintenance or help view if they are linked to one another via foreign keys.
    Help View ( SE54)
    Help views are used to output additional information when the online help system is called.
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    Projection View
    Projection views are used to suppress or mask certain fields in a table (projection), thus minimizing the number of interfaces. This means that only the data that is actually required is exchanged when the database is accessed.
    A projection view can draw upon only one table. Selection conditions cannot be specified for projection views.
    Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    1.Go to se11
    2. select view radiobutton and give a name
    3. Create
    4. select type of view you want to create. Such as database view.
    5. give short description
    6. give a table name such as mara
    7. press the pushbutton relationship. here you will find all the tables which are allowed to create view with mara.
    8. select one or mane tables.
    8 copy
    9.save , check and activate.
    The followings are different types of views:
    Database View (SE11)
    Database views are implement an inner join, that is, only records of the primary table (selected via the join operation) for which the corresponding records of the secondary tables also exist are fetched. Inconsistencies between primary and secondary table could, therefore, lead to a reduced selection set.
    In database views, the join conditions can be formulated using equality relationships between any base fields. In the other types of view, they must be taken from existing foreign keys. That is, tables can only be collected in a maintenance or help view if they are linked to one another via foreign keys.
    Help View ( SE54)
    Help views are used to output additional information when the online help system is called.
    When the F4 button is pressed for a screen field, a check is first made on whether a matchcode is defined for this field. If this is not the case, the help view is displayed in which the check table of the field is the primary table. Thus, for each table no more than one help view can be created, that is, a table can only be primary table in at most one help view.
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    Projection View
    Projection views are used to suppress or mask certain fields in a table (projection), thus minimizing the number of interfaces. This means that only the data that is actually required is exchanged when the database is accessed.
    A projection view can draw upon only one table. Selection conditions cannot be specified for projection views.
    Maintenance View ( SE54 )
    Maintenance views enable a business-oriented approach to looking at data, while at the same time, making it possible to maintain the data involved. Data from several tables can be summarized in a maintenance view and maintained collectively via this view. That is, the data is entered via the view and then distributed to the underlying tables by the system.
    Please have a look at below link. It will help you.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    for more detailed info look on:
    http://www.sap-img.com/abap/what-is-the-different-types-and-usage-of-views.htm
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/abap+dictionary&
    Go thru this link plzz
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ecf9446011d189700000e8322d00/frameset.htm
    Difference between "Help View" and "Search Help"
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21ed06446011d189700000e8322d00/frameset.htm
    Hope this is helpful, Do reward

  • Batch create multiple pdf's while using epilogue.ps for setting initial view and opening bookmarks

    Hi,
    I'm trying to batch create multiple pdf's from word files, and use the epilogue.ps file for setting the initial view and opening the bookmarks panel, but i keep getting no satisfying result.. i'm probably missing something fundamental.
    I've read some forum posts and adobe help posts explaining this, so i'm pretty sure this would be possible?
    Reference:
    http://help.adobe.com/en_US/acrobat/X/pro/using/WS58a04a822e3e50102bd615109794195ff-7f0f.w .html  see advanced panel options
    http://help.adobe.com/en_US/acrobat/using/WS58a04a822e3e50102bd615109794195ff-7f14.w.html
    System: Windows 7
    Acrobat: Acrobat X professional
    i've searched for and found a way to overwite the epilogue.ps file and have inserted the following:
    %  Insert your custom PostScript here...
    [ /PageMode /UseThumbs
    /Page 1 /View [/Fit ]
    /DOCVIEW pdfmark
    After that i checked my Adobe Acrobat preferences, and in the categorie 'Convert to Pdf' i selected 'Microsoft office word' in the select area 'Converting to pdf'.
    Clicked 'Edit settings' to allow creating a joboptions file (field: 'adobe pdf settings') which has the option 'Use epiloque.ps and prologue.ps' checked in the advanced section.
    So now i thought i would have everyting setup to create my pdf's, however, my view isn't changed to fit, nor are there any bookmarks or in this case thumbs (i used /useThumbs) visible.
    Did i miss something obvious? Is there a better way to test this? Any help would be appreciated!

    i like it about that ok in how to open my site

Maybe you are looking for

  • How can I use the same catalog on PC and MAC?

    I keep my catalog and photos on an external hard drive.  I have both PCs and a MAC and I would like to be able to access the same catalog of photos on both my PC and my MAC using LR2.  I am using v 2.3.  The problem is the location of the photo is re

  • How many computers can sync with Apple TV at the same time?

    I'm thinking of buying one of these things for my parents as a last-minute Christmas gift. They both have their own iMac, with their own choice of music/movies/photos/etc. If I get them this device and set it up in their living room, could they strea

  • Mouseover works in IE but not in Firefox

    I have 2 pages in my new site that use a mouseover to show hide layers. Both pages work in IE, but only one works in Firefox. The code appears to be the same, but this is first time I've done this, so I may be missing something

  • Reconnecting Application and opening a new applications

    My issue is that using server 2012 R2, I have setup any connections that have been disconnected and try to reconnect. All the programs seems to work fine except our internal ERP software which reconnects then opens another instance of the software. H

  • Deleted the iPod Software Updater 2006-01-10

    My Ipod was not sync'ing any songs so i thought i was because of the iPod Software Updater 2006-01-10 so i deleted it thinking when i restore the ipod to it's factory setting it will install it again, but although when i restored the ipod the songs s