Problem with printing after migrating from 3.5 to 4.1

Hello everyone,
I'm currently working on an application that was recently migrated (by someone else) from Flex 3.5 to Flex 4.1 and I discovered the printing doesn't work properly anymore. So I tried to find out what the problem was and after many tries, I came to the conclusion that the problem was within the following line:
printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
(Of course "myPrintView" is not the real name used in the app but that's not important)
I searched on the Internet and this line is supposed to work in 4.1, isn't it? However, the printed version cuts my PrintAdvancedDataGrid approximately in half. I tried to change the width property from myPrintView but the grid is still cut at the same place, its cells are just distorted.
FYI, you can find a part of the code right here:
var printJob:FlexPrintJob = new FlexPrintJob();
                    if (printJob.start()) {
     //A lot of code to build the print view
myPrintView.width=1280;
printJob.addObject(myPrintView,FlexPrintJobScaleType.MATCH_WIDTH);
printJob.send();
myPanel.removeChild(myPrintView);
Any help would be appreciated.
Regards,
Gudril

While looking for a solution on the Internet I found some people having troubles because of the structure of their AdvancedDataGrid. My problem doesn't come from any example I've seen but maybe it's still linked to that, so here's an AdvancedDataGrid that's being printed in my app:
                                                <mx:PrintAdvancedDataGrid dataProvider="{dataRayon}" sortExpertMode="true" id="dataGridRayon" width="100%" itemClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" itemDoubleClick="dispatchEvent(new KpiEvent(DATAGRID_RAYON_CLICK,event));" creationComplete="resizeGridRayon();" >
                                                  <mx:columns>
                                                            <mx:AdvancedDataGridColumn id="rownumRayon"  width="25"  sortable="false" labelFunction="getRowNumRayon" fontWeight="bold"/>
                                                            <mx:AdvancedDataGridColumn id="rayonCoRgrp" textAlign="center" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'CODE')}" dataField="co_rgrp_produits" />
                                                            <mx:AdvancedDataGridColumn textAlign="left" width="240" headerText="{resourceManager.getString('rentabilitePanel', 'SOUS_SECTEURS')}" dataField="libelle" id="hTDataGridRayon" />
                                                            <mx:AdvancedDataGridColumn id="rayonMeVenteHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MONTANT_VENTE_HT')}" dataField="meVenteHt" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'meVenteHt');}}"  />
                                                            <mx:AdvancedDataGridColumn id="rayonMargeAvtDem" textAlign="right" width="75" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_AVT_DEM')}" dataField="margeAvtDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDem');}}"  />
                                                            <mx:AdvancedDataGridColumn id="rayonPMargeAvtDem" textAlign="right" width="80" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_AVT_DEM')}" dataField="margeAvtDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAvtDemP');}}"  />
                                                            <mx:AdvancedDataGridColumn id="rayonDemarqueHt" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'DEMARQUE_HT')}" dataField="demarque" formatter="{currencyFormatterFloat1Dec}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarque');}}"  />
                                                            <mx:AdvancedDataGridColumn id="rayonPDemarqueHt" textAlign="right" width="85" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_DEMARQUE_HT')}" dataField="demarqueP"  formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'demarqueP');}}"  />
                                                            <mx:AdvancedDataGridColumn id="rayonMargeAprDem" textAlign="right" width="100" headerText="{resourceManager.getString('rentabilitePanel', 'MARGE_APR_DEM')}" dataField="margeAprDem" formatter="{currencyFormatter}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDem');}}"  />
                                                            <mx:AdvancedDataGridColumn id="rayonPMargeAprDem" textAlign="right" width="115" headerText="{resourceManager.getString('rentabilitePanel', 'POUR_MARGE_APR_DEM')}" dataField="margeAprDemP" formatter="{pourcentageFormatterFloat}" sortCompareFunction="{function(obj1:Object, obj2:Object):int{return mySortFunc(obj1, obj2, 'margeAprDemP');}}"  />
                                                  </mx:columns>
                                        </mx:PrintAdvancedDataGrid>
I also realised I wasn't very clear on the outcome of my doPrint() function. When I said the grid was cut in half, I was talking about half the columns not showing on the printed version, not half the rows. Actually even a column being cut in half. I hope these precisions made my problem a bit clearer and somebody will be able to help me in any way (even just hints).
Thanks for your help.
Regards,
Gudril

