Help,pls!! Multiple choices in Form4.5 and more questions

Hi, All.
I have some difficult questions. Any reply will be greatly
appreciated!
1. Is it possible to make multiple choice in a Form? It is known
that there is only one choice in LOV or List Item. ( That is
like : select ... from ...where :block1.Id= Order.order_Id )
What I would like to do is : select ...
from ...where :block.Id in ( select ...from...where...) Such
subquery will return at least five values. Can this be possibly
developed in Forms (4.5)? or should use VBX?
2.'Copy' function in Forms. I want to insert two records. The
second has the same value as the first except PK_VALUE. e.g.
1.Record A,B,C,D,E
2.Record M,B,C,D,E
The problem is whenever I do inserting in a Form, all columns are
blank and waiting for entering data. Is it possible to just
input 'F', and the other columns will be inserted automatically
as same as previous one ('B','C','D','E,')?
3.To concatenate comment statement of two reports.
I have two reports. Each has its own comment column.
Now I want to concatenate these two comments and insert it into
a new report. Is it possible in Reports2.5?
I have thought of these problems for a long time, but I still
can't solve
them. I am not sure whether I can do such things in Dev 2k? Or
it can be developed in Dev 6.0?
Please help me!
Best regards
Mike Ding
mailto:[email protected]
null

Hi Priya ,
                 I have coded your example and it works fine for me
Please have see at the code.
tables : lips,vbak,vbap.
data : begin of itab occurs 0 ,
          vbelv like lips-vbelv,
          lfimg like lips-lfimg,
       end of itab.
PARAMETER: p_werks like vbap-werks.
select-options : s_vbeln for vbak-vbeln,
                 s_posnr for vbap-posnr.
select VBELV LFIMG from LIPS into corresponding fields of table ITAB where VBELV in S_VBELN and POSNV in S_POSNR.
I had entered value for s_vbeln 31 from 331
and s_posnr 10 20 and it gave me correct entries coz for order number 331 there were two entries in lips so multiple entries worked.
Please check the code with my code.
Please reward if useful.

