Transport to prodn does select

Hi experts,
When a program is created and need to be transported to prodn does selection texts always go with it? if not how do you make sure? Can you change the CTS entries? How do you do it? 
Thanks and Regards,
Logu.

This is the very common problem faced by most of the ABAPers.
Let me explain the cause & solution;
When you create a report for the first time, you can see it as 'PROGRAM' in SE10, which means it includes all the report source code as well selection texts.
Fine, you transport it to Quality system from DEV, here if you transport this same req to Production, then there won't be any problem, since all changes will go.
But, by any means you have modififed and again re-transported (without touching the selection text, then only the source code will move (type REPS in SE10).
To avoid this pit fall just save and activate your selection text, Then this should be reflected in SE10 with sub-object type REPT - report text.
If you have already transported the report, except the selection text, then follow the prior step what I have mentioned.
Check this Thread for more details regarding your concern.
hi all ,progrm created need to be transported to prodn does sele.txt go
Hope this helps.
Regards
Vinayak

Similar Messages

  • Hi all ,progrm created need to be transported to prodn does sele.txt go

    Hi All,
      Pls provide the information  ASAP
    . When a program is created and need to be transported to prodn does selection texts always go with it? if not how do you make sure? Can you change the CTS entries? How do you do it? 
    Thanks&regards.
    Bharat

    Hi Bharat,
    This is the very common problem faced by most of  the ABAPers.
    Let  me explain the cause & solution;
    When you create a report for  the first time, you can see it as 'PROGRAM' in SE10, which means it includes all the report source code as well selection texts.
    Fine, you transport it to Quality system from DEV, here if you transport this same req to Production, then there won't be any problem, since all changes will go.
    But, by any means you have modififed and again re-transported (without touching the selection text, then only the source code will move (type REPS in SE10).
    To avoid this pit fall just save and activate your selection text, Then this should be reflected in SE10 with sub-object type REPT - report text.
    If you have already transported the report, except the selection text, then follow the prior step what I have mentioned.
    Please feel free to get back to me if you are not clear.
    -B S B

  • How to selection textu0092s from development  server to prodn does ? if not how

    How to transfer along with code selection text’s from development  server to prodn does ?

    From your ABAP SE38 program, in the menu bar :
    SE38> GOTO>Text Elements>Selection Texts
    press edit button save and activate in the same se38 program.
    Now these selection text become the part of ur request . You can also check the same in your request through se09/se10.
    reward if useful.
    Amit Singla

  • PS elements 12 freezing when doing selective color and having to force quit on Mac.

    PS elements 12 freezing when doing selective color and having to force quit on Mac.  I've uninstalled and reinstalled several times and that did not work.  I've changed preferences and that did not work and i tried hitting shift+command and option at start up of program and that did not fix the problem either.

    Hi,
    We sincerely apologize for the problem customers are facing while using a trackpad with Photoshop Elements 11 & 12 on Mac OSX 10.10 (Yosemite).
    We have been actively working with Apple to resolve this problem as quickly as possible. We're hopeful this will get completely resolved in an upcoming update of Yosemite(MAC 10.10).
    In the meanwhile, you have two options to work around this problem:
    1. Option1: Use a mouse instead of the trackpad
    2. Option2: Install a plug-in which should workaround the problem
    Plug-in installation instructions:
    1. Close Photoshop Elements
    2. Download this zip file to a location you can easily find (e.g. your desktop)
    3. Unzip the file, WhiteWindowWorkaround.plugin, and move it to the Plug-In folder:
    • For Elements 12 – //Applications/Adobe Photoshop Elements 12/Support Files/Plug-Ins/
    • For Elements 11 - //Applications/Adobe Photoshop Elements 11/Support Files/Plug-Ins/
    You can verify the plug-in is installed by launching the Photoshop Elements Editor and choosing Help > System Info... Scroll to the bottom of the text in the dialog and look for the plug-in name "WhiteWindowWorkaround.plugin".
    Note: This plugin is a temporary workaround and should be used until this issue is addressed in Mac OSX 10.10 (Yosemite). Please remove this plugin once the issue is officially resolved by Apple.
    If you are using a stylus in conjunction with a trackpad, you might see issues with your trackpad. Workaround in this particular case is to use mouse instead of the trackpad.
    Hope this helps!
    Regards,
    vaishali

  • To take only first 12 chars doing SELECT

    Dear ABAPers
    I am doing
    SELECT single * from TAB
        where A = MYKEY.
    if SY-SUBRC=0.
      MYKEY2 = TAB-A.
    endif.
    The question is u2013 I need to take(analyse) only first 12 chars of A .
    Say, A is 20 chars, MYKEY is 12 chars.
    Is that possible to catch only first 12 chars of A in u201Cselectu201D statement?
    If yes, provide the code please.
    THANK YOU!

    Try something like this,
    data: var type string.
    concatenate MYKEY '%' into var.
    SELECT single * from TAB
    where A like var.
    if SY-SUBRC=0.
    MYKEY2 = TAB-A.
    endif.
    Vikranth

  • URGENT - Does Select Query Sort based on RowId ?

    Does Select Query Sort based on RowId ?
    Eg: Select * from Employee;
    RowId primkey name
    aaaa 1 kiran
    aaab 2 kumar
    aaac 3 someone
    Now when i delete the primkey: 2 row.
    I will have:
    RowId primkey name
    aaaa 1 kiran
    aaac 3 someone
    Now when i insert a new record:
    RowId primkey name
    aaaa 1 kiran
    aaac 3 someone
    [Comment: Here the rowid can either be a new one like 'aaad' or 'aaab' is also reused.]
    aaad 4 somename
    My requirement is that the 'aaab' should not be reused.
    Can any one pls suggest some way.

    Dear Friend,
    Plese gothrougth once following steps... (One by One)
    Hope you can understand how Rowid Creating and Updting in you table.
    SQL> select rowid,enumber from t;
    ROWID ENUMBER
    AAAJ4oAABAAAWlyAAA 1
    AAAJ4oAABAAAWlyAAB 2
    AAAJ4oAABAAAWlyAAC 3
    AAAJ4oAABAAAWlyAAD 4
    SQL> select rowid,enumber from t where enumber = 2;
    1 row deleted.
    SQL> insert into t values(9):
    1 row created.
    SQL> select rowid,enumber from t;
    ROWID ENUMBER
    AAAJ4oAABAAAWlyAAA 1
    AAAJ4oAABAAAWlyAAC 3
    AAAJ4oAABAAAWlyAAD 4
    AAAJ4oAABAAAWlyAAE 9
    SQL> delete from t where enumber = 3;
    1 row deleted.
    SQL> insert into t values(3);
    1 row created.
    SQL> select rowid,enumber from t;
    ROWID ENUMBER
    AAAJ4oAABAAAWlyAAA 1
    AAAJ4oAABAAAWlyAAB 3
    AAAJ4oAABAAAWlyAAD 4
    AAAJ4oAABAAAWlyAAE 9
    Regards,
    G V Sreenivasulu

  • How does select stmt with for all entries uses Indexes

    Hello all,
    I goes through a number of documents but still confused how does select for all entries uses indexes if fields are not in sequences. i got pretty much the same results if i take like two cases on Hr tables HRP1000 and HRP1001(with for all entries based upon hrp1000). Here is the sequence of index fields on hrp1001 (MANDT, OTYPE, OBJID, PLVAR, RSIGN, RELAT, ISTAT, PRIOX, BEGDA, ENDDA, VARYF, SEQNR). in second case objid field is in sequence as in defined Index but i dont see significant increase in field even though the number of records are around 30000. My question is does it make a differrence to use field sequence (same as in table indexes) in comparison to redundant field sequence (not same as defined in table indexes), secondly how we can ge tto know if table index is used in Select for entries query i tried Explain in ST05 but its not clear if it uses any index at all in hrp1001 read.
    here is the sample code i use to get test results.
    test case 1
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
    *                    objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C' and
                        objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.
    test case 2
    REPORT  zdemo_perf_select.
    DATA: it_hrp1000 TYPE STANDARD TABLE OF hrp1000 WITH HEADER LINE.
    DATA: it_hrp1001 TYPE STANDARD TABLE OF hrp1001 WITH HEADER LINE.
    DATA: it_hrp1007 TYPE STANDARD TABLE OF hrp1007 WITH HEADER LINE.
    DATA: it_pa0000 TYPE STANDARD TABLE OF pa0000 WITH HEADER LINE.
    DATA: it_pa0001 TYPE STANDARD TABLE OF pa0001 WITH HEADER LINE.
    DATA: it_pa0002 TYPE STANDARD TABLE OF pa0002 WITH HEADER LINE.
    DATA: it_pa0105_10 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: it_pa0105_20 TYPE STANDARD TABLE OF pa0105 WITH HEADER LINE.
    DATA: t1 TYPE timestampl,
          t2 TYPE timestampl,
          t3 TYPE timestampl 
    SELECT * FROM hrp1000 CLIENT SPECIFIED  INTO TABLE it_hrp1000 bypassing buffer
                WHERE mandt EQ sy-mandt AND
                      plvar EQ '01' AND
                      otype EQ 'S'AND
                      istat EQ '1' AND
                      begda <= sy-datum AND
                      endda >= sy-datum AND
                      langu EQ 'EN'.
    GET TIME STAMP FIELD t1.
    SELECT * FROM hrp1001 CLIENT SPECIFIED INTO TABLE it_hrp1001 bypassing buffer
                FOR ALL ENTRIES IN it_hrp1000
                 WHERE mandt EQ sy-mandt AND
                        otype EQ 'S' AND
                        objid EQ it_hrp1000-objid and
                        plvar EQ '01' AND
                        rsign EQ 'B' AND
                        relat EQ '007' AND
                        istat EQ '1' AND
                        begda LT sy-datum AND
                        endda GT sy-datum and
                        sclas EQ 'C'." and
    *                    objid EQ it_hrp1000-objid.
    *                    %_hints mssqlnt 'INDEX(HRP1001~0)'.
    *delete it_hrp1001 where sclas ne 'C'.
    GET TIME STAMP FIELD t2.
    t3 = t1 - t2.
    WRITE: 'Time taken - ', t3.

    Mani wrote:
    Thank you for your answer, its very helpful but i am still nor sure how does parameter rsdb/max_blocking_factor affect records size.
    Hi,
    The blocking affects the size of the statement and the memory structures for returning the result.
    So if your itab has 500 rows and your blocking is 5, the very same statement will be executed 100 times.
    Nothing good or bad about this so far.
    Assume, your average result for an inlist 5 statement is 25 records with an average size of 109 bytes.
    You average result size will be 2725 byte plus overhead which will nearly perfectly fit into two 1500 byte ethernet frames.
    Nothing to do in this case.
    Assume your average result for an inlist 5 statement is 7 records with an average size of 67 bytes.
    You average result size will be ~ 470 byte plus overhead which will only fill 1/3 of a 1500 byte ethernet frame.
    In this case, setting the blocking to 12 ... 15 will give you 66% network transfer performance gain,
    and reduces the number of calls to the DB by 50%, giving additional benefit.
    Now this is an extreme example. The longer the average row length is, the lower will be the average loss in the network.
    You have the same effects in memory structures, but on that layer you are fighting single micro seconds instead of
    hundreds of these, so in real life it is rarely measurable.
    Depending on table-statistics, oracle might decide for short inlists to use a concatanation instead of an inlist.
    This is supposed to be more costy, but I never had a case where I could proove a big difference.
    Values from 5 to 15 for blocking seem to be ok for me. If you have special statements in customer coding,
    it #might# be benefitial to do the mentioned calculations and do some network tracing to see if you can squeeze your
    network efficiency by tuning the blocking.
    If you have jumbo frames enabled, it might be worth to be analyzed as well.
    If you are only on a DB-CI system that is loopback connected to the DB, I doubt there might be a big outcome.
    Hope this helps
    Volker

  • Does Selecting Off Completely Turn Off Airport?

    As a switcher, I would like to know: Does selecting 'Off' from the dropdown Airport menu completely stop it from sucking power, or does it just drop the current network? Cause when I'd select Wireless Off on my ex-Dell, it would just disconnect from the network and continue broadcating and massacring my battery life.
    Thx
    -tcvanp3570

    tcvanp3570, Welcome to the discussion area!
    Does selecting 'Off' from the dropdown Airport menu completely stop it from sucking power...
    Yes it turns it completely off.

  • Why does selecting "help" in Premiere Elements give me a http403 forbidden message?

    Why does selecting "Help" in Elements Premiere 11" give me a 403 Forbidden message?

    I have looked at hosts file.
    If I understand your suggestion correctly, I have compared my hosts file entry with the link you provided:
      http://1.bp.blogspot.com/-Zyw0c7iJGJs/Uz9A3uyRpMI/AAAAAAAABZo/6s9KihpCW0I/s1600/hostsfile. JPG
    and they appear to be exactly the same.
    [PS: Could an issue here be that my version of PE (11) is not the latest version (13)? (Or should using PE11 still permit use of the "Help" feature, without a "403 error" ?)]
    From: A.T. Romano <[email protected]>
    To: Don Giger <[email protected]>
    Sent: Wednesday, October 29, 2014 3:09 PM
    Subject:  why does selecting "help" in Premiere Elements give me a http403 forbidden message?
    why does selecting "help" in Premiere Elements give me a http403 forbidden message?  created by A.T. Romano in Premiere Elements - View the full discussion  
    DonOma
    Let us look at the hosts file and inspect its content for unwanted/unexpected entries.
    STEP 1
    Find the hosts file. In Windows 7, 8, or 8.1 64 bit, the hosts file is found in the path
    Local Disk C
    Windows
    System32
    drivers
    etc
    and in the etc Folder is the hosts  file
    STEP 2
    Right click the hosts file, select Open, and then Notepad. Open the hosts file's Notepad document.
    Do you see anything below the last line in the default hosts file as shown in the screenshot?
    (Always backup the hosts file before editing it.)
      http://1.bp.blogspot.com/-Zyw0c7iJGJs/Uz9A3uyRpMI/AAAAAAAABZo/6s9KihpCW0I/s1600/hostsfile. JPG
    ATR
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at https://forums.adobe.com/message/6880653#6880653
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: 
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Premiere Elements by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Transport agent service does not start. Cannot load project in dev station.

    Hello,
    I am facing a strange problem in my Mobile QA development station. This machine is a development workstation for an ARS.
    When i logged in today, i cannot load my project in the visual studio. It asks me for the user id and password and hangs. It doesnt ask me to select the changelist, but hangs.
    Also, i noticed that the transport agent isnt working as well. the service just says "Starting" and does nothing for a ling time and fails when i manually start.
    Until last time i loaded my project, everything was fine. I do ConnTrans everyday.

    Hi,
    You'd first need to check if login from Upgrade Console to your ars_db is possible.
    If you're facing issues logging into the ars_db, please stop the SAP MAR Central Service(which would be present most likely on your MAR machine), wait for about 20 seconds and then start the service again. Then try logging into MAS.
    If MAS doesn't hang while loading your project and you're able to proceed to selecting the changelist, then you can fix your transport related issue as follows -
    1. Stop the Transport service from the Service Console(services.msc).
    2. Login to TransportInstaller.exe and uninstall the previous Transport Service.
    3. Browse to the key HKEY_LOCAL_MACHINE\SOFTWARE\SAP\MSA\Workbench\Server\TAgent in the registry and delete all the keys under the key 'TAgent'.
    4. Install a new Transport Service using TransportInstaller.exe
    5. Start the new Transport service from the Service Console.
    Thanks,
    Rohit

  • Transport error - rsds does not exists

    I getting error " Target RSDS Z_ZDDP_HISTORY QASCLNT400 does not exist" while transporting some DSO with "before" option. It is strange because:
    1. data source Z_ZDDP_HISTORY DO EXISTS in QAS system!
    2. it is also exists on  ECC side
    3. the option "conversion of logical system" is checked

    Hi,
    As Mansi said, you need to make sure that you transport Active datasource from ECC and BW end as well. After ECC transport perform Replication in BW and then transport BW datasource replica.
    This should resolve your problem.
    Regards,
    Viren

  • Transport Error - DS does not exist in Source system

    Dear All,
    I am getting below Error while transporting the DSO from DEV to Quality.
    DataSource  8ZM_ALT  does not exist in source system  DCQCLI041 of version A.
    I have checked the dataosource is active and available in Development system.  But Its giving error while importing.
    As per the dataflow the data of this DSO is updated to Cube.
    Has anyone solved this issue, because i have checked in SDN but there are no suitable answers.
    Regards
    Sankar

    Hi,
    Your right I am transporting ZM_ALT Dso .  The following log of the error we are getting.
    DataSource 8ZM_ALT does not exist in source system DCQCLI041 of version A
    Mapping between data source 8ZM_ALT and source system DCQCLI041 is inconsistent
    DataSource 8ZM_ALT does not exist in source system DCQCLI041 of version A
    Field /BIC/ZM_AA will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_APPL will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_BEM will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_MOD will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NCDS will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NDESC will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NES1 will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NES2 will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NIN will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NPCS will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Field /BIC/ZM_NPN will not be delivered from DataSource 8ZM_ALT in source system DCQCLI041
    Regards
    Sankar

  • Hi,a question about transportation of translation of selection screen?

    Hi Experts,
    I am working on an ALV and there is a selection screen for it, and I have translate the texts in the selection screen and can they be transported while the program is transported to another system? if not how can I transport the translations, thank you much.
    Kind regards
    Dawson

    Hello ,
    Please follow the below steps for transalation ..
    - Complete your development and release the same .
    - Always have the Translations which u can do wtih SE63 tocde and have them within a specific transport request (Recomended Transport of Copies) .
    Now u release the TR of translation then everything wil work fine .
    Ensure always Translations TR is younger than Development TR withrespect to their creation and Releases ....
    Regards,

  • How does "Select Ignore Suspected Duplicates" work?

    During import, if I select "Ignore Suspected Duplicates" how does LR decide if a given picture is a duplicate? The on-line help doesn' say.

    It is looking for actual, same name and file type duplicates. Basicly with this unchecked it will re-impmort images you have already imported so you will have more than one copy and the will be reported under an 'Already in Library listing under 'Previous Import'.
    It does not apply to differently named same images or same named (including extension) different images.
    Don
    Don Ricklin, MacBook 1.83Ghz Duo 2 Core running 10.4.9 & Win XP, Pentax *ist D
    http://donricklin.blogspot.com/

  • Help with doing SELECT sub query within the SET of an UPDATE statement

    After doing some research, it appears as if it's possible to use a SELECT subquery in the SET of an UPDATE statement.  i did find some examples and here is my code, however when I click the "check" button it's saying the field (my entire select subquery) is unknown and neither in one of the specified tables or defined by a "DATA".  Do I have a syntax issue or is there another reason why it's not taking this as a valid statement?  Thanks for the help!
    LOOP AT IT_DATA
    UPDATE /BIC/AZDP_O0140
       SET /BIC/ZCOUNTER = (SELECT COUNT( DISTINCT MATERIAL )
                            FROM /BIC/AZDP_O0140
                            WHERE MATERIAL EQ IT_DATA-MATERIAL
                            GROUP BY MATERIAL).
    ENDLOOP.

    my Update does indeed have a WHERE clause but because of the issue i'm having, all my criteria in my WHERE is black text in the ABAP editor.  The editor doesn't even recognize the keywords "WHERE" or "EQ".  Below is my entire statement which contains all WHERE criteria in both the Update and the Subquery, i've just removed it for testing to help simplify the query and eliminate as many other factors as posisble that may be causing problems:
    LOOP AT IT_DATA.
       UPDATE /BIC/AZDP_O0140
       SET /BIC/ZCOUNTER = (SELECT COUNT( DISTINCT MATERIAL ) FROM /BIC/AZDP_O0140
       WHERE WHSE_NUM EQ IT_DATA-WAREHOUSE
        AND  PLANT EQ IT_DATA-PLANT
        AND  /BIC/ZTRAN_NO EQ IT_DATA-TRANS_NUM
        AND  DELIV_NUMB EQ IT_DATA-DELIVERY
        AND  MATERIAL EQ IT_DATA-MATERIAL
        GROUP BY MATERIAL)
       WHERE WHSE_NUM EQ IT_DATA-WAREHOUSE
        AND  PLANT EQ IT_DATA-PLANT
        AND  /BIC/ZTRAN_NO EQ IT_DATA-TRANS_NUM
        AND  DELIV_NUMB EQ IT_DATA-DELIVERY
        AND  MATERIAL EQ IT_DATA-MATERIAL.
    ENDLOOP.
    i should also mention the sources i found were not within the SAP Library but instead on other third-party ABAP websites.  so because i was having issues i wanted to post here to see if anyone else has come up with a working solution.  but if this cannot be done i can likely come up with a solution for my needs using multiple internal tables, this would just have been much easier since i can get a query like this to do what i want in SQL Server.  Thought i could utilize this in ABAP as well.

Maybe you are looking for

  • Passing A List To The Struct, Not Just A Single Value

    I need for my structure to go through a list, not just one value and I can't see how to get it to work. Say for example the offer code is 8 and someone has 2 8's that apply...it is only accepting 1 and the other goes unnoticed. Would someone please h

  • External monitor not recognized!

    I have a Philips 180P2 external monitor hooked up to my iMac 2.8 GHz, 24", which was running fine until my upgradte to SL this afternoon. Now (among other little "quirks") the external monitor can't recognize the signal from the iMac ... or rather, t

  • HP DesignJet 450c

    I have a DesignJet 430 upgraded to a 450c which is not printing correctly. I am working on Windows XP.   All of the colours will not print correctly.  All of the cartridges are full.  The colour red will not print at all.  Can you advise on any measu

  • Storage bin issue -

    hi friends storage bin 01-01-01 stock is 1000 quantity...After PO-GRN all stock is updated in same storage bin  01-01-01... my querys is i want to fill 100 qty should be filled in 01-01-01 storage bin , if quantity excess means remaining quantity sho

  • My imac is on finance, how to find out how much i have left to pay off?

    My imac is on finance, how to find out how much i have left to pay?