Strange behavior of "Partial message encryption "  in OWSM

Strange behavior of “Partial message encryption “  in OWSM
If message format is like this
<cban:transferFund xmlns:cban="http://cbank.com">
<cban:arg0>string</cban:arg0>   
<cban:arg1>string</cban:arg1>   
</cban:transferFund>
Then body element configuration in message encryption setting
Name space  http://cbank.com
Element arg0
is working fine
But my requirement is for below message
<cban:transferFund xmlns:cban="http://cbank.com"> <!--Optional:-->    <
<arg0>string</arg0>   
<arg1>string</arg1 >
</cban:transferFund>
For this
Name space : http://cbank.com
Element : I tried all possible combination but none is working
I tried these
:arg0
//:arg0
//cban:arg0
//cban//arg0
cban:arg0
With Regards
Siddharth

Had the same problem, could not get it to be consistent. I would say this is a bug, but decided to edit payloads via the database in the end...

Similar Messages

  • Partial Message encryption Configuration in Weblogic EM for  OWSM

    Strange behavior of “Partial message encryption “  in OWSM
    If message format is like this
    <cban:transferFund xmlns:cban="http://cbank.com">
    <cban:arg0>string</cban:arg0>
    <cban:arg1>string</cban:arg1>
    </cban:transferFund>
    Then body element configuration in message encryption setting
    Name space  http://cbank.com
    Element arg0
    is working fine
    But my requirement is for below message
    <cban:transferFund xmlns:cban="http://cbank.com"> <!--Optional:-->    <
    <arg0>string</arg0>
    <arg1>string</arg1 >
    </cban:transferFund>
    For this
    Name space : http://cbank.com
    Element : I tried all possible combination but none is working
    I tried these
    :arg0
    //:arg0
    //cban:arg0
    //cban//arg0
    cban:arg0
    With Regards
    Siddharth

    In the portal.properties you have a parameter called fuego.portal.papi.instancesCacheSize.
    By the way there is a very good document reltaed to the cache at
    http://www.oracle.com/technology/products/bpm/bpm10gr3technicalarticles/oracle%20bpm%20papi%20cache.pdf
    Regards
    Edited by: ruben.vidaurre on 16-dic-2009 22:22

  • Message protection (Encryption) through OWSM in BPEL process 11g

    What is my requirements ?_
    I want to encrypt the messages in BPEl process using OWSM message protection policies
    What is the configuration i am using ?_
    Weblogic Server 10.3.3
    Soa Server 11.1.1.3.0
    Oracle JDeveloper 11.1.1.3.0
    What I have done so far ?_
    (1) Created one Sync BPEl process (CalledAddition) which take two input and add them and give the output
    (2) Created one more Sync BPEL process (CallerProcess) which takes two input and call the above created bpel process
    (CalledAddition) and get the response back as addition of two number.
    Now I want to Add OWSM Message protection policy to Encrypt the message in Main BPEl process(CallerProcess) and the called service (CalledAddition) decrypt the message upon invocation. It is a very simple scenario.
    For this purpose I have done the following OWSM Policy Configuration:
    (1) Created a java keystore as follows
    keytool -genkey -keyalg RSA -keystore test_keystore.jks -storepass welcome1 -alias client_key -keypass welcome1 -dname "CN=Client, OU=WEB AGE, C=US" -keysize 1024 -validity 1460
    (2) Copy the keystore (test_keystore.jks) to location domain/config/fmwconfig.
    (3) Go to EM console/WeblogicDomain/Security/Credential and delete the map oracle.wsm.security and then again created it, with no key inside.
    (4) Go to EM console/WeblogicDomain/Security/SecurityProviderConfiguration and configure the above created keystore as follows:
    (i) Keystore Type=JKS, Keystore Path=./test_keystore.jks, password=welcome1, confirmPassword=welcome1
    (ii) Signature Key:
    Key Alias=client_key, Signature Password=welcome1, confirmPassword=welcome1
    (iii)Encryption Key:
    Crypt Alias=client_key, Crypt Password=welcome1, confirmPassword=welcome1
    (5) Now restart the server (both Weblogic and SOA server)
    (6) Now again go to EM console/WeblogicDomain/Security/Credential and open expand the oracle.wsm.security map, Automatically
    the following keys are made inside it:
    (i) sign-csf-key
    (ii) enc-csf-key
    (iii) keystore-csf-key
    Created one more key inside it explicitly:
    (iv) basic.credentials with username=weblogic and password=welcome1
    (7) Go to EM console/WeblogicDomain/WebServices/Policy and cretaed the following policies:
    oracle/wss11_message_protection_service_policy:
    (i) select policy oracle/wss11_message_protection_service_policy from list and click on create like button. This will create a copy of the policy with different name.
    (ii) Give the new name as oracle/wss11_message_protection_service_policy_Copy ( which is by default)
    (iii) Local Optimization = off and enabled is checked
    (iv) Attachment Attributes …..
    Applies To=Service BIndings and Service Category=Service Clients
    (v) Assertions …..
    Select middle assertion MessageProtection and Advertised=checked and Enforced=checked
    (vi) Configuration....
    Add following Configure properties, if present already edit them as follows:
    (a) name=keystore.enc.csf.key, property set=standard-security-properites, value=enc-csf-key, Type=Optional
    (b) name=keystore.sig.csf.key, property set=standard-security-properites, value=sign-csf-key, Type=Optional
    (c) name=role, property set=standard-security-properites, Default=ultimateReceiver, Type=Optional
    (v) Setting.........
    Done the following setting
    - Message Security/include timestamp=unchecked
    - Message Signing Setting/Include entire body=unchecked (since we need only encryption, no signing of message)
    - Message Encrypt Setting/include entire body=checked
    (vi) Validate and save
    (vi) Thus a new policy is made in domain with name oracle/wss11_message_protection_service_policy_Copy
    Simmilarly create oracle/wss11_message_protection_client_policy:
    (ii) Give the new name as oracle/wss11_message_protection_client_policy_Copy ( which is by default)
    (iv) Attachment Attributes …..
    Applies To=Service BIndings and Service Category=Service Endpoint
    (vi) Configuration....
    Add following Configure properties, if present already edit them as follows:
    (a) name=keystore.recipient.alias, property set=standard-security-properites, value=client_key, Type=Optional
    (b) name=role, property set=standard-security-properites, Default=ultimateReceiver, Type=Optional
    (vi) Thus a new policy is made in domain with name oracle/wss11_message_protection_client_policy_Copy
    Rest of the steps(i,iii and v) are same as described above in case of service policy
    After creating the policies in domain attach them to the bpel process as follows:
    (1) Go to SOA project (CallerProcess) in EM console.
    (2) Click on policy tab
    (3) First attach the client policy (oracle/wss11_message_protection_client_policy_Copy) to the endpoint of the process CallerProcess.
    (4) Then attach the service policy (oracle/wss11_message_protection_serivce_policy_Copy) to the reference in CallerProcess which is calling CalledAddition.
    (5) Now test the process (CallerProcess)
    pass input say 10 and 20 in input
    Upon testing it give the following error_
    Web Service invocation Failed:
    oracle.sysman.emSDK.webservices.wsdlapi.SoapTestException: InvalidSecurity : error in processing the WS-Security security header
    I have made all thing clear. I have gone through several documents but unable to find the solution. If anyone please help me in this case.
    Thanks

    I have followed same steps and getting same errror.
    User 868153, were you able to resolve this issue.
    Appreciate your help.
    Thanks

  • Strange behavior after suspend.

    Hi,
    For some time I have a strange behavior of my system after I awake my computer(after suspend). This problem don't disappear after update.
    Ok, so if I suspend my computer, and awake him I can't run any program. Even if i was open some application, this application crashes. I have to restart my machine.
    Somebody had similar problem or know how help?
    I'm using Arch Linux x64, kernel 3.8, openbox. Suspend by "systemctl suspend".

    OK, maybe good idea is paste here my output journal:
    # journalctl --since=today | tac | sed -n '/-- Reboot --/{n;:r;/-- Reboot --/q;p;n;b r}' | tac
    -- Logs begin at Mon 2012-09-10 20:20:07 CEST, end at Thu 2013-03-28 10:17:18 CET. --
    Mar 28 10:10:36 localhost kernel: Freezing user space processes ... (elapsed 0.01 seconds) done.
    Mar 28 10:10:36 localhost systemd[1]: Time has been changed
    Mar 28 10:10:36 localhost systemd[1]: systemd-tmpfiles-clean.timer: time change, recalculating next elapse.
    Mar 28 10:10:36 localhost kernel: Freezing remaining freezable tasks ... (elapsed 0.01 seconds) done.
    Mar 28 10:10:36 localhost dhcpcd[1435]: eth1: carrier lost
    Mar 28 10:10:36 localhost kernel: PM: Entering mem sleep
    Mar 28 10:10:36 localhost kernel: Suspending console(s) (use no_console_suspend to debug)
    Mar 28 10:10:36 localhost kernel: sd 0:0:0:0: [sda] Synchronizing SCSI cache
    Mar 28 10:10:36 localhost kernel: sd 0:0:0:0: [sda] Stopping disk
    Mar 28 10:10:36 localhost kernel: cfg80211: Calling CRDA for country: PL
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] IRQ 46 Disabled
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Preparing suspend fglrx in kernel.
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Suspending fglrx in kernel completed.
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Power down the ASIC .
    Mar 28 10:10:36 localhost kernel: PM: suspend of devices complete after 1126.292 msecs
    Mar 28 10:10:36 localhost kernel: PM: late suspend of devices complete after 0.263 msecs
    Mar 28 10:10:36 localhost kernel: r8169 0000:09:00.0: System wakeup enabled by ACPI
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1d.0: System wakeup enabled by ACPI
    Mar 28 10:10:36 localhost kernel: PM: noirq suspend of devices complete after 52.988 msecs
    Mar 28 10:10:36 localhost kernel: ACPI: Preparing to enter system sleep state S3
    Mar 28 10:10:36 localhost kernel: PM: Saving platform NVS memory
    Mar 28 10:10:36 localhost kernel: Disabling non-boot CPUs ...
    Mar 28 10:10:36 localhost kernel: smpboot: CPU 1 is now offline
    Mar 28 10:10:36 localhost kernel: smpboot: CPU 2 is now offline
    Mar 28 10:10:36 localhost kernel: smpboot: CPU 3 is now offline
    Mar 28 10:10:36 localhost kernel: Extended CMOS year: 2000
    Mar 28 10:10:36 localhost kernel: ACPI: Low-level resume complete
    Mar 28 10:10:36 localhost kernel: PM: Restoring platform NVS memory
    Mar 28 10:10:36 localhost kernel: Extended CMOS year: 2000
    Mar 28 10:10:36 localhost kernel: CPU0: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: Enabling non-boot CPUs ...
    Mar 28 10:10:36 localhost kernel: smpboot: Booting Node 0 Processor 1 APIC 0x4
    Mar 28 10:10:36 localhost kernel: CPU1: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: CPU1 is up
    Mar 28 10:10:36 localhost kernel: smpboot: Booting Node 0 Processor 2 APIC 0x1
    Mar 28 10:10:36 localhost kernel: CPU2: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: CPU2 is up
    Mar 28 10:10:36 localhost kernel: smpboot: Booting Node 0 Processor 3 APIC 0x5
    Mar 28 10:10:36 localhost kernel: CPU3: Thermal monitoring handled by SMI
    Mar 28 10:10:36 localhost kernel: CPU3 is up
    Mar 28 10:10:36 localhost kernel: ACPI: Waking up from system sleep state S3
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1d.0: System wakeup disabled by ACPI
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: MMC controller base frequency changed to 50Mhz.
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: proprietary Ricoh MMC controller disabled (via firewire function)
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: MMC cards are now supported by standard SDHCI controller
    Mar 28 10:10:36 localhost kernel: PM: noirq resume of devices complete after 133.780 msecs
    Mar 28 10:10:36 localhost kernel: PM: early resume of devices complete after 0.127 msecs
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1a.0: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: mei 0000:00:16.0: irq 43 for MSI/MSI-X
    Mar 28 10:10:36 localhost kernel: snd_hda_intel 0000:00:1b.0: irq 44 for MSI/MSI-X
    Mar 28 10:10:36 localhost kernel: pci 0000:00:1e.0: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: ehci-pci 0000:00:1d.0: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: ahci 0000:00:1f.2: setting latency timer to 64
    Mar 28 10:10:36 localhost kernel: snd_hda_intel 0000:02:00.1: irq 45 for MSI/MSI-X
    Mar 28 10:10:36 localhost kernel: r8169 0000:09:00.0: System wakeup disabled by ACPI
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Power up the ASIC
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Preparing resume fglrx in kernel.
    Mar 28 10:10:36 localhost kernel: Extended CMOS year: 2000
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] Resuming fglrx in kernel completed.
    Mar 28 10:10:36 localhost kernel: <6>[fglrx] IRQ 46 Enabled
    Mar 28 10:10:36 localhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
    Mar 28 10:10:36 localhost kernel: ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    Mar 28 10:10:36 localhost kernel: ata2.00: configured for UDMA/100
    Mar 28 10:10:36 localhost kernel: usb 2-1.3: reset low-speed USB device number 3 using ehci-pci
    Mar 28 10:10:36 localhost kernel: sdhci-pci 0000:07:00.0: Will use DMA mode even though HW doesn't fully claim to support it.
    Mar 28 10:10:36 localhost kernel: firewire_core 0000:07:00.3: rediscovered device fw0
    Mar 28 10:10:36 localhost kernel: usb 1-1.4: reset high-speed USB device number 3 using ehci-pci
    Mar 28 10:10:36 localhost kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    Mar 28 10:10:36 localhost kernel: ata1.00: configured for UDMA/133
    Mar 28 10:10:36 localhost kernel: sd 0:0:0:0: [sda] Starting disk
    Mar 28 10:10:36 localhost kernel: PM: resume of devices complete after 2478.795 msecs
    Mar 28 10:10:36 localhost kernel: PM: Finishing wakeup.
    Mar 28 10:10:36 localhost kernel: Restarting tasks ... done.
    Mar 28 10:10:36 localhost kernel: video LNXVIDEO:00: Restoring backlight state
    Mar 28 10:10:36 localhost slim[806]: Conky: can't open /sys/class/power_supply/BAT0/uevent: No such file or directory
    Mar 28 10:10:36 localhost slim[806]: Conky: can't open /proc/acpi/battery/BAT0/state: No such file or directory
    Mar 28 10:10:36 localhost systemd-sleep[4208]: System resumed.
    Mar 28 10:10:36 localhost dbus-daemon[800]: dbus[800]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Mar 28 10:10:36 localhost dbus[800]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
    Mar 28 10:10:36 localhost su[4307]: (to root) root on none
    Mar 28 10:10:36 localhost su[4307]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:36 localhost systemd[1]: Starting Daemon for power management...
    Mar 28 10:10:36 localhost su[4307]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:36 localhost su[4328]: (to root) root on none
    Mar 28 10:10:36 localhost su[4328]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:36 localhost su[4328]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:36 localhost systemd[1]: Started Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Service sleep.target is not needed anymore. Stopping.
    Mar 28 10:10:36 localhost systemd[1]: Stopping Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Stopped target Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Starting Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Reached target Suspend.
    Mar 28 10:10:36 localhost systemd-logind[796]: Operation finished.
    Mar 28 10:10:36 localhost laptop-mode[4441]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4446]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost logger[4463]: ACPI action undefined: ACPI0003:00
    Mar 28 10:10:36 localhost laptop-mode[4501]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4509]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost laptop-mode[4534]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4539]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost laptop-mode[4554]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4557]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost laptop-mode[4562]: Laptop mode
    Mar 28 10:10:36 localhost laptop-mode[4563]: enabled, active [unchanged]
    Mar 28 10:10:36 localhost dbus-daemon[800]: dbus[800]: [system] Successfully activated service 'org.freedesktop.UPower'
    Mar 28 10:10:36 localhost dbus[800]: [system] Successfully activated service 'org.freedesktop.UPower'
    Mar 28 10:10:36 localhost systemd[1]: Started Daemon for power management.
    Mar 28 10:10:37 localhost ntpd[1442]: Deleting interface #3 eth1, 192.168.1.6#123, interface stats: received=135, sent=135, dropped=1, active_time=4197 secs
    Mar 28 10:10:37 localhost ntpd[1442]: 149.156.70.60 interface 192.168.1.6 -> (none)
    Mar 28 10:10:37 localhost ntpd[1442]: 149.156.24.40 interface 192.168.1.6 -> (none)
    Mar 28 10:10:37 localhost ntpd[1442]: 46.250.172.2 interface 192.168.1.6 -> (none)
    Mar 28 10:10:37 localhost ntpd[1442]: peers refreshed
    Mar 28 10:10:38 localhost su[4624]: (to root) root on none
    Mar 28 10:10:38 localhost su[4624]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:38 localhost laptop-mode[4653]: Laptop mode
    Mar 28 10:10:38 localhost laptop-mode[4654]: enabled, active [unchanged]
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: carrier acquired
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: rebinding lease of 192.168.1.6
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: acknowledged 192.168.1.6 from 192.168.1.1 `TP-LINK'
    Mar 28 10:10:38 localhost dhcpcd[1435]: eth1: checking for 192.168.1.6
    Mar 28 10:10:38 localhost su[4624]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:38 localhost su[4660]: (to root) root on none
    Mar 28 10:10:38 localhost su[4660]: pam_unix(su:session): session opened for user root by (uid=0)
    Mar 28 10:10:38 localhost su[4660]: pam_unix(su:session): session closed for user root
    Mar 28 10:10:38 localhost kernel: EXT4-fs (sda6): re-mounted. Opts: commit=0
    Mar 28 10:10:38 localhost kernel: EXT4-fs (sda7): re-mounted. Opts: commit=0
    Mar 28 10:10:38 localhost laptop-mode[4694]: Laptop mode
    Mar 28 10:10:38 localhost laptop-mode[4695]: enabled, active [unchanged]
    Mar 28 10:10:38 localhost logger[4698]: ACPI action undefined: ACPI0003:00
    Mar 28 10:10:38 localhost slim[806]: tint2 : invalid option "task_margin",
    Mar 28 10:10:38 localhost slim[806]: upgrade tint2 or correct your config file
    Mar 28 10:10:38 localhost slim[806]: tint2 : nb monitor 1, nb monitor used 1, nb desktop 1
    Mar 28 10:10:38 localhost slim[806]: X Error of failed request: BadWindow (invalid Window parameter)
    Mar 28 10:10:38 localhost slim[806]: Major opcode of failed request: 21 (X_ListProperties)
    Mar 28 10:10:38 localhost slim[806]: Resource id in failed request: 0x18000b0
    Mar 28 10:10:38 localhost slim[806]: Serial number of failed request: 12
    Mar 28 10:10:38 localhost slim[806]: Current serial number in output stream: 12
    Mar 28 10:10:40 localhost slim[806]: you have no weather alerts
    Mar 28 10:10:40 localhost slim[806]: processing complete
    Mar 28 10:10:40 localhost slim[806]: gathering data with curl
    Mar 28 10:10:40 localhost slim[806]: % Total % Received % Xferd Average Speed Time Time Time Current
    Mar 28 10:10:40 localhost slim[806]: Dload Upload Total Spent Left Speed
    Mar 28 10:10:40 localhost slim[806]: 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: (nil); Unknown error
    Mar 28 10:10:40 localhost slim[806]: not checking for alerts
    Mar 28 10:10:40 localhost slim[806]: curl attempt timed out, trying again
    Mar 28 10:10:40 localhost slim[806]: % Total % Received % Xferd Average Speed Time Time Time Current
    Mar 28 10:10:40 localhost slim[806]: Dload Upload Total Spent Left Speed
    Mar 28 10:10:40 localhost slim[806]: 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (6) Could not resolve host: (nil); Unknown error
    Mar 28 10:10:42 localhost dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:43 localhost dhcpcd[1435]: eth1: leased 192.168.1.6 for 259200 seconds
    Mar 28 10:10:45 dhcppc4 ntpd[1442]: Listen normally on 6 eth1 192.168.1.6 UDP 123
    Mar 28 10:10:45 dhcppc4 ntpd[1442]: peers refreshed
    Mar 28 10:10:45 dhcppc4 ntpd[1442]: new interface(s) found: waking up resolver
    Mar 28 10:10:45 dhcppc4 slim[806]: Traceback (most recent call last):
    Mar 28 10:10:45 dhcppc4 slim[806]: File "/home/rlk120/.scripts/gmail.py", line 9, in <module>
    Mar 28 10:10:45 dhcppc4 slim[806]: msg=temp.read()
    Mar 28 10:10:45 dhcppc4 slim[806]: File "/usr/lib/python3.3/encodings/ascii.py", line 26, in decode
    Mar 28 10:10:45 dhcppc4 slim[806]: return codecs.ascii_decode(input, self.errors)[0]
    Mar 28 10:10:45 dhcppc4 slim[806]: UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 375: ordinal not in range(128)
    Mar 28 10:10:45 dhcppc4 slim[806]: not checking for alerts
    Mar 28 10:10:45 dhcppc4 slim[806]: curl attempt timed out, trying again
    Mar 28 10:10:45 dhcppc4 slim[806]: % Total % Received % Xferd Average Speed Time Time Time Current
    Mar 28 10:10:45 dhcppc4 slim[806]: Dload Upload Total Spent Left Speed
    Mar 28 10:10:46 dhcppc4 slim[806]: [234B blob data]
    Mar 28 10:10:46 dhcppc4 dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:50 dhcppc4 dhcpcd[1435]: eth1: sending IPv6 Router Solicitation
    Mar 28 10:10:50 dhcppc4 dhcpcd[1435]: eth1: no IPv6 Routers available
    Mar 28 10:11:03 dhcppc4 slim[806]: No protocol specified
    Mar 28 10:11:03 dhcppc4 slim[806]: (chromium:4750): Gtk-WARNING **: cannot open display: :0.0
    Mar 28 10:11:31 dhcppc4 systemd-logind[796]: System is rebooting.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Daemon for power management...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Authorization Manager...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping ACPI event daemon...
    Mar 28 10:11:32 dhcppc4 ntpd[1442]: ntpd exiting on signal 15
    Mar 28 10:11:32 dhcppc4 acpid[793]: exiting
    Mar 28 10:11:32 dhcppc4 dhcpcd[4810]: sending signal 1 to pid 1435
    Mar 28 10:11:32 dhcppc4 dhcpcd[4810]: waiting for pid 1435 to exit
    Mar 28 10:11:32 dhcppc4 dhcpcd[1435]: received SIGHUP, releasing
    Mar 28 10:11:32 dhcppc4 dhcpcd[1435]: eth1: releasing lease of 192.168.1.6
    Mar 28 10:11:32 dhcppc4 dhcpcd[1435]: eth1: removing interface
    Mar 28 10:11:33 dhcppc4 slim[806]: Conky: received SIGHUP or SIGUSR1. reloading the config file.
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 200200 requests (200197 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: Conky: received SIGHUP or SIGUSR1. reloading the config file.
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 4 (Interrupted system call) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 226 requests (226 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: real transparency off.... depth: 24
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Found crtc's: 4
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Linking output LVDS with crtc 0
    Mar 28 10:11:33 dhcppc4 slim[806]: real transparency off.... depth: 24
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Found crtc's: 4
    Mar 28 10:11:33 dhcppc4 slim[806]: xRandr: Linking output LVDS with crtc 0
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 534585 requests (534585 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0.0"
    Mar 28 10:11:33 dhcppc4 slim[806]: after 163909 requests (163909 known processed) with 0 events remaining.
    Mar 28 10:11:33 dhcppc4 slim[806]: you have no weather alerts
    Mar 28 10:11:33 dhcppc4 slim[806]: processing complete
    Mar 28 10:11:33 dhcppc4 kernel: cfg80211: Calling CRDA to update world regulatory domain
    Mar 28 10:11:33 dhcppc4 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
    Mar 28 10:11:33 dhcppc4 netcfg-daemon[4777]: :: siec_domowa down [done]
    Mar 28 10:11:33 dhcppc4 slim[806]: Server terminated successfully (0). Closing log file.
    Mar 28 10:11:33 dhcppc4 laptop-mode[4865]: Laptop mode
    Mar 28 10:11:33 dhcppc4 laptop-mode[4866]: enabled, active [unchanged]
    Mar 28 10:11:34 dhcppc4 systemd[1]: slim.service: main process exited, code=exited, status=1/FAILURE
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped SLiM Simple Login Manager.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Unit slim.service entered failed state
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Permit User Sessions...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Permit User Sessions.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Load Kernel Modules...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Load Kernel Modules.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Apply Kernel Variables...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Apply Kernel Variables.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Setup Virtual Console...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Setup Virtual Console.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Set Up Additional Binary Formats...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Set Up Additional Binary Formats.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /home...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /tmp...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /tmp.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /home.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remount Root and Kernel File Systems...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Remount Root and Kernel File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Save Random Seed...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Update UTMP about System Shutdown...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Save Random Seed.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Update UTMP about System Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Reboot...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Shutting down.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
    Mar 28 10:11:35 dhcppc4 systemd[1]: Set hardware watchdog to 10min.
    Mar 28 10:11:35 dhcppc4 kernel: watchdog watchdog0: watchdog did not stop!
    Mar 28 10:11:35 dhcppc4 systemd-journal[131]: Journal stopped
    Somebody probably find interesting things in this code.
    And here is some fail slim:
    # journalctl /usr/lib/systemd/systemd --since=today
    -- Logs begin at Mon 2012-09-10 20:20:07 CEST, end at Thu 2013-03-28 10:37:18 CET. --
    Mar 28 10:10:36 localhost systemd[1]: Time has been changed
    Mar 28 10:10:36 localhost systemd[1]: systemd-tmpfiles-clean.timer: time change, recalculating next elapse.
    Mar 28 10:10:36 localhost systemd[1]: Starting Daemon for power management...
    Mar 28 10:10:36 localhost systemd[1]: Started Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Service sleep.target is not needed anymore. Stopping.
    Mar 28 10:10:36 localhost systemd[1]: Stopping Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Stopped target Sleep.
    Mar 28 10:10:36 localhost systemd[1]: Starting Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Reached target Suspend.
    Mar 28 10:10:36 localhost systemd[1]: Started Daemon for power management.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Deactivating swap /dev/sda8...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Sound Card.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Daemon for power management...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Authorization Manager...
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Graphical Interface.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopped target Multi-User.
    Mar 28 10:11:32 dhcppc4 systemd[1]: Stopping ACPI event daemon...
    Mar 28 10:11:34 dhcppc4 systemd[1]: slim.service: main process exited, code=exited, status=1/FAILURE
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped SLiM Simple Login Manager.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Unit slim.service entered failed state
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Permit User Sessions...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Permit User Sessions.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Basic System.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Daily Cleanup of Temporary Directories.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target Sockets.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed LVM2 metadata daemon socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Device-mapper event daemon FIFOs.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed Syslog Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed ACPID Listen Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Closed D-Bus System Message Bus Socket.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped target System Initialization.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Load Kernel Modules...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Load Kernel Modules.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Apply Kernel Variables...
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopped Apply Kernel Variables.
    Mar 28 10:11:34 dhcppc4 systemd[1]: Stopping Setup Virtual Console...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Setup Virtual Console.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Set Up Additional Binary Formats...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Set Up Additional Binary Formats.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Encrypted Volumes.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Swap.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /home...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounting /tmp...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Remote File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /tmp.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Unmounted /home.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remount Root and Kernel File Systems...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Remount Root and Kernel File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Save Random Seed...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Update UTMP about System Shutdown...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Save Random Seed.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Update UTMP about System Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Reboot...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Shutting down.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Unmount All Filesystems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped target Local File Systems (Pre).
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopping Remount Root and Kernel File Systems...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Stopped Remount Root and Kernel File Systems.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Save Random Seed...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Update UTMP about System Shutdown...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Save Random Seed.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Started Update UTMP about System Shutdown.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Reached target Final Step.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Starting Reboot...
    Mar 28 10:11:35 dhcppc4 systemd[1]: Shutting down.
    Mar 28 10:11:35 dhcppc4 systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
    Mar 28 10:11:35 dhcppc4 systemd[1]: Set hardware watchdog to 10min.
    Last edited by xorgx3 (2013-03-28 10:52:08)

  • Strange behavior when "trying" to burn a disk.

    At least I think this is strange behavior, following the instructions in the help viewer, topic "Backing up your music to a CD or DVD." One thing for sure, it's not burning a disc and it ain't telling me why.
    I select the playlist and click "Burn Disc"
    Requests a blank disc. I insert one.
    Message "checking media"
    after about a minute, the disc ejects
    Message "checking media" displays another 30 seconds
    No other messages displayed.
    What the ??? Shouldn't it at least display an error message??
    Super-Drive information..... from System Profiler
    MATSHITA DVD-R UJ-845C:
    Firmware Revision: DPP9
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: No
    Using Sony DVD+R discs.
    Mac Mini   Mac OS X (10.4.8)  

    Whoops, sorry, this was while burning a playlist.
    I've also tried some Pleomax CD disks (Samsung), with no luck. I've tried burning directly from iTunes, and from Toast 7.
    Of the types I've tried, the Sony DVD's have been the best for me. Haven't tried many types though. Maybe I can get disks one at a time until I find a brand my burner likes.
    Still, isn't it strange that there is NO error message? It just quits?
    Mac Mini   Mac OS X (10.4.8)  

  • Strange behavior - icon thumbnail instead of image - CC@OSX10.10

    Hi,
    my CC (@OS X 10.10.3) showing a strange behavior using vanishing point filter.
    After defining grid and try to paste the image OS X paste the icon thumbnail instead of the image,
    Many thanks in advance!!
    br
    Joachim

    It is probably related to the fact that you are setting the tables row height in the renderer this will fire a render message when the height changes. One height is applied to all rows of a table. This means that is you have images of different heights you are continually changing the tables row height and therefore continually rendereing.
    My approach would be to have all the images fit into a set size ( say 64*64 ( with scaling if neccesary ) you could then have a popup show the full size image if required.

  • Report FP_TEST_00 - Strange behavior

    Hello Gurus,
    A strange behavior with report FP_TEST_00 occurs:
    SA38 --> FP_TEST_00 --> select a device --> execute --> print preview then and error or popup is show:
    Adobe Reader
    Error initializing the font server module
    Then the SAP GUI is closed, I check the ST22 and no dump is generated and in transaction SM21 only appear:
    DP  Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    DP  Q0  I Operating system call recv failed (error no. 232 )
    The #1 log entry: *
    Details Page 2 Line 28 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  4 Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Connection to user 551 (ADMIN ), terminal 86 (HUSVP-SAP-BA) lost
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text..........              Caller.... Reason/cal
    dpxxdisp   1223 551  ADMIN       86  HUSVP-SAP-BA DpRTmPr    NiBufRe
    Documentation for system log message Q0 4 :
    The SAP Dispatcher (part of the application server) has lost the
    connection to a terminal process.  For example, this happens when the
    terminal program (GUI) terminates without correctly logging off the
    application server.  More detailed information about the error
    context is not available here.
    Technical details
    File Offset RecFm System log type             Grp N variable message data
       21 254340 m     Error (Function,Module,Row) Q0  4 551  ADMIN       86  HUSVP-SAP-BA     DpRTmPrNiBufRedpxxdisp1223
    The #2 Log show: *
    Details Page 2 Line 29 System Log: Local Analysis of sapdev                   1
    Time     Type Nr Clt User TCode Grp N Text
    11:37:20 DP                     Q0  I Operating system call recv failed (error no. 232 )
    Operating system call recv failed (error no. 232 )
    Details
    Recording at local and central time........................ 25.02.2010 11:37:20
    Task...... Process    User...... Terminal Session TCode Program Cl Problem cl         Package
    11092      Dispatcher                                           K  SAP Web AS Problem STSK
    Further details for this message type
    Module nam Line Error text        Caller.... Reason/cal
    nixxi.cp   4435           recv232 NiIRead    recv
    Documentation for system log message Q0 I :
    The specified operating system call was returned with an error.
    For communication calls (receive, send, etc) often the cause of errors
    are network problems.
    It could also be a configuration problem at operating system level.
    (file cannot be opened, no space in the file system etc.).
    Additional specifications for error number 232
    Name for errno number ECONNRESET
    No documentation available for error ECONNRESET
    Technical details
    File Offset RecFm System log type             Grp N variable message data
      21 254520 m     Error (Function,Module,Row) Q0  I           recv232                     NiIReadrecv   nixxi.cp4435
    Edited by: Hernando Polania Cadena on Feb 25, 2010 8:36 PM

    Hello All,
    I applied the solution in page
    http://wiki.sdn.sap.com/wiki/display/PLM/Adobe%209%20-%20SAPGUI%20crash
    Works OK
    Thanks
    Hernando

  • Strange behavior of textareas in BPEL Worklist (10.1.2)

    I have a very strange behavior with linebreaks in all my <textarea>s in the BPEL-Worklist-jsps: (they work fine as <INPUT>s
    Example:
    Default-text:
    line1
    I update the textarea to:
    line1
    line2
    -> hit update
    line1
    *** (second line is completly missing)
    -> hitting update again (no change in text)
    line2line1
    *** (all on one line with the new line in front)
    As Value I use:
    <%=PayloadFormGenerator.selectNodeValue(payload, "/ns0:task/ns0:payload/ns1:abstract", form.getNamespaceMap(),"string", context.getLocale())%>
    and as mentioned: It works fine for <INPUT>.
    What do I do wrong? Is this a bug?
    Daniel
    Message was edited by:
    user552073

    Had the same problem, could not get it to be consistent. I would say this is a bug, but decided to edit payloads via the database in the end...

  • Strange behavior in HTMLDB

    Greetings,
    We've been running HTMLDB since 1.5 and are currently at 2.2.1.00.04, but within the last two weeks we have been seeing some very strange behavior. Form submissions or moving from one page to the next in either the Development GUI or within any application will result in either blank pages (although in most cases a reload [refresh] will bring up the page that was expected) or the following errors:
    Error Workspace 741023382320307 has no privileges to parse as schema.
    or
    Access denied by Application security check (this one will only allow us to logout, refresh doesnt work).
    or
    ORA-0000: normal, successful completion
    Error Unable to fetch authentication_scheme in application 4000. (a refresh brings the page up normally)
    We've made no major changes to hardware/operating system/software.
    We have ruled out our load balancer by accessing htmldb by FQDN and port number, and have disabled webcache. Its almost as if our session variables in memory will just suddenly disappear.
    [EDIT]
    These pages and errors are absolutely random. I could experience 20 of them in an hour or 1 in the next week. We have done extensive log checking, but can find nothing that would explain the behavior.
    [EDIT]
    Has anyone experienced these issues. We are currently running a number of applications in production and this is already starting to affect them.
    Thanks in Advance,
    Clifford Moon
    Message was edited by:
    cjmoon
    Message was edited by:
    cjmoon

    Hi Earl.
    I just confirmed from one of the developers that it
    happens either way...
    Any ideas?
    cliffDid you happen to change browsers recently, like IE7 perhaps?
    I'm not really sure what's happening but this sounds like what I call 'browser confusion'. Basically, like what you mentioned, that the current session state gets dropped, either in the browser or the server. Don't know which.
    Earl

  • Strange behavior in deleting images - works on second but not first try

    In Library mode, Grid view, right after importing, after I select several images with an "x" to be deleted, when I bring up the "Delete Rejected Photos" dialog, I find this strange behavior. I get the message that there are not photos marked for deletion. I then invoke the dialog again, and my photos that were marked show up, with the choices of deleting from disk or removing from the catalog. What am I likely doing wrong? I'm on WinXP Pro with LR 2.2. Thanks!
    Dilip

    Dilip,
    I too have seen this behaviour in all versions of LR. Even when deleting a single image in the develop module. If LR is writting the preview you can't delete the file until the preview is rendered. I think it's more to do with the OS not allowing the deletion of a file being accessed than a LR bug as such.
    Gordon

  • Strange behavior in a table with dropTarget and delete action

    I am having a strange behavior in a table with drag and drop and action component to delete row.
    Steps:
    Drag the first row to the table and appears in the destination table (works well)
    Select and change the value by 156, appears an error (works fine)
    delete the row, the row disappears (works well)
    Add the first row again and the value is 156 instead of 158 (why ????)
    I guess the error is the deletion that is not correct, but do not know how?
    Can anyone help?
    I add the source code if you see where I'm wrong
    Java class:
    +public class BeanExample {+
    private ArrayList<RowExample> starttValues;
    private ArrayList<RowExample> endValues;
    +public BeanExample() {+
    super();
    +}+
    +public void setStarttValues(ArrayList<BeanExample.RowExample> starttValues) {+
    this.starttValues = starttValues;
    +}+
    +public ArrayList<BeanExample.RowExample> getStarttValues() {+
    +if (starttValues == null) {+
    starttValues = new ArrayList<BeanExample.RowExample>();
    starttValues.add(new RowExample("1", new Number(158)));
    starttValues.add(new RowExample("21", new Number(12565464)));
    +}+
    return starttValues;
    +}+
    +public void setEndValues(ArrayList<BeanExample.RowExample> endValues) {+
    this.endValues = endValues;
    +}+
    +public ArrayList<BeanExample.RowExample> getEndValues() {+
    +if (endValues == null) {+
    endValues = new ArrayList<BeanExample.RowExample>();
    +}+
    return endValues;
    +}+
    +public void validatorExample(FacesContext facesContext, UIComponent uIComponent, Object object) {+
    Number number = (Number)object;
    +if ((number.longValue() % 2) == 0) {+
    FacesMessage message = new FacesMessage(FacesMessage.SEVERITY_ERROR, "ES PAR", "ES PAR");
    throw new ValidatorException(message);
    +}+
    +}+
    +public DnDAction handleDrop(DropEvent dropEvent) {+
    Transferable transferable = dropEvent.getTransferable();
    DataFlavor<RowKeySet> rowKeySetFlavor = DataFlavor.getDataFlavor(RowKeySet.class, "loteDrag");
    RowKeySet rowKeySet = transferable.getData(rowKeySetFlavor);
    +if (rowKeySet != null) {+
    CollectionModel dragModel = transferable.getData(CollectionModel.class);
    +if (dragModel != null) {+
    Object currKey = rowKeySet.iterator().next();
    dragModel.setRowKey(currKey);
    RowExample table = (RowExample)dragModel.getRowData();
    getEndValues().add(new RowExample(table.getId(), table.getValue()));
    return dropEvent.getProposedAction();
    +}+
    +}+
    return DnDAction.NONE;
    +}+
    +public void borrarFila(ActionEvent actionEvent) {+
    endValues.remove(0);            RequestContext.getCurrentInstance().addPartialTarget(FacesContext.getCurrentInstance().getViewRoot().findComponent("pc1:t2"));
    +}+
    +public static class RowExample {+
    private String id;
    private Number value;
    +public RowExample(String id, Number value) {+
    super();
    this.id = id;
    this.value = value;
    +}+
    +public void setId(String id) {+
    this.id = id;
    +}+
    +public String getId() {+
    return id;
    +}+
    +public void setValue(Number value) {+
    this.value = value;
    +}+
    +public Number getValue() {+
    return value;
    +}+
    +}+
    +}+JSF
    +<?xml version='1.0' encoding='windows-1252'?>+
    +<jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"+
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    +<jsp:directive.page contentType="text/html;charset=windows-1252"/>+
    +<f:view>+
    +<af:document id="d1">+
    +<af:form id="f1">+
    +<af:panelGroupLayout id="pgl1">+
    +<af:table value="#{beanExample.starttValues}" var="row"+
    rowBandingInterval="0" id="t1" rowSelection="single"
    displayRow="selected" contentDelivery="immediate">
    +<af:column sortable="false" headerText="Id" align="start" id="c2">+
    +<af:outputText value="#{row.id}" id="ot1"/>+
    +</af:column>+
    +<af:column sortable="false" headerText="Value" align="start" id="c1">+
    +<af:outputText value="#{row.value}" id="ot2"/>+
    +</af:column>+
    +<af:collectionDragSource actions="COPY" modelName="loteDrag"/>+
    +</af:table>+
    +<af:panelCollection id="pc1">+
    +<f:facet name="toolbar" >+
    +<af:toolbar id="dc_t2" >+
    +<af:commandToolbarButton shortDesc="Delete"+
    icon="/imagesDemo/delete_ena.png"
    id="dc_ctb3" immediate="true"
    +actionListener="#{beanExample.borrarFila}"/>+
    +</af:toolbar>+
    +</f:facet>+
    +<af:table value="#{beanExample.endValues}" var="row"+
    +rowBandingInterval="0" id="t2">+
    +<af:column sortable="false" headerText="Id" align="start" id="c3">+
    +<af:outputText value="#{row.id}" id="ot3"/>+
    +</af:column>+
    +<af:column sortable="false" headerText="Value" align="start" id="c4" >+
    +<af:inputText value="#{row.value}" autoSubmit="true" id="it1" validator="#{beanExample.validatorExample}"/>+
    +</af:column>+
    +<af:collectionDropTarget actions="COPY" modelName="loteDrag"+
    +dropListener="#{beanExample.handleDrop}"/>+
    +</af:table>+
    +</af:panelCollection>+
    +</af:panelGroupLayout>+
    +</af:form>+
    +</af:document>+
    +</f:view>+
    +</jsp:root>+

    I think the problem is the validator
    I changed the practical case, I added an InputText to enter new values in the first row.
    +<af:inputText immediate="true" label="new value" id="it2"+
    +valueChangeListener="#{beanExample.newvalue}" autoSubmit="true"/>+
    +public void newvalue (ValueChangeEvent valueChangeEvent) {+
    +String valor = (String)valueChangeEvent.getNewValue();+
    +Number valorNumber=null;+
    +try {+
    +valorNumber = new Number (valor);+
    +} catch (SQLException e) {+
    +}+
    +RowExample example = (RowExample) endValues.get(0);+
    +example.setValue(valorNumber);+
    +example.setId(valorNumber.toString());+
    +RichTable table = (RichTable)FacesContext.getCurrentInstance().getViewRoot().findComponent(id);+
    +RequestContext.getCurrentInstance().addPartialTarget(table);+
    +}+
    Case 1
    I drag the first row to the target table (ok)
    The new row appears (ok)
    Enter the value 77 in the InputText (ok)
    id content and value change (ok)
    Case2
    I drag the first row to the destination table
    The new row appears (ok)
    Change the value of the first row by 80 (ok)
    errors appears (by validator) (ok)
    Enter the value 77 in the InputText (ok)
    the id is changed but the value NO (*KO*)
    I do not understand the behavior
    Edited by: josefuente on 27-oct-2010 16:03

  • Strange behavior in Contacts 'Note' field

    I am getting strange behavior in the 'Note' fields of my contacts. I am sending out my Christmas cards and, in the process, making a lot of comments in the 'Note' field. Here is what has been happening.
    Notes disapper from one or many contacts.
    Text from one note gets inserted into the note of several other contacts, replacing whatever content was previously in that contact.
    The common thread here seems to be that the changes are being applied across all the notes in a Smart Group (I use a number of keywords to create Smart Groups).
    A few questions.
    Is my contact database corrupted in some way? If so, can how can I clean it up?
    Are other people experience erratic behavior in the 'Note' field?
    Is there any way that I can use the 'Note' field reliably?
    As it is, the 'Note' field is essentially useless to me … and the address book is increasingly frustrating.
    Many thanks,
    Heather

    Others are seeing this problem. I posted a reply to another link and was told to submit feedback to Apple.
    https://discussions.apple.com/message/20537471#20537471

  • Adding custom navigation rules results in strange behavior

    Hello,
    We'd like to add navigation rules to our application. To avoid post-JHeadstart-generation-steps we created an extra faces-config-custom.xml file which contains the navigation rules. When adding this file to the web.xml and run the aplication we encounter strange behavior
    - Errors are shown in duplicate
    - 'Transaction completed' messages are not shown
    Try adding the underneath faces-config-custom.xml to a standard HR demo project and you will get the same behavior.
    (1) What is the reason of this strange behavior?
    (2) How can we add custom navigation rules, without having to do post creation steps?
    Regards Leon
    [faces-config-custom.xml]
    <?xml version="1.0" encoding="windows-1252" ?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <navigation-rule>
    <from-view-id>*</from-view-id>
    <navigation-case>
    <from-outcome>BezwaarVerzoeken</from-outcome>
    <to-view-id>/pages/inboeken/BezwaarVerzoeken.jspx</to-view-id>
    </navigation-case>
    <navigation-case>
    <from-outcome>LosseOpdrachten</from-outcome>
    <to-view-id>/pages/inboeken/LosseOpdrachten.jspx</to-view-id>
    </navigation-case>
    </navigation-rule>
    </faces-config>
    [Add faces-config-custom.xml to web.xml]
    <context-param>
    <param-name>javax.faces.CONFIG_FILES</param-name>
    <param-value>/WEB-INF/faces-config-custom.xml,...

    Leon,
    When you perform a drag and drop operation, JDeveloper adds the following lines to the faces-config.xml:
    <lifecycle>
    <phase-listener>
    Oracle.adf.controller.faces.lifecycle.ADFPhaselistener
    </phase-listener>
    </lifecycle>
    However, JHeadstart uses its own subclass of ADFPhaselistener, and defines the lifecycle element in JhsCommon-beans.xml. Due to a bug in ADF, ADF does not look for the lifecycle element in other files than faces-config, and adds its own element in faces-config.xml If you remove these lines, everything works fine again.
    To prevent this from happening again, you can move the following entry from JhsCommon-beans.xml to faces-config.xml:
    <lifecycle> <phase-listener>oracle.jheadstart.controller.jsf.lifecycle.JhsADFPhaseListener</phase-listener>
    </lifecycle>
    And then make a custom template for JhsCommon-beans.vm where you remove this entry.
    Steven Davelaar,
    JHeadstart team.

  • 802.1x "MachineorUser" Auth Mode strange behavior in 2950 & 3750 Switches

    Good Day Support Team around the world,
    Having started recently  tests with 802.1x in a lab environment, I noticed  a strange behavior related to authentication. First let me provide you with the network components I used.
    supplicant:                    domain-joined laptop with Windows XP SP3 802.1x embedded client
    authenticator1:              Cisco 2950-24   
    authenticator2:              Cisco 3750-24
    authentication server:     MS NPS Windows Server 2008
    1.     In the first scenario with 3750 switch when I connect the laptop to relevant port the machine authentication is successful. Then I try to login with a domain account and again the authentication is completed without any problem. Then I log off and user authentication is revoked and the machine authentication is used again without any issue. When I try to login again as local user the authentication fails as expected but the port remains disabled (port blinking amber) regardless the fact that port is configured for Auth-Fail Vlan. When I log off then the machine authentication is used again and the access is granted.
    2.     In the second scenario with 2950 switch as authenticator, I follow the same steps as before and when I try to login as local user the authentication is failed and the port is assigned the Auth-Fail Vlan (as expected based on configuration). However when I log off it seems that the 2950 switch still use the Auth-Fail Vlan for that port and never authenticates again for machine authentication.
    Could you please let me someone know if this is normal ( I suppose no). Please find attached the relevant debug output from the second scenario.
    Thank you!!!

    Hi,
    basically what happens is that the maximum EAP packet size for communication between client and RADIUS server is negotiated. Therefore, in your case the switch notifies NPS that the client is capable of handling packets up to 9000 bytes in size.
    EAP messages, especially those containing the server certificate, are usually bigger than 1500 bytes and arrive at the switch in multiple fragments:
    Mar  6 15:50:11.881: RADIUS(0000002C): Received from id 1645/41
    Mar  6 15:50:11.881: RADIUS/DECODE: EAP-Message fragments, 253+253+253+253+253+253+253+253+20, total 2044 bytes
    Having learned that 2044 bytes is acceptable for the client, the switch forwards the full message in one chunk, but since your client is likely to have set the interface MTU to 1500, the packet is oversized and never reaches its destination.
    And yes, I think changing the System Jumbo MTU to 1500 bytes would lead to the same result. If my memory serves me right, a new setting takes effect only after a reboot, so I'd suggest giving it a go in your lab first.
    Best regards,
    Josef

  • Strange Behavior of program while using BAPI_PO_CREATE1

    Hello SAP GURUs,
    I've created an Upload Program using BAPI_PO_CREATE1 for Mass Service PO Creation.
    When I execute the program and Specify the File for uploading, It Gives me errors as
    E     BAPI     1     No instance of object type PurchaseOrder has been created. External reference:
    E     MEPO     0     Purchase order still contains faulty items
    E     6     436     In case of account assignment, please enter acc. assignment data for item
    But when I come back to Selection Screen of the Program and specify the SAME FILE AGAIN and Execute,
    The Program runs successfully and generates the PO number.
    I have never seen such strange behavior in any BAPIs before.
    Pls help..

    PERFORM refresh_tables.
      PERFORM fill_tables.
    END-OF-SELECTION.
    Display the Summary as an ALV Grid Display
      IF NOT ig_mymssg[] IS INITIAL.
        PERFORM display_basic_list . "Grid Display
      ELSE.
        MESSAGE s000 WITH 'No data exists'(051).
        STOP.
      ENDIF.
    *&      Form  refresh_tables
          text
    -->  p1        text
    <--  p2        text
    FORM refresh_tables .
      REFRESH:   ig_fieldcat,
                 ig_mymssg,
                 poitem,
                 poitemx,
                 poaccount,
                 poaccountx,
                 poservices,
                 ig_return.
                wt_itab,  record,  record2 .
    ENDFORM.                    " refresh_tables
    *&      Form  fill_tables
          text
    -->  p1        text
    <--  p2        text
    FORM fill_tables .
      record2[] = record[].
      record3[] = record[].
      DELETE ADJACENT DUPLICATES FROM record COMPARING id_no.
      DELETE ADJACENT DUPLICATES FROM record2 COMPARING id_no po_item.
      SELECT MAX( packno ) FROM esll INTO wrk_packno.
      LOOP AT record.
        CLEAR : poheader, poheaderx, wa_poitem, wa_poitemx, wa_poservices, wa_poaccount, wa_poaccountx, wa_poschedulex, wa_poschedule.
        REFRESH: poitem, poitemx, poaccount, poaccountx, poservices, ig_return,  posrvaccessvalues, poschedule, poschedulex.
        PERFORM po_header.
        LOOP AT record2 WHERE id_no = record-id_no.
          wrk_packno = wrk_packno + 1.
          PERFORM po_item.
          PERFORM po_scheudle.
          PERFORM acc_assignment.
          PERFORM po_services.
        ENDLOOP.
        PERFORM create_po.
      ENDLOOP.
    ENDFORM.                    " fill_tables
    *&      Form  display_basic_list
          text
    -->  p1        text
    <--  p2        text
    FORM display_basic_list .
      g_repid = sy-repid.
      PERFORM f2000_fieldcat_init .
      PERFORM display_alv_grid_1.
    ENDFORM.                    " display_basic_list
    *&      Form  f2000_fieldcat_init
          text
    -->  p1        text
    <--  p2        text
    FORM f2000_fieldcat_init .
      REFRESH ig_fieldcat.
      PERFORM fill_fields_of_fieldcatalog USING 'IG_MYMSSG'
                                                  'STATUS'
                                                    c_x
                                                    'Status'
                                                    '10'.
      PERFORM fill_fields_of_fieldcatalog USING 'IG_MYMSSG'
                                                'RECORD'
                                                c_x
                                                'Record'
                                                '20'.
      PERFORM fill_fields_of_fieldcatalog USING 'IG_MYMSSG'
                                                'ERRMSG'
                                                'Message'
                                                '100'.
    ENDFORM.                    " f2000_fieldcat_init
    *&      Form  display_alv_grid_1
          text
    -->  p1        text
    <--  p2        text
    FORM display_alv_grid_1 .
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program = g_repid
          i_structure_name   = 'IG_MYMSSG'
          i_grid_title       = 'LOG'
          is_layout          = wg_layout
          it_fieldcat        = ig_fieldcat[]
          i_save             = c_save
        TABLES
          t_outtab           = ig_mymssg
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " display_alv_grid_1
    *&      Form  fill_fields_of_fieldcatalog
          text
         -->P_0626   text
         -->P_0627   text
         -->P_C_X  text
         -->P_0629   text
         -->P_0630   text
    FORM fill_fields_of_fieldcatalog  USING    p_tabname TYPE slis_tabname
                                               p_field TYPE slis_fieldname
                                               p_key TYPE c
                                               p_name
                                               len.
    To fill in the fields of the table fieldcatalog depending on the field
      CLEAR wg_fieldcat.
      wg_fieldcat-fieldname = p_field. " The field name and the table
      wg_fieldcat-tabname = p_tabname.. " name are the two minimum req
      wg_fieldcat-key = p_key. " Specifies the column as a key
      wg_fieldcat-seltext_l = p_name. " Column Header
      wg_fieldcat-outputlen = len.
      APPEND wg_fieldcat TO ig_fieldcat.
    ENDFORM.                    " fill_fields_of_fieldcatalog
    *&      Form  create_po
          text
    -->  p1        text
    <--  p2        text
    FORM create_po .
      CLEAR : wg_return.
      REFRESH : ig_return.
      CALL FUNCTION 'BAPI_PO_CREATE1'
        EXPORTING
          poheader          = poheader
          poheaderx         = poheaderx
        IMPORTING
          exppurchaseorder  = po_no
        TABLES
          return            = ig_return
          poitem            = poitem
          poitemx           = poitemx
          poschedule        = poschedule
          poschedulex       = poschedulex
          poaccount         = poaccount
          poaccountx        = poaccountx
          poservices        = poservices
          posrvaccessvalues = posrvaccessvalues.
      SORT ig_return BY type.
      READ TABLE ig_return INTO wg_return WITH KEY type = 'S'.
      IF sy-subrc EQ 0.
        CLEAR : wg_return.
        REFRESH : ig_return.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        CLEAR wg_errmsg.
        WRITE icon_green_light AS ICON TO wg_errmsg-status.
        CONCATENATE record-id_no po_no INTO wg_errmsg-record SEPARATED BY '/'.
       wg_errmsg-record = po_no.
        wg_errmsg-errmsg = 'PO created'.
        APPEND wg_errmsg TO ig_mymssg.
      ELSE.
        CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        READ TABLE ig_return INTO wg_return WITH KEY type = 'E' TRANSPORTING message.
        CLEAR wg_errmsg.
        WRITE icon_red_light AS ICON TO wg_errmsg-status.
        wg_errmsg-record = record-id_no.
        wg_errmsg-errmsg = wg_return-message.
        APPEND wg_errmsg TO ig_mymssg.
      ENDIF.
    ENDFORM.                    " create_po
    *&      Form  po_header
          text
    -->  p1        text
    <--  p2        text
    FORM po_header .
      poheader-comp_code   = record-comp_code.
      poheader-doc_type    = record-doc_type.
      poheader-vendor      = record-vendor.
      poheader-purch_org   = 'SERV'.
      poheader-pur_group   = record-pur_group.
      poheader-currency    = 'INR'.
      poheaderx-comp_code   = 'X'.
      poheaderx-doc_type    = 'X'.
      poheaderx-vendor      = 'X'.
      poheaderx-purch_org   = 'X'.
      poheaderx-pur_group   = 'X'.
      poheaderx-currency    = 'X'.
    ENDFORM.                    " po_header
    *&      Form  po_item
          text
    -->  p1        text
    <--  p2        text
    FORM po_item .
    DATA : days TYPE num2.
    DATA : final_dt TYPE datum.
    DATA : is_ok TYPE boole_d.
    DATA : msg_hndlr TYPE REF TO if_hrpa_message_handler.
    days = 20.
    CALL FUNCTION 'HR_ECM_ADD_PERIOD_TO_DATE'
       EXPORTING
         orig_date       = sy-datum
         num_days        = days
         signum          = '+'
         message_handler = msg_hndlr
       IMPORTING
         result_date     = final_dt
         is_ok           = is_ok.
      CLEAR: wa_poitem,wa_poitemx.
      wa_poitem-po_item      = record2-po_item.
      wa_poitem-short_text   = record2-short_text.
      wa_poitem-plant        = record2-plant.
      wa_poitem-matl_group   = 'S001'.
      wa_poitem-tax_code     = 'LA'.
      wa_poitem-item_cat     = item_cat.
      wa_poitem-pckg_no      = wrk_packno.
      wa_poitem-acctasscat   = acctasscat.
    wa_poitem-gr_to_date   = final_dt.
      APPEND wa_poitem TO poitem.
      wa_poitemx-po_item      = record2-po_item.
      wa_poitemx-po_itemx      = 'X'.
      wa_poitemx-short_text   = 'X'.
      wa_poitemx-plant        = 'X'.
      wa_poitemx-tax_code     = 'X'.
      wa_poitemx-item_cat     = 'X'.
      wa_poitemx-acctasscat   = 'X'.
      wa_poitemx-pckg_no      = 'X'.
      wa_poitemx-matl_group   = 'X'.
      wa_poitem-gr_to_date    = 'X'.
      APPEND wa_poitemx TO poitemx.
    ENDFORM.                    " po_item
    *&      Form  PO_SERVICES
          text
    -->  p1        text
    <--  p2        text
    FORM po_services .
      CLEAR: wa_poservices, wa_posrvaccessvalues.
      wa_poservices-pckg_no = wrk_packno.
      wa_poservices-line_no  = '0000000001'.
      wa_poservices-outl_ind = 'X'.
      wa_poservices-subpckg_no = wa_poservices-pckg_no + 1.
      wa_poservices-from_line = '000001'.
      APPEND wa_poservices TO poservices.
      CLEAR wa_poservices.
      wrk_packno = wrk_packno + 1.
      wa_poservices-pckg_no = wrk_packno.
      wa_poservices-line_no  = '0000000002'.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = record2-service
        IMPORTING
          output = record2-service.
      wa_poservices-ext_line = '0000000010'.
      wa_poservices-service  = record2-service.
      wa_poservices-quantity = record2-quantity.
      wa_poservices-gr_price = record2-gr_price.
      wa_posrvaccessvalues-pckg_no = wrk_packno.
      wa_posrvaccessvalues-line_no = '0000000002'.
      wa_posrvaccessvalues-serial_no = '01'.
      wa_posrvaccessvalues-serno_line = '01'.
    wa_posrvaccessvalues-quantity = record2-quantity.
    wa_posrvaccessvalues-net_value = record2-gr_price.
      APPEND wa_poservices TO poservices.
      APPEND wa_posrvaccessvalues TO posrvaccessvalues.
    ENDFORM.                    " PO_SERVICES
    *&      Form  ACC_ASSIGNMENT
          text
    -->  p1        text
    <--  p2        text
    FORM acc_assignment .
      DATA : tmp_gl LIKE bapimepoaccount-gl_account.
      tmp_gl = '400265'.
      CLEAR : wa_poaccount, wa_poaccountx.
      wa_poaccount-po_item      =  record2-po_item.
      wa_poaccount-serial_no    = '01'.
      wa_poaccount-co_area      = '1000'.
      wa_poaccount-quantity     = record2-quantity.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = tmp_gl
        IMPORTING
          output = wa_poaccount-gl_account.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = record2-orderid
        IMPORTING
          output = wa_poaccount-orderid.
      APPEND wa_poaccount TO poaccount.
      wa_poaccountx-po_item      = record2-po_item.
      wa_poaccountx-serial_no    = '01'.
      wa_poaccountx-co_area      = 'X'.
      wa_poaccountx-quantity     = 'X'.
      wa_poaccountx-gl_account   = 'X'.
      wa_poaccountx-orderid      = 'X'.
      APPEND wa_poaccountx TO poaccountx.
    ENDFORM.                    " ACC_ASSIGNMENT
    *&      Form  PO_SCHEUDLE
          text
    -->  p1        text
    <--  p2        text
    FORM po_scheudle .
      CLEAR : wa_poschedule, wa_poschedulex.
      wa_poschedule-po_item = record2-po_item.
      wa_poschedule-sched_line = '0001'.
    wa_poschedule-del_datcat_ext = 'D'.
      wa_poschedule-delivery_date = sy-datum.
      wa_poschedule-quantity = record2-quantity.
      APPEND wa_poschedule TO poschedule.
      wa_poschedulex-po_item = record2-po_item.
      wa_poschedulex-sched_line = '0001'.
      wa_poschedulex-po_itemx = 'X'.
      wa_poschedulex-sched_linex = 'X'.
    wa_poschedulex-del_datcat_ext = 'X'
      wa_poschedulex-delivery_date = 'X'.
      wa_poschedulex-quantity = 'X'.
      APPEND wa_poschedulex TO poschedulex.
    ENDFORM.                    " PO_SCHEUDLE

Maybe you are looking for

  • E-mail "failures" to friends in the USA using Veri...

    This problem started late November, mysteriously stopped over Christmas, but has now restarted. If I e-mail anyone in the USA who use Verizon as their ISP I get a message with the subject "[email protected] <[email protected]>" The message reads "Sor

  • [SOLVED] Can only boot with error in fstab

    Hey there! During boot I noticed a message, that /dev/sda4 (my /home-partition) gets passed a wrong option. BUT when the system finished booting, everything works very well! checking my fstab got me /dev/sda4 /home ext4 default,noatime 0 2 which I co

  • Sony Nex-3 raw data

    i have recently brought a Sony Nex-3 digital camera, however the macbook is unable to process the raw data (ARW) file format Can any one help or know if apple have a fix for this Thanks

  • Embed video or stream video which works better

    Can anyone give the differences between streaming video or embeding it in a web page. Why would you do one above the other. The only major difference I see is that with streaming, the server doing the streaming can be anywhere. This means less bandwi

  • Setting up a slim 32-bit chroot

    My purpose of setting up a 32-bit chroot is to play some 32-bit games. When I install nvidia, it pulls in a bunch of other dependencies, such as kernel26, mkinitcpio, xorg (via nvidia-utils), and probably a bunch of other stuff. The wiki wasn't exact