Similar Messages

  • Problem with servlet after migrating from OC4J to WebLogic 10.3

    I come across a problem when I was migrating from jDev 11g TP4 to production version in that step also server got changed from OC4J to webLogic.
    I am running java http servlet along other jspx pages. When everything was on OC4J there was no problem whit security on this servlet ( servlet was under same authorization automatically, and I was able to create new application module on this servlet by createRootApplicationModule
    ) but when I changed to WebLogic 10.3 I come across a numerous problems. First one is solved i managed to put the servlet under same authorization as jspx pages by
    *&lt;servlet&gt;*
    *&lt;servlet-name&gt;report&lt;/servlet-name&gt;*
    *&lt;servlet-class&gt;path.to.class&lt;/servlet-class&gt;*
    *&lt;security-role-ref&gt;*
    *&lt;role-name&gt;name&lt;/role-name&gt;*
    *&lt;role-link&gt;valid-users&lt;/role-link&gt;*
    *&lt;/security-role-ref&gt;*
    *&lt;/servlet&gt;*
    but when I trying to create new application module I get JBO-30003 error which is Caused by:
    oracle.adf.share.security.ADFSecurityAuthenticationException: JAAS login error.
    Invalid null input: name
    Has anybody any idea what I am doing wrong?
    Thank you for your help, Rok Kogov&scaron;ek

    for example:
    web.xml
    <security-role>
    <role-name>yourrole</role-name>
    </security-role>
    weblogic.xml
    <security-role-assignment>
    <role-name>yourrole</role-name>
    <principal-name>wlsuser</principal-name > <!-- wlsuser is define at wls console-->
    </security-role-assignment>

  • Problem with PK after migration from Access

    I converted an Access 2000 db to Oracle 8.1.7, and now Access is having trouble recognizing the correct primary key for one table.
    The actual primary key on the table is Column A, which is a number (an autonumber, in fact). On the Oracle side, this shows up as the PK. But when I go back to Access and link the table, a different column is identified as the PK! A TEXT column, no less! And I can't get Access to recognize the correct column as the PK, which is keeping me from loading data to that table. Has anyone else seen this happen? And maybe can offer some advice?
    I already dropped/rebuilt the PK on the Oracle side, that didn't help. And I've re-converted the database again, just to make sure there were no problems in the conversion.

    Found a workaround. I'll share it, in case anyone else experiences this:
    The PK and index looked FINE on the Oracle side, but what I had to do was this: I had to drop the unique index on the column that Access thought was the PK (I'll call it Column B). Then I dropped the PK and index on the actual PK (Column A). Then I re-created the PK and index on Column A. Voila! Access now knew that column A was the PK. Then I was able to re-create the unique index on column B, and Access didn't lose its way.

  • Problem in mapping after migration from 3.x to 7.x infosource

    HI Experts,
    I have a problem while mapping the data source 2lis_03_bf to info cube 0ic_cs01.
    we have a flow like this now after  migration done.
    Datasource->transfer rules->infosource->transformation->info cube
    Now we dont require infosource and its respetive transformation, we are going to map directly from data source to info cube.but we have routines available in info cube related transformation.i.e. coming from infosource to info cube .
    I would like to create a new transformation directly from Datasource to info cube but all the source fields are not available in target cube. How to map them.do i have to map all the target fields or i have to map according to the transfer rules target fields. what is the funda to make a transformation and mapping the source and target fields.
    Could anyone please through some light here..
    Thanks much in advance.

    sunil kumar wrote:
    Hi,
    >
    > As said above convert transfer rules to transformations (right click on transfer rules -> additional prop -> create transformation)
    >
    > Then right click on datasource -> Migrate
    >
    > After doing this, your datasource will be linked to Infocube directly with one transformations automatically.
    >
    > Regards,
    > Sunil
    Hi Sunil & Sravan,
    THanks for ur quick reply.As you said click on transfer rules and create transformation.As i can see in my system i have a transformation from data source to infosource .i.e. starting with RSDS_  and then another transformation from info source to info cube.i.e. starting with TRCS_  .  what i did was created a transformation by right click on info cube and by giving data source name as 2LIS_03_BF .this is a manual transformation i am mapping manually.Is this a correct way? Please tell me how to do it.
    as i have to do this immediately.
    Thanks in advance

  • Problem in Themes after Migrating from APEX 4.0 to 4.2

    Dear Friends,
    Recently we migrated from APEX 4.0 to 4.2. There were no errors during migration. But after migration we observed that any application with Simple Red (Theme No.1) and Scarlet (Theme 21) stopped working properly. i.e. Template button Red will not perform any task. Even changed the template of the button doesn't work.
    Can any one suggest steps to solve the problem?
    Thanks in Advance.
    Krunal

    Hi Prabodh,
    This is the error i am getting
    Timestamp: 11/30/2012 5:03:02 PM
    Error: TypeError: ((f.event.special[r.origType] || {}).handle || r.handler).apply is not a function
    Source File: http://testserver:8000/i/libraries/apex/minified/desktop_all.min.js?v=4.2.0.00.27
    Line: 3
    No i didn't modify any template.

  • Problems with saving after Migration on ApEx 2.2

    Hi,
    we migrated from HTMLDB 2.0 to ApEx 2.2.
    Now our end-users have problems.
    They want to save their changes and after pressing the change button an empty page appears.
    So they go back with the internet explorer back-button and press the save button again. Now the changes are saved in the database.
    Does anybody have the same problem?
    Is there a solution to fix this problem?
    Thank you in advance
    Ulrike

    Yes thank you very much. This is the solution.
    But it's a pitty that we have to change the CSV endcoding option for all our applications after migration manually.
    Kind regards Ulrike

  • Problem with rules after migration

    After migration of some mailboxes from Exchange 2007 to 2010 we have a problem managing rules. When trying to create or look at rules from OWA we get an Mapi error (See below). Also, When checking the problem user rules from Exchange Management
    Console "get-inboxrule -mailbox <User>", it fails with a Doctor Watson error (also below) Witch is similar to the one from OWA. 
    Any help would be much appreciated. 
    Mapi Error:
    MapiExceptionNotFound: Unable to query table rows. (hr=0x8004010f, ec=-2147221233) Diagnostic context: Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=104] Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=1366][latency=15] Lid: 23226 --- ROP Parse Start --- Lid: 27962 ROP: ropGetRulesTable [63] Lid: 27962 ROP: ropSetColumns [18] Lid: 27962 ROP: ropQueryRows [21] Lid: 31418 --- ROP Parse Done --- Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=53] Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=168][latency=0] Lid: 23226 --- ROP Parse Start --- Lid: 27962 ROP: ropLtidFromId [67] Lid: 17082 ROP Error: 0x8004010F Lid: 17505 Lid: 21921 StoreEc: 0x8004010F Lid: 27962 ROP: ropExtendedError [250] Lid: 1494 ---- Remote Context Beg ---- Lid: 26426 ROP: ropLtidFromId [67] Lid: 43747 dwParam: 0x5 Lid: 55653 StoreEc: 0x8004010F Lid: 1750 ---- Remote Context End ---- Lid: 26849 Lid: 21817 ROP Failure: 0x8004010F Lid: 30894 Lid: 24750 StoreEc: 0x8004010F Lid: 29358 Lid: 27950 StoreEc: 0x8004010F Lid: 32190 Lid: 21950 StoreEc: 0x8004010F Lid: 27070 Lid: 22974 StoreEc: 0x8004010F Lid: 18686 Lid: 1136 StoreEc: 0x8004010F Lid: 24318 Lid: 32510 StoreEc: 0x8004010F
    Doctor Watson:
    WARNING: An unexpected error has occurred and a Watson dump is being generated: MapiExceptionNotFound: Unable to query
    table rows. (hr=0x8004010f, ec=-2147221233)
    Diagnostic context:
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=104]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=1366][latency=15]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropGetRulesTable [63]
    Lid: 27962 ROP: ropSetColumns [18]
    Lid: 27962 ROP: ropQueryRows [21]
    Lid: 31418 --- ROP Parse Done ---
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=53]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=168][latency=0]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropLtidFromId [67]
    Lid: 17082 ROP Error: 0x8004010F
    Lid: 17505
    Lid: 21921 StoreEc: 0x8004010F
    Lid: 27962 ROP: ropExtendedError [250]
    Lid: 1494 ---- Remote Context Beg ----
    Lid: 26426 ROP: ropLtidFromId [67]
    Lid: 43747 dwParam: 0x5
    Lid: 55653 StoreEc: 0x8004010F
    Lid: 1750 ---- Remote Context End ----
    Lid: 26849
    Lid: 21817 ROP Failure: 0x8004010F
    Lid: 30894
    Lid: 24750 StoreEc: 0x8004010F
    Lid: 29358
    Lid: 27950 StoreEc: 0x8004010F
    Lid: 32190
    Lid: 21950 StoreEc: 0x8004010F
    Lid: 27070
    Lid: 22974 StoreEc: 0x8004010F
    Lid: 18686
    Lid: 1136 StoreEc: 0x8004010F
    Lid: 24318
    Lid: 32510 StoreEc: 0x8004010F
    MapiExceptionNotFound: Unable to query table rows. (hr=0x8004010f, ec=-2147221233)
    Diagnostic context:
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=104]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=1366][latency=15]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropGetRulesTable [63]
    Lid: 27962 ROP: ropSetColumns [18]
    Lid: 27962 ROP: ropQueryRows [21]
    Lid: 31418 --- ROP Parse Done ---
    Lid: 55847 EMSMDBPOOL.EcPoolSessionDoRpc called [length=53]
    Lid: 43559 EMSMDBPOOL.EcPoolSessionDoRpc returned [ec=0x0][length=168][latency=0]
    Lid: 23226 --- ROP Parse Start ---
    Lid: 27962 ROP: ropLtidFromId [67]
    Lid: 17082 ROP Error: 0x8004010F
    Lid: 17505
    Lid: 21921 StoreEc: 0x8004010F
    Lid: 27962 ROP: ropExtendedError [250]
    Lid: 1494 ---- Remote Context Beg ----
    Lid: 26426 ROP: ropLtidFromId [67]
    Lid: 43747 dwParam: 0x5
    Lid: 55653 StoreEc: 0x8004010F
    Lid: 1750 ---- Remote Context End ----
    Lid: 26849
    Lid: 21817 ROP Failure: 0x8004010F
    Lid: 30894
    Lid: 24750 StoreEc: 0x8004010F
    Lid: 29358
    Lid: 27950 StoreEc: 0x8004010F
    Lid: 32190
    Lid: 21950 StoreEc: 0x8004010F
    Lid: 27070
    Lid: 22974 StoreEc: 0x8004010F
    Lid: 18686
    Lid: 1136 StoreEc: 0x8004010F
    Lid: 24318
    Lid: 32510 StoreEc: 0x8004010F
    + CategoryInfo : NotSpecified: (:) [Get-InboxRule], MapiExceptionNotFound
    + FullyQualifiedErrorId : Microsoft.Mapi.MapiExceptionNotFound,Microsoft.Exchange.Management.RecipientTasks.GetInb
    oxRule
    -FireLite

    Hi,FireLite,
    What kind of the migration?
    If it was cross forest or involved PST files then rules rarely come across correctly and should be recreated.
    If it was simply install Exchange 2010 and use move mailbox, then rules should have moved with the mailbox.And please provide more information like below:
    1)Does this rule problem happen to all moved mailboxes or just part of them?
    2)Would you please verify that you have successfully moved these problem mailbox?
    3)Can you manage the rule in outlook for them?Have you tried to create a new rule to see if it works for these mailbox in OWA or Outlook?
    Please try to move the mailbox back to Exchange 2007,then move it to another mailstore,after that migrate it again to Exchange 2010 to see if it works.
    And here are some resolved cases with similar error for your reference.
    http://social.technet.microsoft.com/Forums/en-US/exchange2010/thread/3c795b8f-0b60-4346-b8f1-eb8c4f9c9cb0
    http://social.technet.microsoft.com/Forums/en/exchangesvradminlegacy/thread/3cf2360f-0a4c-4c7e-87c9-6726e3dc34fd
    Regards,
    Sharon
    Sharon Shen
    TechNet Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question.

  • Troubleshooting problems with printing PDF's from Revit and Cad files

    I am unable to print a readable pdf from AutoCad and Revit.  Any Suggestions?  I do not have problems with Microsoft or Adobe products..Just AutoCad.  I have already spoken with my AutoCad dealer and they concluded it was an Adobe issue.

    How was the PDF file created? With the Adobe plug-in to AutoCAD?
    If you can provide some samples, we could look at the files and determine the problem. And FWIW, I doubt that your AutoCAD dealer has the competence to conclude where the problem is with a PDF file.
                - Dov

  • Text problems with printing to PDF from AutoCAD 2011

    When we print to PDF from AutoCAD, the text in the PDF looks wrong/bad.  It takes on a jagged appearance and doesn't look anything like what the font is supposed to look like.  Any suggestions?

    Yup. It's not that it won't do it, it is just limited to 129". Thanks for the thought. When you print in Acrobat you can see the document size and the page size the program is assuming below the print window. The properties have been set, document adjusted, page size customized. It works exactly as it's designed (according to Adobe help, their knowledge base, etc) but only up to 129". Can do it at any size, decminal, etc. up to and including 129 inches. Prints beautiful, doesn't get chopped no issues at all. Just hits a wall at 129". Been doing it with blueprints for years. Just never needed it this big. In my case it's not a printer/plotter limitation. It's the Adobe PDF printer which is advertised to be able to cusomize page size to 15,000 inches.
    Tried customizing in post script, no luck there either.
    Again, I very much appreciate the suggestions....
    S.

  • Problem with image after exporting from Lightroom 5

    Good day. Please can someone help me? I have Lightroom 5, and I have a problem in exporting edited images. At issue, do all the necessary settings and retreat noise and sharpness adjustment by brush adjustment tool, however, to export the image, noise and some minor adjustments are lost. Because in Lightroom visualize the way you wish, but after export, is not it the same? How do I get a different result? Thank you all!

    I have the same problem!
    Something got broken with my Lightroom 5.6 (Windows 7Pro)  two days ago and I don't see any adjustments made with brush after exporting photos!
    It's not a problem of library or RAW files - the same, work fine on other computers (iMac).
    I tried to clean the computer with CC Cleaner Tool, and install everything again, but it didn't help.
    I already lost 2 days trying to fix it, and I don't want to format the drive and install Windows again
    Can anyone help?

  • Time-out problems with RV320 (after upgrade from RV042)

    config:
    dual wan
    WAN1: 4G router (DHCP) - approx 25Mbit/ 8Mbit
    WAN2: PPOE (DSL) - 1 Mbit/ 0.2 Mbit
    worked with a RV042 before and upgraded to a RV320 now.
    all other things are unchanged.
    3 problems - 2 solved/ not critical - one still open:
    a) not critical:  DHCP Status does not include all devices (changing view - but all-time problem)
    I would suspect a software bug.... DHCP itself works perfectly/ IPs are assigned (just not shown in status)
    b) solved (at least for now):  internet connection featured time-outs; after many tries, disabling the SPI in the firewall helped
    btw: this only happend for the WAN1 - WAN2 worked  (or is that slow that the additonal wait time did not matter ;-)
    c) very annoying: exchange connection (from Outlook client to external exchange) still has time-outs (mostly the whole mail client hangs/ ends to be restarted).
    As soon as I disable WAN1, it works!  But it´s not the LTE WAN itself - switching back to the RV042 does not show the same symptom.
    I tried: include IP into local DNS (in general I work with google DNS servers - but changing that does not help either), opening all traffic for teh realevant IPs and disabling the firewall completely.  no positive results....
    thanks for any hints....

    I agree with you on a, probably a bug of some sort.
    b is an issue I've seen before, and even on similar bandwidth (25/5) on my rv016.  What was able to figure out is that the carrier (ISP) is sending about 4k/sec of ICMP packets to the router, which in turn makes the router think it's under attack so it drops the connection.  As you can tell, disabling the SPI helps.  For me, putting another router in front of my rv016 (on 2 of 3 wans) was my only 'permanent' solution.
    c sounds like there's a protocol binding/static route in the rv042 that you need to add to the rv320.  I'd check that first.
    Huntsville's Premiere Car and Bike e-magazine: www.huntsvillecarscene.com

  • Problem with printing after upgrade

    Hi, all.
    I recently upgrade from 4.10 to 5.0 sp6a, and have this problem.
    When i print anything, it doesnt start on the printer until i get out the
    program.
    The programas are all in clipper. This did not happend before with 4.10,
    and the programs
    hasnt been changed, the captures are the same. Any idea?
    Thanks
    Using M2, Opera's revolutionary e-mail client: http://www.opera.com/m2/

    Leonardo,
    Your problem is probably client related and due to the fact how the
    capture command may behave differently based on the client OS and the
    Novell client version.
    Did you swap the workstations or upgrade the Novell client at the same
    time you changed the server?
    In any case, we need more detailed information on how your client side
    operates:
    1) What client OS are you using?
    2) What client version?
    3) Did you change anything on the client side?
    4) How are you capturing your printer ports?
    Marcel Cox
    Novell Support Connection SysOp
    http://support.novell.com/forums/

  • Printing after Migration from Windows to Linux

    We have just migrated 11.5.2 from Windows to Linux. I am not sure how to setup printers. In windows we simply had a UNC pointing to our Windows Printer Server and the Printers Queue. This was in the Printer Column and the Type was HPLJ4SI in the Type column under Install > Printer > Register....like this:
    \\MYCOPRT03\PTS2245
    Not sure what to put in linux. Currently we are getting this error:
    Executing request completion options...
    ------------- 1) PRINT   -------------
    Printing output file.
    Request ID : 7457024
    Number of copies : 1
    Printer : \\MYCOPRT03\PTS2245
    /bin/sh: print: command not found
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 127
    Cause: AFPPRN received a return code of failure from the OSD routine FDUPRN. Program exited with status 127.
    Action: Review your concurrent request log file for more detailed information.

    Chris,
    It appears that these links are not savable.You need to refer to the docs in those threads for the steps you have to follow to setup a printer on Linux/Unix.
    How to Setup Printer for Oracle Applications 10.7 - 11.5.x Quick Reference [ID 123140.1]
    How to Test an Initialization String Outside of Oracle Applications [ID 106186.1]
    How to setup Printer Arguments Within Oracle Applications [ID 73804.1]
    Oracle Applications Character Printing [ID 112172.1]
    lp: The printer or class was not found.
    APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1As applmgr, source the application env file and issue "which lp" and make sure it is accessible by the OS user. If the command is available, then it is something with your printer definition -- Issue "system-config-printer" from the command prompt to launch the Printer Configuration Tool and configure your printer at the OS level.
    Thanks,
    Hussein

  • Problem locating files after migration from PC to Mac

    I have just migrated files from my PC to my Mac.  I have logged into the new user account but I finder is telling me there are no files located in the new user.
    It also doesnt appear that a "user" folder has been created for the new user which may be the problem.
    Thanks

    Depending on how you migrated the files, your 'old' Windows account should have been created on your MBP.
    How did you migrate the files? Using Migration Assitant? Mac or PC version?
    Clinton

  • Problem with CM after upgrading from 4.0.19 - 4.1.1

    I upgraded my Edge-WAE and Core-WAE from 4.0.19 to 4.1.1 and it was successful
    However, after upgrading the CM, I got the message "service temporarily unavailable" when access the web page.
    The console showed: "Stopping the service 'cms_cdm' because it is restarting too often."
    When I quried the CMS service, I got:
    CMS services information :
    Service cms_httpd is running
    Service cms_cdm is not running
    What may be the problem?

    I had the same problem and opened a TAC case. It seems that others are reporting the same trouble when using the CM GUI to upgrade the CM. For some reason it doesn't back up the database correctly and it gets corrupted, causing the cms_cdm to crash and then shut down.
    I was told to roll back to 4.0.19, de-register all the non-CM devices using a forced de-register, then from the CM CLI, ftp the new 4.1.1 image over, reload, and re-register all the devices.
    Luckily my setup was in the lab and not production. There may be a better/another way to do it, but that's the way I got it done.

