New route with weight group

Gurus - Required your valuable explanation regarding the setting in Delivery document type "New Route without check" and "New Route with Check"
I have configured routes with Weight group and enabled the "new Route with Check" in delivery doc type.Does it mean that new route will determine in delivery? No entries has been entered in actual routes vs proposed routes.
On what cases we use the actual routes to proposed routes(Table TROAL) config?

Hi,
Yes, new route will be determined in delivery if which corresponds to that range of weight group. Regarding "new route determination with check/without check", when you try to change the route manually, the system will check (will not check) whether the proposed route is defined as an alternative for Actual route. If the proposed route is not defined for actual route, it'll give an error message.
This you define in Proposed routes in Route Determination.
Hope it will answer your query.
Reward if so
Regards
Samier Danish

Similar Messages

  • Route with weight group and without weight group

    Hello All
    I have created two  same routes  as per user requirement one with weight group and other is without weight group.once the delvery is created the route is picked up.But how do i know whether this route is with weight group or without weight group.
    Could you please clarify so that i can proceed for testing.
    Regards
    T.Srikanth

    Dear Srikanth,
    Try this
    Go to SE16 enter LIKP table then execute here you enter your delivery number then go to menu>Settings>Format list-->Clik on Choose fields here you deselect all the fields you select
    VBELN  - Delivery
    GRULG - Weight group
    PERFK - Route then execute now you can get the details about the delivery number , weight group and Route.
    If system displays only Delivery and Route you can understand there is no involvement of weight group in the route determination.
    If the system displays Delivery,weight group and route then you can understand that thre is weight group involvement in the route determination.
    I hope this will help you,
    Regards,
    Murali.
    Edited by: Murali Mohan.Tallapaneni on Nov 5, 2008 6:51 AM

  • Create a new routing with BAPI BAPI_ROUTING_CREATE via JCo

    I try to create a new routing with BAPI BAPI_ROUTING_CREATE via JCo.
    I filled all necessary parameters. I also realized a commit_work. I get in the RETURN parameter of the BAPI the Message "S 000 Routing N/50001641/01". But the routing isn't in the database. Other JCo programs I wrote (create material master or costumer order) are working very well.
    Have anyone an idea?
    Thanks Jörg
    Here's my coding:
    public void createArbeitsplan() {
              doLogin();
    //          connectionAttributes();
              Plan plan = new Plan();
              for (int i = 0; i < planList.size(); i++)
                   plan = (Plan) planList.get(i);
                   //Ein Function-Objekt erzeugen
                   String bapi = "BAPI_ROUTING_CREATE";
                   JCO.Function savePlan = null;          
                   try { savePlan = this.createFunction(bapi); }
                   catch(Exception ex) { ex.printStackTrace(); System.exit(1); }
                   if(savePlan == null) { System.err.println(bapi + " not found in SAP"); System.exit(1); }
                   //Import und Tabellen füllen
                   // Plankopf
                   JCO.Table headData = savePlan.getTableParameterList().getTable("TASK");
                   headData.appendRow();
                   headData.setValue(plan.kurztext,"DESCRIPTION");
                   headData.setValue("1","TASK_LIST_USAGE");
                   headData.setValue(werks,"PLANT");
                   headData.setValue("4","TASK_LIST_STATUS");
                   headData.setValue("ST","TASK_MEASURE_UNIT");
                   headData.setValue("001","RESP_PLANNER_GROUP");
                   headData.setValue("20070101","VALID_FROM");
                   headData.setValue("20991231","VALID_TO_DATE");
                   headData.setValue("1","LOT_SIZE_FROM");
                   headData.setValue("99999999","LOT_SIZE_TO");
                   // Materialzuordnung
                   JCO.Table materialAlloc = savePlan.getTableParameterList().getTable("MATERIALTASKALLOCATION");
                   materialAlloc.appendRow();
                   materialAlloc.setValue(plan.material,"MATERIAL");
                   materialAlloc.setValue(werks,"PLANT");
                   materialAlloc.setValue("20070101","VALID_FROM");
                   materialAlloc.setValue("20991231","VALID_TO_DATE");
                   materialAlloc.setValue("1","GROUP_COUNTER");
                   // Vorgänge
                   JCO.Table operationData = savePlan.getTableParameterList().getTable("OPERATION");
                   for (int j = 0; j < plan.getAnzahl(); j++) {
                        operationData.appendRow();
                        operationData.setValue(plan.getVorgang(j).vorgang,"ACTIVITY");
                        operationData.setValue(plan.getVorgang(j).steuschl,"CONTROL_KEY");
                        operationData.setValue(plan.getVorgang(j).arbplatz,"WORK_CNTR");
                        operationData.setValue("1111","WORK_CNTR");
                        operationData.setValue(plan.getVorgang(j).text,"DESCRIPTION");
                        operationData.setValue(plan.getVorgang(j).basismenge,"BASE_QUANTITY");
                        operationData.setValue(plan.getVorgang(j).vw1,"STD_VALUE_01");
                        operationData.setValue(plan.getVorgang(j).vw2,"STD_VALUE_02");
                        operationData.setValue(plan.getVorgang(j).vw3,"STD_VALUE_03");
                        operationData.setValue(plan.getVorgang(j).ze1,"STD_UNIT_01");
                        operationData.setValue(plan.getVorgang(j).ze2,"STD_UNIT_02");
                        operationData.setValue(plan.getVorgang(j).ze3,"STD_UNIT_03");
                        operationData.setValue("1","DENOMINATOR");
                        operationData.setValue("1","NOMINATOR");
                        operationData.setValue("20070101","VALID_FROM");
                        operationData.setValue("20991231","VALID_TO_DATE");
                        operationData.setValue("ST","OPERATION_MEASURE_UNIT");
                   // Testflag
                   JCO.Structure test = savePlan.getImportParameterList().getStructure("TESTRUN");
                   test.setValue(" ","BAPIFLAG");
                   //BAPI ausführen (incl. Commit)
                   mConnection.execute(savePlan);
                   JCO.Function commit = null;
                   try {commit = this.createFunction("BAPI_TRANSACTION_COMMIT"); }
                   catch (Exception ex) { ex.printStackTrace();System.exit(1); }
                   JCO.ParameterList input = commit.getImportParameterList();
                   input.setValue("X","WAIT");
                   mConnection.execute(commit);
                   //Messages vom SAP-System holen
                   JCO.Table jcoReturn = savePlan.getTableParameterList().getTable("RETURN");
                   for (int k = 0; k < jcoReturn.getNumRows(); k++)
                        jcoReturn.setRow(i);
    //                    System.out.println(jcoReturn.getField("MESSAGE").getValue());
                        System.out.println(jcoReturn.getField("TYPE").getValue());
                        System.out.println(jcoReturn.getField("NUMBER").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V1").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V2").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V3").getValue());
                        System.out.println(jcoReturn.getField("MESSAGE_V4").getValue());
                   JCO.Structure output = commit.getExportParameterList().getStructure("RETURN");;
                   System.out.println(output.getString("MESSAGE"));
                   System.out.println(output.getString("TYPE"));
                   System.out.println(output.getString("NUMBER"));
                   System.out.println(output.getString("MESSAGE_V1"));
              closeConnectionToSAP();
              System.exit(1);

    Hi,
    perhaps you could use
    BAPI_HRMASTER_SAVE_REPL_MULT
    Regards
    Bernd

  • Set up new router with DSL and vonage

    I have a dsl modem and also vonage. How do I set up a wireless router with the other two devices? Do I plug the router into the vonage, which is then going to the dsl modem? 

    Mac Migration and Time Machine DO NOT WORK with Cloud program activations due to hidden files
    Sign out of your account... Uninstall... run the Cleaner...
    -Restart your computer... Sign in to your account... Reinstall
    -using the cleaner after uninstalling and before reinstalling is needed
    -http://helpx.adobe.com/creative-cloud/help/install-apps.html (and uninstall)
    -http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html

  • Using iMac G5 in lieu of new router with Windows PC

    Help. Two days ago my wireless router up and croaked on me and while I'm saving up for another one I had to find a quick and easy way to get the computers back on the internet in the household. The solution seemed easy enough, I just turned Internet Sharing On with my iMac G5, plugged it directly into the modem and bingo.... everyone has internet access, pretty painless.
    Well, all was going fine until I tried to access files on the iMac (the primary computer in a 4 computer household) from the other computers. My PowerBook and iBook found them just fine, like nothing ever happened, but my Windows based laptop, even though it's receiving the internet connection just fine, no longer can find my iMac. Obviously the internet IP address is different, its now 10.0.2.1 instead of 192.168.2.2 like it used to be but Windows is telling me that nothing exists there. I tried going the other direction, accessing the Windows PC from the iMac (as well as the other two Mac's) to no avail as well (even though MSHOME shows up). Anyone know what I'm missing here? It's going to be awhile before I shell out for another router, in fact I was really hoping this would fit the bill for awhile, but emailing files back and forth is getting really old, really fast.
    Any help would be much appreciated!

    No that is not possible. This is only possible if the AirPort Extreme base station (AEBS) wirelessly joins the network as a WDS remote or relay. Unfortunately very, very, very, very few non-Apple devices are compatible with Apple's WDS... the Siemens device is one of the incompatible ones.

  • Weight group-route redetermination

    Friends,
    In the current system route is getting redetermined at delivery level depending on the weight group.Now how it is getting redetermined please do help me with settings done for the same and importantly to find HOW to find out if its picking the right route at delivery.
    I am aware how route is determined
    1.     Departure zone of the Shipping point in customisation
    2. Shipping condition ( system first check the sales doc type, then the customer master of SP)
    3. Transportation Group ( from the material master)
    4. Transportation zone (from customer master of SH)
    So please do help me w.r.t weight group.
    Regards
    ASD

    Hi
    Route in delivery depends on weight groups as mentioned above
    Route Determination with Weight Group(Delivery)
    Shiping ConditionTransportation Groupweight Group----
    >Actual Routes,
    But where do we get weight group from ,we need to define Weight groups and weight assigned to different weight groups
    as mentioned below
    SPRO->SD->BASIC FUNCTIONS->ROUTES->ROUTE DETERMINATION->DEFINE WEIGHT GROUPS
    *Total Weight   Unit            Seq          Weight group      Description*  
    1     KG      1     0001     Up to 1 kg
    10     KG      2     0010     Up to 10 kg
    100     KG      3     0100     Up to 100 kg
    so based on weight groups assigned in above transaction,actual route is determined.
    S.C                                                      T.GROUP                                WT.GROUP                       ACTUAL ROUTE        
    01     As soon as possible     0001     On palettes     0001     Up to 1 kg     000001     Northern Route
                                                                  0010     Up to 10 kg     000002     Southern Route
                                                                  0100     Up to 100 kg     000003     Eastern Route
    when order is raised for say 10 items (each item weight is 1 kg) so in deleivery,it means total weight in delivery is 10 kg so route determined isn 00002-southern route in above example.
    If order raised for 1 item,total wt is 1 kg so route determined will be 00001,
    we can configure as per the requirement,
    Regards
    Jai

  • Can't browse network with new router - HELP!

    My old WRT54G died a few days ago.  I replaced it with a WRT54GL which was the closest match.  Since installing the new router I can no longer browse my network.   I configured the new router with LELA as per the instructions suggested.  Could that have changed something?  All the machines can get on the internet and I can ping all the machines through the command line but when I try to look at the workgroup in the my network places window I get an error message that says:
    "Workgroup not accessable. You might not have permission to use this network resource. Contact the administrator of this server to find out if you have access permissions.  The network path was not found."
    When I run the net view command in the command line that also results in an error.
    When I hook machines together with a crossover cable everything works fine so I have to assume it's some setting in the new router that is preventing the browse list from working.  Here's what I've tried:
    Turned off firewalls both on the local machines and on the router - made no difference
    Made sure all machines are in the same workgroup - they are
    Made sure browser service and the peer networking services are running - they are
    Made sure all machines are on the same subnet - they are because they can ping each other
    Now here's something really strange.  When I rename the workgroup on all machines they can see each other.  Once I switch back to the name "workgroup" they can't see each other any longer and I get the error message.
    I run a small business and need to share files quite often.  I would love to be able to get a NAS server but I can't find any that will work with ALL of my machines.  Most of my machines are running Vista at this point but a few are still XP Pro. One of my machines is XP Pro and cannot run SP2 which prevents a lot of newer software and devices from running on it.  This is why I really need to get my file sharing ability back.
    Any help is greatly appreciated.
    Mike
    Solved!
    Go to Solution.

    I solved the issue and wanted to post it in case someone else has the same issue.  One of the machines uses a Linksys WGA600N Dual Band Gaming adapter as it's wireless adapter. Technically speaking this actually a bridge.  I needed to restart it.  That solved my issue.
    Mike

  • How to create new route in SPRO?

    Hi,
    I need to create new route with the following parameters.
    country of departure: UA
    zone of departure:  Kiev
    Country of Delivery: UA
    Transport zone and Description: Kiev
    shipping condition: EX
    Transit time: 24h
    Route name:  PTKIEV
    Route description:  Kiev Express
    Carrier / Freight Forwarder: SP0455
    Kindly tel me the step by step in SPRO.
    Please advice how to do this.
    Thanks
    Raghu

    Hi,
    make the following configuration inspro for the transportation
    1.Maintain Transportation Planning Point to Company Code.
    IMGEnterprise Structure-Definition-Logistics ExecutionMaintain Transportation Planning Point (Tcode OVXT)
    2 - Assign Transportation planning point to company code.
    3 - Assign Purchasing Organizations to Company Code.
    IMGEnterprise Structure-Assignment-Materials managementAssign Purchasing Organization to Company Code.   (Tcode OX01)
    4 - Assign Purchasing Organizations to Plant.
    IMG--Enterprise Structure-Assignment-Materials management- Assign Purchasing Organization to Plant.  (Tcode OX17)
    5. Create Vendor - (T-Code XK01) as forwarding agent in your p.org
    6.Define Modes of Transport
    IMGLogistics Execution-Transportation-Basic Transportation Function-Routes-Define RoutesDefine Modes of Transport. (T-Code 0VTB)
    6.Define Shipping Types
    Under the Same Menu path---Define Shipping Types (T-Code 0VTA)
    Select New Entries and Assign the Shipping Type (e.g. Road or Train) and Assign Mode of Transport (Mdtr) and Assign Shipping type Procedure group.
    7.Define Transportation Connection Point
    Under the Same Menu path--- Define Transportation Connection Point. (T-Code 0VTD)
    8. Define Routes and Stages.
    Under the Same Menu path--- Define Routes and Stages. (T-Code 0VTC)
    Select the New Entries and Enter the Details - Then Select the Routes stages and define
    9. Maintain Stages for all Routes.
    Under the Same Menu path---Maintain Stages for all Routes.
    10 .ROUTE DETERMINATION - Define Transportation Zone
    IMGLogistics Execution-Transportation-Basic Transportation Function-Routes-Route DeterminationDefine Transportation Zone.
    11.Maintain County and Transportation Zone for Shipping Point.
    Under the Same Menu path--- Maintain County and Transportation Zone for Shipping Point. Select the Shipping point and enter the Country and Transportation Zone
    12. Define Transportation Groups
    Under the Same Menu path---Define Transportation Groups
    13. Maintain Route Determination
    Under the Same Menu path--Maintain Route Determination. Select New Entries and Define the Route Determination.
    SHIPMENTS
    IMGLogistics Execution-Transportation-Basic Transportation FunctionShipments
    14.Define Shipment Types
    IMGLogistics Execution-Transportation-Basic Transportation Function-ShipmentsDefine Shipment Types. Select the New Entries and define Shipment Type
    15. Go to Customer master data.
    In Address of General data. Enter the Transportation Zone id. And save you will get the route
    Hope it helps
    thanks

  • New router WRT160N, but still same poor signal!!

    Hi all,
    Been having issues with my wireless signal being poor and/or intermitent.  I won't pretend to be computer literate, but I asked a Techie friend about this, and he suggested that I but a new router with the "N" signal. 
    My desktop signal is fine, but i have 3 laptops, and can be 30 feet away and get a fair/poor signal.  When I go into the bedroom, which is upstairs, and in the furthest distance away from the router, the signal gets even weaker.
    My Techie tried everything to bump up the signal, trying all channels, and even moved the router around the room.  No luck!!
    My house isn't made of steel, so there is no logical explanation for this... is there?
    Please  help me, and remember...I'm not real swarthy with the computer jargon,
    thanks very much 

    Try to change the Wireless Settings on your Router as mentioned below, i think it will improve the wireless signal strength on your computers. 
    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case...
    For Wireless Settings, please do the following : -
    Click on the Wireless tab
    - Here select manual configuration...Wireless Network mode should be mixed...
    - Provide a unique name in the Wireless Network Name (SSID) box in order to differentiate your network from your neighbors network...
    - Set the Radio Band to Standard-20MHz and change the Standard channel to 11-2.462GHz...Wireless SSID broadcast should be Enabled and then click on Save Settings...
    Please make a note of Wireless Network Name (SSID) as this is the Network Identifier...
    For Wireless Security : -
    Click on the Sub tab under Wireless > Wireless Security...
    Change the Wireless security mode to WPA, For Encryption, select TKIP...For Passphrase input your desired WPA Key. For example , MySecretKey , This will serve as your network key whenever you connect to your wireless network. Do NOT give this key to anyone and remember the key.
    NOTE : Passphrase should be more that 8 characters...
    Click on Advanced Wireless Settings
    Change the Beacon Interval to 75,Change the Fragmentation Threshold to 2304,Change the RTS Threshold to 2304 and Click on Save Settings...
    Now see if you can locate your Wireless Network and attempt to connect...

  • PR release strategy with material group

    Hi Experts,
    Release strategy for Purchase requisition already configured with characteristics Document type and Total net order Value.
    For fulfill new requirement we have created New character with Material group.Our requirement is for Two material groups separate  release strategy has to be trigger and remaing other material groups old release strategy has to be trigger.For exple if X and Y are two material groups ,which require seperate release strategy.Other than X and Y material groups requir old release strategy.
      all the material groups assigned to character.Blank material group also assigned to the character.In release strategy level in classification view we have assigned two material groups( X and Y ) for separate release strategy and remaining  material groups and Blank material group to old release strategy.
       At the time of creation of PR if i give two  material groups ( X and Y)for different line items, seperate release strategy is not triggering, where as old release strategy is triggeringIf i create PR with single material group( X) for all line items it is triggering seperae release strategy properly.
       For other material groups (other then X and Y )with different line items it is triggering old release strategy properly.
          Kindly help me to resolve the problem.

    Hi,
    Please add Blank material group to the new release strategy also.
    Maruthi

  • HP 6520 won't scan with wireless connection and new router

    My printer scanned fine before.  Got a new internet provider=new router and now I can't scan scan anymore.  The computer is connected wirelessly.  The computer says it cannot communicate with the scanner.  Same if I try from the printer front panel, it says it can't communicate with the computer.
    The router seems like the obvious cuprit, but nothing in the router settings or manual suggest anything that could be blocking the scanner communications.  The router firewall is turned-off.
    Printing works fine, and I can connect to the printer through its IP address.  The user interface can see the printer status, check ink levels, everything.  Everything works but scanning.  I've re-installed software multiple times, tried turning off firewalls and tried HP Scan and Print doctor.  It's not much help.  
    I'm at wits end.
    -ETC

    Hello @etcottle , and welcome to the HP Forums!
    I see you are experiencing scan connectivity issues.  I would like to help!
    I would recommend powering down your computer,  disconnect the power cord from the printer and the power outlet, and remove the power from your router for 60 seconds. 
    After 60 seconds, plug the router back in.  Once the router has begun broadcasting, plug the printer back in. Ensure you plug the printer directly to a wall outlet. Make sure to bypass any sort of surge protector or power bar. 
    After the printer is on, re-run the wireless setup.
    I'd also suggest this document:
    Wireless printing center Troubleshooting Issues
    Good luck and please let me know the results of your troubleshooting steps. Thank you for posting on the HP Forums!
    Please click “Accept as Solution " if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks" for helping!
    Jamieson
    I work on behalf of HP
    "Remember, I'm pulling for you, we're all in this together!" - Red Green.

  • Setting up Express with new router

    I have a Linksys wireless router which is replacing a older one of different brand. I want to use my Airport Express to extend signal strenth in the family room and feed the speakers as I've done before.
    Is there something I have to do to get this new Router recognized by the Express?

    Not all Linksys wireless routers can be extended with an Airport Express.
    http://www.dd-wrt.com/wiki/index.php?title=WDSLinked_routernetwork
    iFelix

  • My Macbook Pro 13' from 2011 keeps kicking me off the internet, even though my internet service (complete with brand new router) shows strong bars. Any help?!

    I've had this 13 Inch Macbook Pro complete with the Lion since October 2011. I've been having trouble with the internet connection. I keep getting 'unable to connect to the internet' or 'website unavaiable'. We have a brand new router, so we know for certain the router isn't going out. Both of my parents computers connect just fine without getting kicked out. I thought maybe it was the seat, so I switched chairs and rooms and positions, but that doesn't seem to help. I check my internet connection and always says 'connected' with full bars. I've tried different browswers, using Safari and Google Chrome. It's frustrating not being able to get online and get kicked off in the middle of whatever you're doing for a reason you can't figure out. Any help/suggestions? It's been going on for a month or so now.

    After biting the bullet and ordering more RAM, my computer now is working a ton better. So that must have been the main issue. With 8 GB RAM, I can now even run Parallels fluidly (better than my work PC!) where before simple things like logging in to my MBP after reboot could take forever.
    The place I went to had several other people getting RAM upgrades at the same time as me, so between this and other comments I've seen in discussions here and elsewhere on the Internets, I take it to mean that either Apple should bump up the base RAM on its new machines, and/or stop charging so much for additional RAM.
    I refused to believe a Pro machine bought with Lion installed would come with too little RAM for light to medium usage, but it was apparently the case. I'll mark this as a correct answer and hope some other poor soul will come across this thread and be helped by it.

  • New router: cp1525nw wifi install fails with vague error message

    Product:  HP Laserjet Pro cp1525nw
    OS:  WIndows 8.1
    Hardware:  Asus laptop
    Recently received new router from Verizon (FIOS), model FQG1100 BHR4 Router
    Purchased printer in 2012.
    Printer was working with old router; it won't communicate with new router.
    Over four days I have repeatedly removed the printer from the laptop and tried reinstalling using the wifi method. The install instructions say to run the CD, choose wifi, connect the USB cable when prompted, configure, remove cable when prompted.
    When I attach the USB cable the configuration starts, but it either times out ("taking too long") or fails with vague message  about not finding the product. I am never prompted for an SSID.
    I tried a USB install and that worked; so the USB cable is good. 
    Windows File & Print Sharing is enabled.
    I've tried re-setting the printer to defaults, and ensured the wifi menu says "ON" for wifi.
    I ran a wireless network test report:
    PASS for wireless on, wireless working, and Security.
    FAIL for Network Name (SSID) Found.
    NOT RUN for: printer settings consistant with wireless router settings, No filtering, connected, signal strength, other networks detected.
    Wireless netwrorks detected: 9
    I note the router label does not statE "SSID", but says "ESSID".
    I would appreciate any ideas for what to try.
    Please post here or send message to [Personal Information Removed]
    This question was solved.
    View Solution.

    Last night I finally got it to work.  I removed the printer fully from the PC and rebooted. I turned off the printer. I ran a cable to the router (cable modem). I reset the router, which then assigned an IP address to the printer. I changed the security settings on the router to use WEP instead of WPA. I ran the HP printer setup program---and it finally presented me with the "provide SSID" screen.  The program ran successully. I printed a test page. I changed the router secuirty back to WPA2. I printed another test page.     I tried rebooting everything and printed again.  I also tried removing the cable and then printing again---the printing failed.
    In short, I needed to do two things:  connect a cable and change the router temporarily to WEP for the install.
    In my case, my printer is close enough to the router to run the cable.  A little disappointing that the true wireless won't work, but I can print wirelessly from my laptop. 
    I've seen how a lot of people have had the same issue I had, and how HP is of no help in solving this issue.  I'm convinced the printer has a flaw.  I hope my posts will be of benefit to a few people having the same issue.

  • Have an Epson workforce 600 worked fine until new router and Lion installed.  Now when I try and scan with the all in one I get a "POWER PC APPLICATIONS ARE NO LONGER SUPPORTED"  and my IMAC does not recognize that the Epson is a multi function printer.

    Installed a new router.  Installed Lion. Have an Epson Workforce 600 multi function printer.  Two problems. 
    1. I cannot get Lion to recognize that the Epson is a multi function printer.  There is no scan option on the "print/Scan" popup window.
    2. When I try and use the epson scan utility I get:  POWER PC APPLICATIONS ARE NOT LONGER SUPPORTED.
    I have tried EPSON support with no real luck as they say it is Apple upgrades that are the problem.
    Apple support was quite rude..said it was not their problem and that I should call epson.  Told the I did but it made no difference just got the same reply.
    Have no idea what to do.....seems I cannot find out which multi-function printers Lion supports. 

    daolbuzzard1 wrote:
    Epson Workforce 600 multi function printer
    Not to give you another run around, but you need new printer drivers from Epson for your printer so it works in Lion.
    Now it could be that they are working on it, or that they could have decided not to provide new drivers in order for you to force upgrade.
    The only thing a user can do is decide very carefully BEFORE upgrading to a newer Apple operating system, make sure that all their current hardware and software works and make a decision for themselves.
    Since you upgraded to Lion, you can go back to Snow Leopard and your PPC software will work.
    Do you need instructions?

Maybe you are looking for

  • New to MAC  NEED HELP

    Hey guys, thanks for reading....I woke up this morning and my itunes library was gone. Also, I know in a windows os, when you have anything stored on a seperate drive, a media player only plays those tracks. My itunes wants to copy everything to the

  • Re-building iWeb site from deployed website?

    Hi, As described in my earlier post (http://discussions.apple.com/thread.jspa?threadID=1249767), I managed to lose some files during an aborted effort to upgrade to Leopard. Included were my iWeb sites. Now the sites themselves are still available on

  • D11 Cross-Platform Shockwave Issue

    I just did a build of a Shockwave version of a freeware game that I created in Director. I'm using the DCR and HTML page generated by Director 11, but while it loads and works just fine on a Mac, it doesn't load on my Windows computer (or on my Mac u

  • EAN/UPC field in sales order is grey field

    Dear all, when i am creating Sales Order, EAN/UPC field is grey field i cannot enter any value in that. I want to used these field, then how i can use these field. Also is there any specific purpose for the EAN/UPC field,where it is used. Regards, PM

  • Deleting PSA data  using process chain doesn't delete records from psatable

    Dear All, We have an issue where by the process chain runs and deletes the PSA records and upon checking that's what we thought it had done from the monitor but it didn't actually delete the records from the PSA Tables! Does anyone have any clues abo