Need help to enable trace/logging for java debugging CRM 5.0 WebShop

Dear experts,
I'm new to sap, and i'm working on CRM 5.0 WebShop J2ee application with nwdi.
I have to add a new functionnality, which has to call a custom FM in CRM. This FM has been tested and is OK.
I have read the 2 files SAP_ISA50_DevAndExtGuide.pdf and ISA50_DevAndExtTuts_v1_0.pdf which have explain to me the process flow and organization of the framework.
By helping me with the tutorials, I wrote all the files for my functionnality, from the jsp with the form, to the custom business backend with the call of the FM with parameters and JCo connection. (+ custom BOM, custom BO, BE interface, BE CRM implementation)
Everything builds without error, and I deploy the application on my test env.
Then I go to my webapp, I call the custom jsp with form, I put values, then I validate the form, but my FM is not called, and I don't know where is the problem, because I can't see a trace of the process flow, to know where is the error.
By searching in this forum I found 2 notes that explain how to activate debug trace for all the application, one note for systems before SP11 and another for systems with SP11 and higher. But I don't know how to see the patchlevel of the system (I went to system information of the j2ee server and the on ly thing I can notice is below the server0 properties : Kernel Version:  7.00 PatchLevel.
In these notes I read about Visual Administrator : I found this directly on the server with remote desktop, but the progress bar at the bottom of the window don't arrives to 100% and I can't see the properties and values of the parameters for the Log.
I went to XCM too, and set appinfo and logfiledownload to true, then went to Logging into e-commerce administration console : in the Log configuration tab, I can create new configurations but the effective severity automatically sets to error, even if I set All or Debug manually ; in the session log tab, i tried to launch the application, then start log, then validate my form, then stop log, but I can't find anything about the trace of the process flow in the generated file.
Please help, I have to finish this for end of week and I'm alone ...
PS I'm french, and don't speak very well English please excuse me.
Thank you very much.
J. Lag.