Maybe you are looking for

  • Tax statement item missing for tax code V0_During MIRO

    Hi, I am currently working on 6.0 for a client in UAE. I am getting the above error with tax code while passing MIRO. The tax code dwfined is a 0% tax code. System throws an error as ; Tax statement item missing for tax code V0 Message no. FF805 Diag

  • Adding text from Microsift Word to a slideshow1

    In previous slideshows, I have typed a title on Word, printed it out, taped it on a wall and then photographed it with my digitel camera and downloaded the picture to my slideshow. Is there any way to go directly from Word to iPhoto and the slideshow

  • How do I save my keynote presentations in a different spot?

    Since Lion, it seems like we are not able to save a different 'version' of Keynote, save it into another folder, or other such things. Of course, these can all be done surreptisiously, but why has the 'save as' function been removed. Luckily, we can

  • Open/Close/Fullscreen Slideshow Script?

    Hello everyone! I work for a TV production company as a graphic designer, and recently my boss came to me and asked me about something in Photoshop. He wanted to know if it's possible to run a slide show type thing where it would open an image, set i

  • FM to upload TAB DELIMITED TEXT file into Internal table.

    Hello Friends, The FM 'ALSM_EXCEL_TO_INTERNAL_TABLE' is used to upload EXCEL file into a Internal table. Is there any FM which performs the simillar operation on TAB DELIMITED TEXT FILE. Thanks in advance! Ashish