Similar Messages

  • DESPERATE HELP PLS: WinXP, SP3: Creative Console and other elements crashing

    LDESPERATE HELP PLS: WinXP, SP3: Creative Console and other elements crashingRHi all. Hoping someone out there can help; I've been going around in circles for far too long on this.
    Exec summary:
    WinXP, SP3, Audio finally is working, Creative Console launches but crashes consistently. Diagnostics fails, on-screen could not install.
    System:
    WinXP, SP3
    Story
    I had an original X-Fi card that came with my Dell XPS70 3 years ago. Working perfectly, until I upgraded to WinXP, SP3 (from SP2).
    BAM - lots of BSODs, always in ha20x2k.sys. Many times, all networking would just stop, and the BSOD would happen when shutting down the computer. Networking would fail 00% everytime I watched any kind of video (news, youtube, whatever).
    Couldn't find more current drivers, bought X-Fi ExtremeGamer card from Frys. Could not get this to install off the package CD, new card was not recognized by Windows. Install would always hang on "On-Screen display" (I have a dual monitor system - should that matter?)
    Eventually, downloaded more current drivers and console app from the Creative website and got audio working. Console will now launch but the moment I try to change something in the EQ panel, the console crashes, 00% of the time. Other Creative apps (e.g. diagnostics) fail with this error:? "The audio device supported by this application may not be present or may be operating in an unsupported mode..."
    I haven't been able to "cleansweep" my system, the link in this (Creative) forum is broken.
    REALLY hoping someone can help get this working... Have spent 2 days away from business to try to make this work properly, and am out of things to try.
    Thanks,
    Jerry

    I should add - I have NO interest in gaming, just looking for high-end audio...

  • Please help me with this urgent viewing and editing question for a long video clip.

    Hi, I have never used this software before and when I imported a 2 hours and 12 minute video clip of my sister's wedding into the system and added it as one sequence into the program it would only allow me to watch and edit the first 2 minutes.
    Why is that and how can I rectify this so that I can watch and edit the whole clip?
    Also, can such a long video clip be edited by trimming it and creating transitions where I see fit?
    Thanks so much for your advice as I am feeling really stuck right now.
    Becky

    First, the tutorial list in message #3 http://forums.adobe.com/message/2276578 may help
    2nd, More information needed for someone to help... please click below and provide the requested information
    -Information FAQ http://forums.adobe.com/message/4200840
    3rd, did you do the below to be sure your project is correct?
    See 2nd post for picture of NEW ITEM process http://forums.adobe.com/message/3776153
    -and a FAQ on sequence setting http://forums.adobe.com/message/3804341

  • Help with stopping a loop..and more :)

    I have a web site called MyNextPet.org. I want to have a
    featured pet on the
    home page that is Random
    I am attempting to write a function that does this:
    Selects the total pets in the database ('Pets') and generate
    a RecordCount
    Create a variable that is random from 1 to the RecordCount of
    'Pets'
    Attempt to select information about that pet based on the
    generated number
    (that must match the auto incremented 'pettag' number)
    If the number does not match any of the pets, loop through an
    do it again
    If the number does match, stop and output the information
    selected
    I winged this function so I am sure I did something wrong and
    the fact that
    I am posting it proves that I did. I am a little (or a lot)
    confused on how
    to break out of a loop if the condition is met.
    Help!
    Code I have:
    <cffunction name="GetFeaturedPet" access="public"
    returntype="query">
    <cfquery name="Pets" datasource="#Request.MainDSN#">
    SELECT * FROM pets
    </cfquery>
    <cfloop>
    <cfset featured = RandRange(1,#Pets.RecordCount#)>
    <cfquery name="GetFeatured"
    datasource="#Request.MainDSN#">
    SELECT P.name, p.age, p.gender, p.breed, R.org
    FROM pets P LEFT OUTER JOIN rescues R
    ON p.username = R.username
    WHERE pettag = #featured# AND active = 1
    </cfquery>
    <cfif #GetFeatured.RecordCount# EQ 0>
    </cfloop>
    </cfif>
    <cfelse>
    <cfabort>
    <cfreturn GetFeatured>
    </cffunction>
    Wally Kolcz
    Developer / Support

    Try this modified function. The first query will pull all
    active pets from your db. The second QoQ ("getPet") will pull one
    random pet from the first query.
    <cffunction name="GetFeaturedPet" access="public"
    returntype="query">
    <cfquery name="GetFeatured"
    datasource="#Request.MainDSN#">
    SELECT p.pettag, P.name, p.age, p.gender, p.breed, R.org
    FROM pets P LEFT OUTER JOIN rescues R
    ON p.username = R.username
    WHERE active = 1;
    </cfquery>
    <cfset featured =
    RandRange(1,#GetFeatured.RecordCount#)>
    <cfquery name="getPet" dbtype="query">
    SELECT * FROM GetFeatured WHERE pettag = #featured#
    </cfquery>
    <cfreturn getPet>
    </cffunction>

  • Help! Which Java IDE should I choose, and more questions....

    Hello Oracle experts here, I am a college student and I have some questions about Oracle installation to consult you. These days I am learning Oracle, an currently I want to install Oracle on my PC. However I met two problems:
    1. Since I am a novice to learn Oracle, which Oracle products do you recommend? (Oracle8i Lite? Oracle8i Personal Edition? Oracle8i Enterprise Edition? other products?). I am currently learning PL/SQL and JDBC programming associated with Oracle, maybe something else later.
    2. I want to upgrade my win98 to Win2000(Professional or Server version), From your point of view, which OS is better to install for learning Oracle? Win2000 Professional version or Server version(my PC is an PIII and with 192MBytes memory)?
    3. In order to learn JDBC programming related with Oracle, which IDE is better to use? Is JDeveloper a kind of IDE? Is this it the best choose?
    Maybe the above questions seems naive to you, but I really need your help! Your suggestions to any of the above questions are welcome.
    Thanks!!!
    null

    1. Enterprise, about the same dl as personal, so why not.
    2. Win2k Pro will do nicely(dont bother with Server, unless u need server for other purposes as well)
    3. JDeveloper is good, however as a newbie i think u should start out in notepad or alike.

  • Help Pls: Create New User Form and display custom attributes +++

    Hi All,
    I am trying to create a user screen where a user would see all the organizations he is responsible for and clicking on the organization he would see the certain attribute of all the users that belong to the organization. (Kind of report)
    Account attribute need to be defined with 2 custom attributes:
    1. Organizations Responsible for
    2. Belongs to which organization.
    3. Status
    The first 2 attributes are used to define the organization heirarchy (we can't use the org heirarchy as is in IDM).
    I am just starting on the Sun IDM (very new to the product). Could you please let me know how this could be done? Which form I need to modify and any other changes I need to make.
    Thanks a lot and have a pleasant day,
    Ritesh
    PS: I know this is a long question but i really don't know how to better explain the problem.

    A workaround is to write a PL/SQL procedure to render the custom item (pass in each attribute as a paramter and then use htp.p to print it whatever format you want). You can then disable the default display of attributes (i.e. edit the style so none of the attributes are rendered).
    Hope that helps,
    Mark

  • Need help adding numbers to PDF drawing and more

    I'm not an Adobe superuser so hopefully this isn't a stupid question. I receive drawings in PDF from my clients. The drawings look like Autocad and are pictures of parts with dimensions that I build for them. I number all the dimensions on the PDF drawing from 1 to whatever. I then create a spreadsheet with the numbers and the corresponding dimension plus other info. Currently I print the PDF then with a pen I manually number each dimension. Then I manually enter the dimension and special symbols in my spreadsheet. Ideally I'm trying to find a way to just click and have it enter a 1 then click and have it enter a 2 etc. If that's not possible then what's the easiest way to just click and allow me to type 1 then click and I type 2 etc.
    Thanks in advance,
    Mark

    I think what you actually need is a dynamic stamp. Try searching these forums and also acrobatusers.com . There's a lot of information about it.

  • Please help with several issues-Pictures, Videos and More.

    I'm on my 3rd iPhone4 in 48 days. A few weeks ago I switched to ATT from Sprint and the EVO because my Company forced me too (they pay for my line). I have a bunch of issues. I won't get into the poor reception and dropped data connection since this is a hardware problem. Ok, when I take pictures and send in an email they don't send straight. Even is I rotate then and save that way when I attach the picture it's not straight. This also happens with video. If I send in a text they are correct. If anyone has tried a Samsung Galaxy S I would like feedback on that too. Probably a long shot in an iPhone forum but I am desperate. I'm not pleased with this phone. I may have to return it.

    The ATT rep has visited our work twice. Several us have had issues. He told us we would be able to return our phones even after the 30 days because of all the service tickets open on our phones. If we wanted to move to something else we would just pay the difference. So if I wanted to change to the GalaxyS it wouldn't cost me a thing since it's $199 which I paid for my iPhone. For some reason when I double tap the space bar for a period most of the time it types the letter B. Why is this?

  • Help needed with bindfs, bind mounts, and more

    Hi all!
    A long time ago before the security sandbox in OS X came about, I used to create symlinks to point my Document directories to subdirectories within my Dropbox/Google Drive store.
    Since that doesn't work now, talk on the street is to use bind mounts instead, and it mostly works for me except for Microsoft Office 2011.
    Somehow, when I try to save to a file via the bind mounted mount point, I always end up getting a "Cannot save or create this file" error like this:
    My mount point has the correct read and write permissions as well as ownership, so what else should I check?
    Advice from other Mac users who experienced it before greatly appreciated!

    In all cases the fix is going into the Outlook Profiles, creating a new profile, then setting the new profile as the default and going back into Outlook 2013 and letting it rebuild the cached data on the PC. 
    The Outlook 2013 crash problem would be fix after you re-create a new profile and re-sync the data from Exchange, right?
    When we meet the same problem in next time, I suggest we run the Outlook Product Stability Diagnostic tool to isolate known causes of crashes in Outlook. The Outlook Product Stability Diagnostic also creates a diagnostic report outlining the data it collected
    and recommendations on possible steps you can take to reduce or eliminate Outlook stability issues.
    Please click the following link to run the Outlook Product Stability Diagnostic tool in the Microsoft Fix it Center Pro portal:
    Outlook Product Stability Diagnostic:
    https://wc.ficp.support.microsoft.com/SelfHelp?knowledgebaseArticleFilter=2764035
    Other troubleshoot steps for Outlook 2013, please refer to the link below.
    Let me know the result.
    http://support.microsoft.com/kb/2632425/en-us 
    Tony Chen
    TechNet Community Support

  • More and more questions don't provide any details. Is anyone going to address this?

    I notice that with the advent of the new forum software apparently asking a question has been made easier.
    This results in almost 99 percent of all posters not consulting documentation and not providing any details (IE no four digit Oracle version and no platform info).
    Also there are people who clearly are asking you to do their documentation searches.
    I was wondering whether anything can be done about addressing this.
    I'm not holding my breath, but I wonder why people here continue to spoon feed 'DBAs'  who are clearly too lazy to do anything (except using these forums as a chat room) to resolve their issues.
    Regards,
    Sybrand Bakker
    Senior Oracle DBA

    Yes, the "Announcements" are badly shown and don't stand out, meaning the SQL and PL/SQL FAQ is only visible by chance as the announcements switch automatically every 30 seconds (or whatever the timing is).
    I was considering asking Sonya if it was ok for me to remove the other announcement as it doesn't really add any value, and that would just leave the FAQ announcement as the only one, so making it a little more visible.
    Maybe if Sonya sees this thread/discussion she can give us her opinion on that.
    URL to the SQL and PL/SQL forum so Sonya can see what we're on about... PL/SQL
    As to sybrand's question... I really don't know what we can do about it apart from just pointing people to the FAQ if they don't ask properly.
    I guess it would help if the editor was fixed so it was easier to post code nicely, but that still won't make people post all the details.

  • Suggestions for archiving an iPhoto library? (and more questions)

    Ok, so here is my issue:
    Over 12,000 photos
    Over 65GB
    New camera that doubles the average file size of most previous pics to ~3MB
    I've thought about starting a new library and archiving the current one, but there is one thing I am scared of: having an old library sitting around and not getting progressively updated. The times I have had problems with my library have been when skipping between versions of iPhoto and the library essentially gets "combo" updated (not the program itself, but when it updates the library files as it often does).
    I don't think I would like to access the library from an external. It was a mess when I did it with iTunes, and regardless of available space, I think a new library that doesn't have any left over data from when it was started in 2002-2003 would be a good idea.
    With that out of the way:
    What are your ideas?
    What have you done for this?
    Just in case there is a drastic change like Final Cut X, or it is dropped like iWeb/iDVD in 10 or 100 years in the future, how can I make a clean backup that does not rely on iPhoto? ("show package contents" is just messy as I have many modified and don't require the originals in those cases.).
    Any thing else that I haven't thought of, or any sites you could point me to or personal experiences with this would be great. Thank you!

    There are several different questions in there.
    I've thought about starting a new library and archiving the current one, but there is one thing I am scared of: having an old library sitting around and not getting progressively updated.
    Simple solution: keep progressively updating it? In other words, use it all the time. Move your existing Library to an external drive.
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    Now you have two full versions of the Library.
    3. On the Internal library, trash the Events you don't want there
    Now you have a full copy of the Library on the External and a smaller subset on the Internal
    Some Notes:
    As a general rule: when deleting photos do them in batches of about 100 at a time. iPhoto can baulk at trashing large numbers at one go.
    You can choose which Library to open: Hold down the option (or alt) key key and launch iPhoto. From the resulting menu select 'Choose Library'
    You can keep the Library on the external updated with new imports using iPhoto Library Manager
    Think of it this way: You have a Master Library which contains everything and another which contains more current material.
    I don't think I would like to access the library from an external. It was a mess when I did it with iTunes, and regardless of available space, I think a new library that doesn't have any left over data from when it was started in 2002-2003 would be a good idea.
    There is no reason not to use an external as described above, This is also true of iTunes. I have no idea why you might regard it as a benefit not have data from 2002. It's much more convenient to have all the data in one Library.. If it was a mess when you did it with iTunes then respectfully I suggest that maybe you  didn’t do it right . My iTunes Library runs to hundreds of gigs so it has to reside on externals, and does with no problems.
    Getting Photos out of iPhoto is simple and safe: File -> Export. You can choose to export Masters. Or just current versions and so on.
    Apps like iPhoto2Disk or PhotoShare will help you export to a Folder tree matching your Events.

  • Load new pictures to exiting events and more questions.

    When I load new pictures to iphoto how can I add them to existing events?
    When I create albums do the pictures I put in there get "copied" or are they just linking to the originals in events? I don't want to rack up all my memory creating albums.
    If I add, modify, or delete pictures in the events will it update my albums too?
    How can I resize a picture to load it too ebay or something?
    Where are the actuall files kept on the hard drive so I can copy them to a flash drive or something?

    Welcome to the Apple Discussions.
    When I load new pictures to iphoto how can I add them to existing events?
    You can't. You can move them once they are imported by drag and drop, or by flagging the pics and then selecting your target Event and going Events menu -> Add Flagged Photos to Selected Event.
    When I create albums do the pictures I put in there get "copied" or are they just linking to the originals in events? I don't want to rack up all my memory creating albums.
    They are simply referenced. A pic can be in 1,000 Albums and use no more disk space than if it were in 1. A pic cannot be in more than one Event without being duplicated. In any case, it's not your Memory that would get used up, it's your HD space.
    If I add, modify, or delete pictures in the events will it update my albums too?
    If you add pics to an Event they will not be automatically added to an Album unless it is a Smart Album. As the pics in an Album are referenced, if you edit the pic in an Event it's edited in the Album, if you trash pic from an Event it's removed from the Album etc.
    How can I resize a picture to load it too ebay or something?
    Select the pic in the iPhoto Window and use the File -> Export command. In the resulting window you have various options, including resizing the pic.
    Where are the actuall files kept on the hard drive so I can copy them to a flash drive or something?
    By default your Library is in your Pictures Folder. It's called the, er, iPhoto Library. It's a Package File. This is simply a folder that looks like a file in the Finder. The change was made to the format of the iPhoto library because many users were inadvertently corrupting their library by browsing through it with other software or making changes in it themselves.
    Want to see inside: Right click on the Library icon and go 'Show Package Contents'. A Finder window opens with the Library exposed.
    Standard Warning: Don't change anything in the iPhoto Library Folder via the Finder or any other application. iPhoto depends on the structure as well as the contents of this folder. Moving things, renaming things or otherwise making changes will prevent iPhoto from working and could even cause you to damage or lose your photos.
    There are many, many ways to access your files in iPhoto:
    *For Users of 10.5 Only*
    You can use any Open / Attach / Browse dialogue. On the left there's a Media heading, your pics can be accessed there. Apple-Click for selecting multiple pics.
    Uploaded with plasq's Skitch!
    You can access the Library from the New Message Window in Mail:
    Uploaded with plasq's Skitch!
    *For users of 10.4 and 10.5* ...
    Many internet sites such as Flickr and SmugMug have plug-ins for accessing the iPhoto Library. If the site you want to use doesn’t then some, one or any of these will also work:
    To upload to a site that does not have an iPhoto Export Plug-in the recommended way is to Select the Pic in the iPhoto Window and go File -> Export and export the pic to the desktop, then upload from there. After the upload you can trash the pic on the desktop. It's only a copy and your original is safe in iPhoto.
    This is also true for emailing with Web-based services. However, if you're using Gmail you can use iPhoto2GMail
    If you use Apple's Mail, Entourage, AOL or Eudora you can email from within iPhoto.
    If you use a Cocoa-based Browser such as Safari, you can drag the pics from the iPhoto Window to the Attach window in the browser.
    *If you want to access the files with iPhoto not running*:
    Create a Media Browser using Automator (takes about 10 seconds) or use this free utility Karelia iMedia Browser
    Other options include:
    1. *Drag and Drop*: Drag a photo from the iPhoto Window to the desktop, there iPhoto will make a full-sized copy of the pic.
    2. *File -> Export*: Select the files in the iPhoto Window and go File -> Export. The dialogue will give you various options, including altering the format, naming the files and changing the size. Again, producing a copy.
    3. *Show File*: Right- (or Control-) Click on a pic and in the resulting dialogue choose 'Show File'. A Finder window will pop open with the file already selected.
    You can set Photoshop (or any image editor) as an external editor in iPhoto. (Preferences -> General -> Edit Photo: Choose from the Drop Down Menu.) This way, when you double click a pic to edit in iPhoto it will open automatically in Photoshop or your Image Editor, and when you save it it's sent back to iPhoto automatically. This is the only way that edits made in another application will be displayed in iPhoto.
    Regards
    TD

  • Help! I'm a newbie and have questions regarding converting my iTunes music.

    I'm trying to put music on a photo CD that I am creating, however, the music file has to be in MP3 format. The music I want to use I purchased from iTunes store. I can't seem to figure how to change the format or if that's even possible. Please help!!

    You will probably need to learn about HTTP and XML to complete this project. If you don't know Java at all then I would suggest starting with tutorials like these ones first
    http://java.sun.com/docs/books/tutorial/index.html
    Have a happy day.

  • Help about ESS/MSS - Deploy error and landscape question

    Hi.
    I read a lot of post about this topic, but I continue something confuse about them.
    I want to configure ESS and MSS.
    My landscape is:
    -  J2EE 7.0 with Portal 7.0 (2004s) in a server “A”.
    - ECC 5.0 ( with HR component SP05) in a server “B”.
    Server “B”, has only stack Abap.
    Server “A” is the latest version of Netweaver today. (stack j2ee and stack abap, BI, XI, Portal, etc)
    I download and deploy in server A (J2EE 7.0), this components:
    - BP ESS for erp2004
    - BP MSS for erp2004
    When I deploy the ESS BP, the deployment break raising this kind of error with the most of components, for example:
    <i><b>
    ===========================================================================
    Deployment started Tue Apr 10 12:01:57 ART 2007
    ===========================================================================
    Starting Deployment of ess/au/addr
    Aborted: development component 'ess/au/addr'/'sap.com'/'MAIN_xss04PAT_C'/'1178669'/'0', grouped by software component 'SAP_ESS'/'sap.com'/'MAIN_xss04PAT_C'/'1000.100.0.15.1.20070309085432''/'0':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/essauaddr.. Reason: Clusterwide exception: Failed to deploy application sap.com/essauaddr. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:      com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/essauaddr. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Deployment of ess/au/addr finished with Error (Duration 5187 ms)
    Starting Deployment of SAP_ESS
    Aborted: software component 'SAP_ESS'/'sap.com'/'MAIN_xss04PAT_C'/'1000.100.0.15.1.20070309085432''/'0':
    Failed deployment of SDAs:
    development component 'ess/au/addr'/'sap.com'/'MAIN_xss04PAT_C'/'1178669'/'0' : aborted
    Please, look at error logs above for more information!
    Deployment of SAP_ESS finished with Error (Duration 4781 ms)
    </i></b>
    Obviously, for this reason the most of iviews raise errors. A few of these works ok.
    I assign role, and others configuration steps, this part I thinks that is OK
    I configured the Jco, the role in Portal, the profile in ERP for ESS, etc.
    My principal question is:
    Can I use Portal 7.0 against ECC 5.0 in order tu use ESS/MSS based on webdynpro, without stack j2ee in ECC server (“B”) ?
    Is necesary install J2ee stack in my server B ? or not?
    Where I need to deploy the XSS 500 components ? in the J2EE 7.0 ?
    Why when I deploy have this problem and the most of components can’t deploy it?
    For my landscape, which is the recommended setup ?
    thanks in advance.!
    Leandro.

    My principal question is:
    Can I use Portal 7.0 against ECC 5.0 in order tu use ESS/MSS based on webdynpro, without stack j2ee in ECC server (“B”) ?
    <b>You can use Portal 7.0 against ECC 5.0</b>
    Is necesary install J2ee stack in my server B ? or not?
    <b>You don't need to install J2EE stack on ECC system</b>
    Where I need to deploy the XSS 500 components ? in the J2EE 7.0 ?
    <b>Deploy XSS on Portal server not on ECC.</b>
    Why when I deploy have this problem and the most of components can’t deploy it?
    <b>There won't be any issue. Go for ERP 2005</b>
    For my landscape, which is the recommended setup ?
    <b>As per the landscape mentioned by you, I will suggest go for ERP 2005 & XSS 600.</b>
    If you have further queries, mail me at [email protected]

  • Display issue with old TV and more questions

    Hi,
    I'm trying to connect my 24" iMac to an older model TV with RCA and S-Video input. I haven't attempted to connect using S Video but i do have the adaptor for the iMac to use the Yellow RCA cable. I understand that it automatically changes the resoltion to adapt to the TV resolution but my question is this.
    Does S-Video result in a clearer picture with the TV? Because right now it is virtually unusable because of the picture quality. I have tried to reduce the resolution from the iMac with no prevail. Should i pick up an S-Video cable today?
    #2 - Can i turn off the monitor from the iMac without it touching the TV display?
    #3 - I only have two sets of inputs on the back of this TV one for the Tivo and one for the Xbox 360. What would i need to add this additional input and change it remotely?
    Any help with these is greatly appreciated!

    Hi D to the M
    You will do better turning Mirroring Off and select the proper resolution for each, when your running that setup in Mirror mode the resolutions are not matched and it goofs up the iMacs resolution. This will also be true using an S-Video cable, but the overall picture quality should be slightly better. Note that the TV will probably not make a good display for working windows, but will be decent for watching movies, video clips, viewing slideshows and photos.
    My same TV setup has been connected up for over 2 years, and I just switch the TV off or select another input source.
    Dennis

Maybe you are looking for

  • My iPod shuffle will no longer turn on with switch.

    My ipod shuffle 3rd generation, will no longer activate by the off on swotch.  I have to plus into electrical outlet to get it to turn on to select what I want to hear.  It no longer turns off after playing selection it continues to play until batter

  • Report for sales invoices listing

    Hi, Please advise whatu2019s the T-code to generate the following reports which are required by auditor? -          List of sales for the financial year by invoice number -          List of purchases for the financial year by invoice number Thanks ra

  • Business Partner in Organizational Model Missing

    Hi I have added an Org Unit in Development Server and the ID and BP number is generated. I have Transported from Dev to Quality server by using RHMOVE50 to move the org unit. The Org unit and ID are transported successfully but the BP number is missi

  • ? What can i do about this, i will have cancel this if i can not use the programs

    good evening i have just purchased lightroom and photoshop on a 12 months contract and its now saying i am running a operative system that photoshop no longer supports  ? What can i do about this, i will have cancel this if i can not use the programs

  • How to use protected method in jsp code

    Could anyone tell me how to use protected method in jsp code ... I declare a Calendar class , and I want to use the isTimeSet method , But if I write the code as follows .. ======================================================== <% Calendar create_d