Hi
For logs follow this note no[Creation of logs for B2B and B2C Release 5.0|https://service.sap.com/sap/support/notes/1090753]
Follow this code for calling custom Function Module
1) ZBOM.java
public class ZBOM extends DefaultBusinessObjectManager implements BOManager, BackendAware {
public static final String ZCUSTOM_BOM = "ZCUSTOM-BOM";
private ZFunction func;
public ZBOM() { }
public ZFunction getFUNC() {
  if (func== null) {
   func= new ZFunction();
   assignBackendObjectManager(func);  }
  return func; }
public void release() { }
2) ZFUNCTION.java
public class ZFunction extends BOBase implements BackendAware {
private ZInterface backendInterface;
private BackendObjectManager bem;
private ZInterface getInterface() {
  if (backendInterface == null) {
   try {
    backendInterface = (ZInterface) bem.createBackendBusinessObject("ZCustomBO");
   } catch (BackendException e) {
  return backendInterface;
public void setBackendObjectManager(BackendObjectManager bem) {
  this.bem = bem;
public String getCustomFunc(String value) {
  try {
   return getInterface().getIncotermListvalue) ;
  } catch (RuntimeException e) { return ""; }
3)ZINTERFACE.java
public interface ZInterface extends BackendBusinessObject {
     public  String getCustomFunc(String value);
4) ZBACKEND.java
public class ZBackend extends BackendBusinessObjectBaseSAP implements ZInterface {
     String exportvalue="";
     public String getCustomFunc(String value) {
          try {
               Function func =getDefaultJCoConnection().getJCoFunction("Z_CUSTOM_FUNCTION_MODULE");
               func.getImportParameterList().getField("IMPORTPARAMETER").setValue(value);
               getDefaultJCoConnection().execute(func);
               exportvalue = func.getExportParameterList().getString("IMPORTPARAMETER");
          } catch (Exception e) {
               return exportvalue ;
5) WEB_INF/xcm/customer/modification/bom-config.xml
<BusinessObjectManager name="ZCUSTOM-BOM" className="com.sap.isa.custom.ZBOM"/>
6) WEB_INF/xcm/customer/modification/bom-config.xml
<config isa:extends="../config[@id='crmdefault']">          
   <businessObject type="ZCustomBO"
                name="ZCustomBO"
                className="com.sap.isa.custom.ZBackend"
                connectionFactoryName="JCO"
                defaultConnectionName="ISAStateless"/>           
</config>
Regards,
[Sateesh Chandra|http://sateeshchandrach.googlepages.com/isa]

Similar Messages

  • Need help to get processing log for mass invoice output

    Hi Experts,
    I have one requirement,
    My customer will send invoices to their customers in bulk on monthly basis. The customers will receive the invoices through emails, fax or printout. Now the issue is when they send the output to the customers there might be some failures in delivery because of some reason to some customers. I want to capture all the invoices, customers, medium and error text and want to display as a report.
    We can see the processing log for a single invoice in VBFA transaction but I want to display one consolidated list where the user can see all the error log records at one place.
    I know some tables where we can see some data in NAST, NACH but I would be greatful to you if you provide some more information about this.
    Please provide whatever info you have.
    Regards,
    Dileep.

    Hi Study abap,
    go through this code and use the HTEXT fm accordingly to ur requirement. This is just a sample kind of thing which will help u to write s-kunnr in htext.
    SELECT-OPTIONS: S_MATNR FOR PBIM-MATNR,
    S_WERKS FOR PBIM-WERKS.
    DATA: BEGIN OF HTEXT.
    INCLUDE STRUCTURE THEAD.
    DATA: END OF HTEXT.
    DATA: BEGIN OF LTEXT OCCURS 50.
    INCLUDE STRUCTURE TLINE.
    DATA: END OF LTEXT.
    DATA: BEGIN OF DTEXT OCCURS 50.
    DATA: MATNR LIKE PBIM-MATNR.
    INCLUDE STRUCTURE TLINE.
    DATA: END OF DTEXT.
    DATA: TNAME LIKE THEAD-TDNAME.
    SELECT * FROM PBIM WHERE WERKS IN S_WERKS.
    MOVE PBIM-BDZEI TO TNAME.
    CALL FUNCTION 'READ_TEXT'
    EXPORTING
    CLIENT = SY-MANDT
    ID = 'PB'
    LANGUAGE = 'E'
    NAME = TNAME
    OBJECT = 'PBPT'
    ARCHIVE_HANDLE = 0
    IMPORTING
    HEADER = HTEXT
    TABLES
    LINES = LTEXT
    EXCEPTIONS
    ID = 1
    LANGUAGE = 2
    NAME = 3
    NOT_FOUND = 4
    OBJECT = 5
    REFERENCE_CHECK = 6
    WRONG_ACCESS_TO_ARCHIVE = 7
    OTHERS = 8.
    LOOP AT LTEXT.
    IF LTEXT-TDLINE NE ''.
    MOVE LTEXT-TDLINE TO DTEXT-TDLINE.
    MOVE PBIM-MATNR TO DTEXT-MATNR.
    APPEND DTEXT.
    ENDIF.
    ENDLOOP.
    ENDSELECT.
    LOOP AT DTEXT.
    WRITE:/ DTEXT-MATNR, DTEXT-TDLINE.
    ENDLOOP.
    Kindly reward fi found helpful.
    cheers,
    Hema.

  • P45 Platinum, Need help in enabling vt-x for virtualization

    Hi,
    I have the following system.
    Intel Q9550 Core 2 Quad @ 2.83Ghz, with a MSI P45 Platinum board, 8GB DDR2 800 Mhz Memory. I need to have the vt-x enabled in the bios and i dont see that option anywhere in AMI bios screens. I need this as i am trying to set up Microsoft Hyper-V, and this cannot be done unless this feature set is enabled on the mother board.
    I dont know whether flashing my BIOS will help in this case, and if yes kindly help me in getting the right BIOS update.
    Let me know if any other details are needed.
    Regards,
    Vaibhav

    Hi Jimbode,
    I have read alot about vt-x now, and I also have tried every tip to enable it permanently, and I have also tried the link that you have posted. But it didn't work for me.
    The sleep and wakeup thingy works for me, but I consider it not as solution because it's only for programs started after the wakeup. vt-x would greatly enhance bootup time when enabled.
    It's very disppointing by Apple, that they don't comment on this or try to fix it, but then again, this is the Apple way.

  • Need help interpreting Kernel Panic Log for MBP w/ Retina Display

    So, I keep getting kernel panics on my new MBP w/ Retina Display. I'm not quite sure how to interpret the log, so I would appreciate your help . I just want to confirm that this is an issue w/ Google Chrome and not something else?
    Interval Since Last Panic Report:  461718 sec
    Panics Since Last Report:          2
    Anonymous UUID:                    BA442D2B-0449-47CA-B3E4-8BD811A74854
    Sat Aug  4 00:39:48 2012
    panic(cpu 3 caller 0xffffff80002c4794): Kernel trap at 0xffffff7f823e39b1, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000000084, CR3: 0x000000005657404e, CR4: 0x00000000001606e0
    RAX: 0xffffff7f823e3a84, RBX: 0x0000000000000077, RCX: 0x000000000000007c, RDX: 0x0000000000b4aba7
    RSP: 0xffffff80ea1f39b0, RBP: 0xffffff80ea1f39c0, RSI: 0xffffff8015e06600, RDI: 0xffffff80230c7000
    R8:  0x0000000000000075, R9:  0xffffff7f8243d380, R10: 0xffffff80ea1f392c, R11: 0xffffff80ea1f3930
    R12: 0xffffff8016c50988, R13: 0xffffff80230c7000, R14: 0xffffff80d3a10000, R15: 0xffffff80230c7000
    RFL: 0x0000000000010282, RIP: 0xffffff7f823e39b1, CS:  0x0000000000000008, SS:  0x0000000000000010
    CR2: 0x0000000000000084, Error code: 0x0000000000000002, Faulting CPU: 0x3
    Backtrace (CPU 3), Frame : Return Address
    0xffffff80ea1f3660 : 0xffffff8000220792
    0xffffff80ea1f36e0 : 0xffffff80002c4794
    0xffffff80ea1f3890 : 0xffffff80002da55d
    0xffffff80ea1f38b0 : 0xffffff7f823e39b1
    0xffffff80ea1f39c0 : 0xffffff7f823e7f7d
    0xffffff80ea1f3b00 : 0xffffff7f823e4ed4
    0xffffff80ea1f3b60 : 0xffffff800065593e
    0xffffff80ea1f3b80 : 0xffffff800065621a
    0xffffff80ea1f3be0 : 0xffffff80006569bb
    0xffffff80ea1f3d20 : 0xffffff80002a3f08
    0xffffff80ea1f3e20 : 0xffffff8000223096
    0xffffff80ea1f3e50 : 0xffffff80002148a9
    0xffffff80ea1f3eb0 : 0xffffff800021bbd8
    0xffffff80ea1f3f10 : 0xffffff80002af140
    0xffffff80ea1f3fb0 : 0xffffff80002dab5e
          Kernel Extensions in backtrace:
             com.apple.driver.AppleIntelHD4000Graphics(7.2.8)[6B02D782-A79F-399C-81FD-353EBF F2AB81]@0xffffff7f823db000->0xffffff7f82441fff
                dependency: com.apple.iokit.IOPCIFamily(2.7)[C0404427-3360-36B4-B483-3C9F0C54A3CA]@0xffffff 7f80829000
                dependency: com.apple.iokit.IONDRVSupport(2.3.4)[474FE7E9-5C79-3AA4-830F-262DF4B6B544]@0xff ffff7f8088d000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3.4)[EF26EBCF-7CF9-3FC7-B9AD-6C0C27B89B2B]@0 xffffff7f80854000
    BSD process name corresponding to current thread: Google Chrome He
    Mac OS version:
    11E2620
    Kernel version:
    Darwin Kernel Version 11.4.2: Wed May 30 20:13:51 PDT 2012; root:xnu-1699.31.2~1/RELEASE_X86_64
    Kernel UUID: 25EC645A-8793-3201-8D0A-23EA280EC755
    System model name: MacBookPro10,1 (Mac-C3EC7CD22292981F)
    System uptime in nanoseconds: 11003994580324
    last loaded kext at 7775308584: com.apple.driver.AppleHWSensor          1.9.5d0 (addr 0xffffff7f824ff000, size 28672)
    last unloaded kext at 164467861147: com.apple.iokit.IOEthernetAVBController          1.0.1b1 (addr 0xffffff7f818e9000, size 20480)
    loaded kexts:
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.ApplePlatformEnabler          2.0.5d3
    com.apple.driver.X86PlatformShim          5.0.0d8
    com.apple.driver.AppleHDA          2.2.3f13
    com.apple.driver.AppleMikeyDriver          2.2.3f13
    com.apple.driver.AppleUpstreamUserClient          3.5.9
    com.apple.driver.AudioAUUC          1.59
    com.apple.driver.AppleSMCPDRC          5.0.0d8
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.GeForce          7.2.8
    com.apple.iokit.IOBluetoothSerialManager          4.0.7f2
    com.apple.driver.AppleSMCLMU          2.0.1d2
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.AudioIPCDriver          1.2.3
    com.apple.driver.ApplePolicyControl          3.1.32
    com.apple.driver.AppleMuxControl          3.1.32
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHD4000Graphics          7.2.8
    com.apple.driver.AppleIntelFramebufferCapri          7.2.8
    com.apple.driver.BroadcomUSBBluetoothHCIController          4.0.7f2
    com.apple.driver.AppleUSBTCButtons          227.6
    com.apple.driver.AppleUSBTCKeyboard          227.6
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          33
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.0.4
    com.apple.driver.AirPort.Brcm4331          560.7.21
    com.apple.driver.AppleSDXC          1.2.2
    com.apple.driver.AppleUSBHub          5.0.8
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleAHCIPort          2.3.0
    com.apple.driver.AppleUSBEHCI          5.0.7
    com.apple.driver.AppleUSBXHCI          1.0.7
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.5
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.5
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          195.0.0
    com.apple.nke.applicationfirewall          3.2.30
    com.apple.security.quarantine          1.3
    com.apple.security.TMSafetyNet          8
    com.apple.driver.AppleIntelCPUPowerManagement          195.0.0
    com.apple.kext.triggers          1.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.2.1
    com.apple.driver.DspFuncLib          2.2.3f13
    com.apple.iokit.IOSurface          80.0.2
    com.apple.iokit.IOSerialFamily          10.0.5
    com.apple.iokit.IOAudioFamily          1.8.6fc18
    com.apple.kext.OSvKernDSPLib          1.3
    com.apple.driver.AppleHDAController          2.2.3f13
    com.apple.iokit.IOHDAFamily          2.2.3f13
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleGraphicsControl          3.1.32
    com.apple.driver.X86PlatformPlugin          5.1.1d6
    com.apple.driver.AppleSMC          3.1.3d10
    com.apple.driver.IOPlatformPluginFamily          5.1.1d6
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.nvidia.nvGK100hal          7.2.8
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.NVDAResman          7.2.8
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleUSBBluetoothHCIController          4.0.7f2
    com.apple.iokit.IOBluetoothFamily          4.0.7f2
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.4
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.4
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.driver.AppleUSBMultitouch          230.5
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.driver.AppleUSBMergeNub          5.0.7
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IO80211Family          420.3
    com.apple.iokit.IONetworkingFamily          2.1
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOAHCIFamily          2.0.8
    com.apple.iokit.IOUSBFamily          5.0.8
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.7.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          177.5
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.driver.DiskImages          331.7
    com.apple.iokit.IOStorageFamily          1.7.2
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.5
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    Model: MacBookPro10,1, BootROM MBP101.00EE.B00, 4 processors, Intel Core i7, 2.3 GHz, 8 GB, SMC 2.3f28
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D54333531533642465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (5.106.198.19.21)
    Bluetooth: Version 4.0.7f2, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM256E, 251 GB
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2512, 0x1d180000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0262, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8286, 0x1d181300 / 8

    Before you do that, go here: >System Preferences>Energy Saver & remove the check for automatic graphics switching:
    See if the panics stop.

  • Need Help to create new screen for RF Sapconsole

    Hi Guru's
    I'm new on RF (but some years in ABAP) since last week.
    I need help to create new screens for RF (SAPLLMOB).
    Can someone explain me the procedure to create screen (with ABAP code after) or perhaps someone have an exemple (simple or not) ?
    I have to develop 2 new screens with really few time.
    And, another subsidiary question :
    how SAP can transfert information between the flash gun and the screen i have developped.
    Is there some code to add to enable this functionality or it is include in SAPLLMOB on standard fields ????
    It's a new strange world for me today...
    Many thanks to everyone who can explain me
    Alain

    hi,
    I am facing this problem as well. Is there any reference to create the new screen?
    Hope someone can help! Thanks!
    Regards,
    Darren

  • How do I reorder songs in a playlist in the new itunes??? I can no longer just click and drag. When I click, it doesn't move!!!! Need help ASAP- trying to prepare for an aerobics class and need songs in a specific order!

    How do I reorder songs in a playlist in the new itunes??? I can no longer just click and drag. When I click, it doesn't move!!!! Need help ASAP- trying to prepare for an aerobics class and need songs in a specific order!

    Vera,
    Use View > View Options, and set 'Sort By" to "Manual Order."
    Then you will be able to drag-n-drop songs up and down the list.

  • Need help with a activation code for Adobe Acrobat X Standard for my PC,, Don't have older version serial numbers,  threw programs away,  only have Adobe Acrobat X Standard,  need a code to unlock program?

    Need help with a activation code for Adobe Acrobat X Standard for my PC, Don't have older Version of Adobe Acrobat 9, 8 or 7. 

    You don't need to install the older version, you only need the serial number from your original purchase. If you don't have them to hand, did you register? If so, they should be in your Adobe account. If not you really need to contact Adobe, though it isn't clear they will be able to do anything without some proof of purchase etc.

  • I need help getting new authorization codes for digital copies

    I need help getting new authorization codes for digital copies of movies. Can someone help me out?

    There's a lot of results in Google when you search for this but unfortunately refreshing the page doesn't seem to generate a different code anymore. Mine also says already redeemed

  • HT201401 Need help to enable my 3g iPhone which has been disabled due to forgotten passcode

    HI....Need help to enable my3G iPhone which has been disabled due to forgotten passcode.Thank you

    If you forgot your passcode, restore the phone on the last computer it was synced with. If you do not have access to the last computer it was synced with, you will have to force it into recovery mode and restore as a new device.  See http://support.apple.com/kb/HT1212.

  • I need help in Downloading Adobe Elements for my Mac & Adobe Acrobat for my laptop...I have been battling for the last day.

    I need help in Downloading Adobe Elements for my Mac & Adobe Acrobat for my laptop...I have been battling for the last day.

    ~graffiti wrote:
    PjonesCET wrote:
    I know if you attempt to download and exe file to Mac from a Mac Partition you'll get something like. Cannot not understand file format octet-stream. This means it does not recognize MS execute files.
    Not necesarily. I've done it a few times.
    PjonesCET wrote:
    I'm not sure you can download a PC copy of Acrobat 9 unless you operating from bootcamp or other such application and running the PC partition.
    Yes. You can.
    I've learned something. New. This must be recently changed. That last time I clicked on a Link I though was a dmg file and turned out it was and exe file my Macs wouldn't allow me to do so. But haven't tried recently everytime and exe file comes up I cancel. I gues I am used to the time everytime a Virus or some other nasty was downloaded it was packaged in and exe file and Macs owuldn't allow it. I suppose with the INtel guts now they can no longer refuse to download.

  • Maestro need help also code is 75957252 for bios password reset

    maestro need help also code is 75957252 for bios password reset
    This question was solved.
    View Solution.

    Check your other post. I replied there.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • I need help getting the license number for Adobe Photoshop Elements. However, It doesn't recognize me as an authorized user. Can someone help?

    I need help getting the license number for Adobe Photoshop Elements. However, It doesn't recognize me as an authorized user. Can someone help?@

    I am having the same problem...did you ever fix it?

  • I think I need help with driver (software) settings for D110a

    I think I need help with driver (software) settings for D110a all-in-one
    Product: D110a all-in-one
    OS: Windows XP Professional
    Error messages: None
    Changes before problem appeared: None--new installation
    The quality of photo images (mostly JPG files) in printouts is awful even though the files display beautifully on the PC screen. I am using
    IrfanView software for displaying/printing. As far as I can tell, IrfanView is not the problem.
    When I print the same images on a Deskjet 5150 attached to a different PC also running XP Pro and IrfanView, the quality of the printouts is at
    least acceptable, Some would probably say good or very good.
    It's dificult to explain in words the problem with the printouts. A picture of really pretty vegetables (squashes, tomatoes, watermelon, etc) comes
    out much too red. Moreover, the red, which appears shaded on the screen, seems to be all one shade in the D110a printouts.
    Something similar happens to a view of a huge tree in full leaf. On screen, there are subtle variations in the "greenness" of the leaves. In the
    printout, all green is the same shade. In the same printout, the trunk of the tree is all a single shade of grey. It isn;t even obvious that the
    trunk is a round, solid object.
    I liken the effect to audio that disappears entirely when you lower the volume and gets clipped into square waves in even moderately loud passages.
    I don't know whether the D110a driver software permits adjusting the parameters that appear to be set incorrectly, and if adjustments are possible,
    how I would identify which parameters to adjust, how I would access them, or how I would adjust them. I'm hoping that someone can help. Thanks.
    I forgot to mention that I have used the diagnostic application and it tells me that there are no problems.
    e-mail me at [email protected]

    brazzmonkey wrote:
    Hi everyone,
    I noticed the following message when network starts on my gateway
    Warning: This functionality is deprecated.
    Please refer to /etc/rc.conf on how to define a single wired
    connection, or use a utility such as netcfg.
    Then I realized the way network settings should be written in rc.conf has changed. But I can't figure out how this should be done.
    Currently, my set up is the following (old way):
    INTERFACES=(eth0 eth1)
    eth0="dhcp"
    eth1="eth1 192.168.0.10 netmask 255.255.255.0 broadcast 192.168.0.255"
    ROUTES=(!gateway)
    eth0 is on DHCP because the IP is dynamically assigned my ISP.
    eth1 has a fix IP because it's on the LAN side.
    No problem to use DHCP on eth0 with the new settings.
    But for eth1, I don't know what I am supposed to write for gateway.
    Wiki isn't clear on that one either, and it looks like many articles still refer to the old way.
    Any guidance appreciated, thanks.
    brazzmonkey,
    you can't define 2 interfaces the old way (even though I saw some tricky workaround somewhere in the forums).
    Use, f.e., netcfg:
    Comment your old lines.
    In /etc/rc.conf insert:
    NETWORKS=(Eth0-dhcp Eth1-static)
    DAEMONS=(..... !network @net-profiles ....)
    In /etc/network.d create 2 files:
    First one is named  Eth0-dhcp.
    Contents:
    CONNECTION="ethernet"
    DESCRIPTION="Whatever text"
    INTERFACE=eth0
    HOSTNAME="your hostname"
    IP="dhcp"
    DHCP_TIMEOUT=15
    Second one is named Eth1-static.
    Contents:
    CONNECTION='ethernet'
    DESCRIPTION='whatver'
    INTERFACE='eth1'
    HOSTNAME='hname'
    IP='static'
    ADDR='192.168.0.10'
    GATEWAY='192.168.0.1' # your gateway IP
    DNS=('192.168.0.1') # your DNS server
    The names Eth0-dhcp and Eth1-static are not magic. They just must be the same in rc.conf and in /etc/network.d.
    Hope it helps.
    mektub
    PS: netcfg must be installed.
    Last edited by Mektub (2011-07-20 14:07:05)

  • Need help reformatting my hard drive for mac only

    Help please
    Need help reformatting my hard drive for mac only with my toshishba hard drive

    What Mac is this please, with what version of OS X?

  • Need help to redeem contact code for OS X 7

    Need help to redeem contact code for OS X 7

    Hello NOREDEEM,
    Thanks for using Apple Support Communities.
    If you have the purchase code for OS X 10.7 Lion, then you can follow the directions below to redeem it on your Mac.
    Mac App Store: Redeem gift cards and download codes
    Take care,
    Alex H.

Maybe you are looking for

  • Unable to connect to Time Capsule hard drive

    I have my Time Capsule set up as my wi-fi internet router and my time machine backups go on its hard drive. More often lately, I can get to the internet just fine but when I try to browse to the Time Capsule hard drive, I receive a message about it b

  • How to Keep Albums Separate

    When I have albums that appear the same (same title, artist, etc.) but one is low-res (MP3 or CD) and one is high-res, they both get imported as the same album with the tracks intermixed. How do I keep the albums separate? I'm using iTunes 12.0.1.26.

  • ITunes 10.5.1.42 not working and ejecting iPod on it's own!

    Recently, I downloaded the latest iTunes, I plugged in my iPod (I have an 7g 160gb one) and the first thing I noticed, was that it stuck in verifyng, so, I unninstalled the software, reinstalled, and it was working fine, but two days after that, it w

  • Rendering ,Memory?

    I have Pre7 and Pse7 I have NEVER had a issue with burning a project.I exported 1 PSE 7 slide show and then added some more pics on pre 7 .Have it all set to burn it won't.I need some answers ...?please project due tomorrow. Larkn5

  • Assigning value to attribute thru personalization

    Hello friends, I am having termination date, final process date and last standard process date in manager selfsevice module while terminating the employee. Out of above three dates I am hiding only final process date and last standard process date th