Archaeological / Architecture system with JDE

I need to give consultation for an electro optical and control systems company.
The correct system is sort of archaeological - formal classified as aerial reconnaissance and saw the JDE page and saw the "Application Integration Architecture".
Will be more than happy to get more info about that.

What sort of info were you looking for in regards to the position?
- Katie
[How To French Kiss|http://frenchkissingsecrets.com/]

Similar Messages

  • How to Delete and Reset a Lost Root Password on a System With a Mirrored ??

    hi All,
    we are experiencing problem,lost root password on Solaris 10 Sparc T5120, with mirror root,
    and we found the solution from Metalink.oracle.com, has anyone have try this??
    here list capture the file system :
    Filesystem size used avail capacity Mounted on
    */dev/md/dsk/d10 2.0G 349M 1.6G 18% /*
    */dev/md/dsk/d40 9.8G 563M 9.2G 6% /usr*
    */dev/md/dsk/d30 9.8G 1.4G 8.4G 15% /var*
    */dev/md/dsk/d50 7.9G 310M 7.5G 4% /opt*
    */dev/md/dsk/d600 3.8G 4.3M 3.8G 1% /home*
    */dev/md/dsk/d602 471M 20M 404M 5% /app/controlm*
    */dev/md/dsk/d601 471M 251M 173M 60% /app/ctsa*
    */dev/md/dsk/d604 4.9G 1.1G 3.8G 23% /app/oramon*
    */dev/md/dsk/d603 20G 11G 8.2G 58% /app/oracle*
    */dev/md/dsk/d606 39G 10.0G 29G 26% /proj/iprdb01/orafra/iprod01p*
    here the step :
    Solstice DiskSuite[TM] Software: How to Delete and Reset a Lost Root Password on a System With a Mirrored Root Disk [ID 1010755.1]
    Solution
    Steps to Follow
    How to delete and reset a lost root password on a system with a mirrored root disk.
    1) Insert the Solaris[TM] Operating System CD-ROM into the CD-ROM drive.
    2) Once the CD-ROM is in the drive, perform a stop-a. This brings the system down to the "ok" prompt.
    3) From the "ok" prompt, perform a single-user boot from the Solaris OS CD-ROM.
    ok boot cdrom -s4) At the "#" prompt, determine which disk is the system's boot disk (containing the root file system). There are several Oracle architectures and various configurations of systems when it concerns a boot disk. As a general rule, most boot disks are attached to controller 0 (c0). Usually, their SCSI target is
    either 3 (t3) or 0 (t0). However, Oracle machines are very flexible, and the boot disk could be at a different location. If you are not sure which disk is your boot disk, perform the following steps to determine the location of the boot device:
    a) # eeprom boot-device
    The output might appear to be simple, such as "disk" or "disk1" or more complicated, such as a pathname "/iommu/sbus/espdma@4,8400000/...../sd@3,0:a".
    b) Make note of the boot-device. If the boot-device is a pathname, it is beyond the scope of this information to provide the location of the customized boot disk. However, for most configurations,
    finding the customized boot disk is an easy task. The "Format" command shows all available disks:
    #format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    (enter its number): c) Enter d to exit format.
    Now, you will have an idea what disks are on the system. Therefore, if the boot-device is "disk" and format shows "c0t0d0" (on some systems "c0t3d0") then that is the boot device. If boot-device
    shows "disk1" and format shows "c0t1d0," then that is the boot device. If format shows multiple disks, then based on what the "eeprom boot-device" command shows, the system's boot disk would be:
    boot-device format
    disk c0t0d0 or c0t3d0 (machine dependent)
    disk1 c1t0d0
    disk2 c0t2d0
    disk3 c0t3d0 or c0t0d0 (machine dependent)
    and so on ....
    5) Because the system was not brought down gracefully (no root password means having to use the Stop-a keystroke to "crash" the system), you need to run "fsck" to clean the root partition (slice). The fsckalso confirms that you selected the proper slice.
    # fsck /dev/rdsk/c1t0d0s0
    where the X and Y are determined by the previous procedure. It is also possible to have a root partition which is not on slice 0 (s0), but, again, that is not a standard configuration.
    The output of "fsck" looks like this:
    ** /dev/rdsk/c1t0d0s0
    ** last mounted on /
    ** Phase 1 .....
    The second line in the output of "fsck" ("** Last mounted on /") confirms that this is the correct root filesystem partition. Answer "y" to any questions fsck asks. There shouldn't be too many items
    needing repair. If there are, there is a possibility of a corrupted root filesystem. After fsck is finished, mount the root partition:
    # mount /dev/dsk/c1t0d0s0 /a
    Again, X and Y are the same as for the fsck command.
    For example:
    # mount /dev/dsk/c1t0d0s0 /a
    6) From the root prompt, set the proper TERM type command (such as vt100, dtterm, sun, and so on)
    by entering this command:
    # TERM=sun; export TERM
    7) Use the VI text editor to edit the /etc/shadow file:
    # vi /a/etc/shadow
    8) The first line of the /etc/shadow file is the one you want to modify.
    It looks like this:
    root:c3.yAVmYodWsc:6445::::::
    9) Delete every character between the first and second colons in the first line of the file. When you finish deleting the characters, the line should look like this:
    root::6445::::::
    10) Press the Escape key, then enter the following to save the file and exit vi:
    :wq!
    11) Use the VI text editor to edit the /etc/system file andremove the "rootdev" line shown below:
    # vi /a/etc/system
    *rootdev:/pseudo/md@0:0,0,blk
    Don't comment out the "rootdev" line. Actually remove it.
    12) In the /a/etc/vfstab file, replace the lines for the system filesystem meta-devices with their underlying partitions. For example, change lines from
    /dev/md/dsk/d0 /dev/md/rdsk/d0 / ufs 1 no -
    to
    /dev/dsk/c1t0d0s0 /dev/rdsk/c1t0d0s0 / ufs 1 no -
    ONLY change the lines for root (/) and the filesystems that were affected by the actions you took in step 1 of this procedure. All other metadevices may stay as is in this file.
    13) Unmount root, check the root filesystem, and then stop the system:
    # cd /
    # umount /a
    # fsck /dev/rdsk/c1t0d0s0
    # stop-a
    14) Boot to single-user mode:
    ok boot -swTHIS STEP IS VERY IMPORTANT; YOU MUST BOOT TO SINGLE-USER MODE TO AVOID FILESYSTEM CORRUPTION.
    If the system does not boot to single user mode, you might have made a mistake in the previous steps.
    15) Because the root password was cleared in an earlier step, press Return when prompted for the the root password. Once you are in single-user mode, you must clear the metamirrors and all the sub-mirrors for the root filesystem. For example, if root (/) is d0, run the following command:
    # metaclear -f -r d0
    Running the metaclear command not only clears the metamirror but also clears the submirrors that are part of this mirror.
    16) When the metamirror is cleared, continue the boot up to multiuser mode by either pressing CTRL-D or by entering the following:
    # exit
    Now everything should be as it was, except that the system partition is on the underlying partition and isn't mirrored. You will simply need to re-create the metadevices for the root mirror as you had originally.
    many thanks

    Hi,
    Halt your machine.
    Boot with fail-safe mode.
    format and list out the disks. (You can get the root & mirror disk (c#t#d#) details from /etc/lvm/md.tab of your root or mirror disk. Earlier explorer output may help)
    Mount the root disk and remove the password entry in /etc/shadow
    umount it.
    Mount the mirror disk and remove the password entry in /etc/shadow
    umount it.
    reboot the server.
    Hope this helps!

  • Integrating BRM system with PowerInvoices Interface

    Hi
    We have a requirement of integrating the BRM system with the LexisNexis-PowerInvoices web application using Application Integration Architecture.
    Any pointers in this area will be very helpful.
    Thanks
    Nidhi

    As said, you need to determine the signaling and select to appropriate card based on that and the amount of simultaneous calls etc. for instance, i integrated a nortel 11 for one of my customers to work with Cisco IPT. basically, T1 CAS card on both a router and the PBX. PBX then needs to have steering codes and members configured to allow call routing to the router. on the IPT end i added the router as a gateway to enable IPT users to call PBX users.
    Second you said that they have the same PBX in their branches. well, from what i gather from the lines, basically what youre asking is that you need those PBX users to integrate as well. therefore the same will apply as in HO. no need for SRST unless youre using IPT at the branches.

  • Middleware problem -Outbound queue is stuck in SAP R/3 system with message

    Hi Middleware gurus ,
    We are stuck with a serious issue . We are trying to download Business partners from SAP R/3 4.6c system to SAP CRM 5.2 system using CRM Middleware
    Previously we did a successful Initial download of 2 Business partners from SAP R/3 to CRM . Their BP numbers in CRM are 001 and 002 . The Delta load is working fine for the both the BPs which are already downloaded
    Now , the real problem is when we are trying to download a new Business partner . When we set the Filter ( BP no 003 ) in MW adaptor object CUSTOMER_MAIN and start the Initial load again , we see that the Outbound queue is getting stuck with message “STOP” .
    There are two queues generated in SAP R/3 system with names “MASS_CRM_CUSTOME” and “R3AD_CUSTOME” . The status for both the queues is “STOP” and when go for details it mentions “sapsuck ..SAPMSSY1 “ -Message no. SR 053.
    Even we checked the txn SMW01, the Bdocs message is "Recived ( Intermediate state) " for Bdoc type BUPA_MAIN.
    We really don’t as to why the Initial load worked fine with 2 BPs  and later when want to do more BP Initial Load the Outbound queue is getting stuck
    Also , by unlocking the 2nd queue “R3AD_CUSTOME” we are able to release it , but the first queue “MASS_CRM_CUSTOME*” is stuck
    Please help us urgently
    Regards
    Dinesh and Ritvij
    Email : [email protected]
    Mobile -+91=9704933315

    Hi Praveen and other Middleware gurus,
    We checked on this . Actually the RFC is used for connecting to SAP R/3 system.
    We also raised an OSS message on this and found a reply that in transaction CRMM_BUPA_MAP, we can map the required BP . But the SAP support guy recived an error received the error:
    An RFC link is not maintained in the Middleware
    Message no. CRM_BUPA_MAPPING051
    We have set the RFC link , but still the problem continues!!!
    Please help further..
    Regards
    Dinesh and Ritvij

  • SSO for application systems with local users?

    Hi all,  I'm new to Oracle Identity Management.  My company is going to implement SSO for inhouse applications.  However, some applications have their own local users (e.g. admin, guest, etc.) who have to login to the application system through the same interface.  We put all organization users in an Oracle enterprise Directory server, which is the authentication backend of the Access Manager.   After implementing webgate, such local users can't get authenticated.  I'd like to know if it's possible to configure particular users/applications to bypass SSO and use local authentication?     Thanks.
    Rgds
    /ST wong

    Possible solution is to create a new entry point for local users. Create two proxies one for actual user entry and another for local user. You can restrict n/w access to proxy with local login so that only few hosts based on your requirement who needs to access system with local accounts. This way you will have two web sites for single application.

  • Safari, chrome and firefox cannot verify identity of secure websites after upgrading to 10.7.4,  apple engineers have tried multiple things including operating system with no success

    safari, chrome and firefox cannot verify identity of secure websites after upgrading to 10.7.4,  apple engineers have tried multiple things including operating system with no success

    There are several threads about this problem, most notably one called 'Invalid Certificates' is over 4 pages long.  Many of us have experienced difficulty connecting to banking and other secure sites.  On my Macbook Pro, I cannot get to my banking site with any browser, however I can get there on my iMac using Safari, but get the 'Invalid Certificate' notice with FF and Chrome.  The problem started after the installation of 10.7.4.  I have sent a message to Apple--they will be dismayed to hear that I cannot complete an order at their online store!

  • Slow System with K7N420

    I have a system with a K7N420 in which I had 256MB(x2) of Crucial memory. I stole on stick for a new box I was building while I waited for prices to go down. When they did I moved the second stick back to the K7N420 box. When I moved it back I also did some live updates on the drivers. Now the system takes a minimum of ten minutes to boot. At least 8 of those bedfore the USB comes up (intellimouse goes red?). When I check the system it shows that I only have 480MB of memory instead of the 512MB that is there. I boot seperatly on each card and they each register as 224MB. I have moved them from slot 0 to 1 or 2 with the same results.  I upgraded to BIOS V2.8 and that didn't help. Have I introduced something ro has the board gone bad? Any suggestions? Thanks.

    32mb goes to the onboard video, but the long boot problem?
    Well I am thinking one of those updates is causing problems or your HD may be going bad. If you have nothing to lose but time then I suggest a clean install, SP1 and then the unified drivers 2.03.
    Stay away from live update or any MSI drivers for now.
    Oh and if you used BootVis from micromush that could also be causing some problems.

  • How do you install Windows 8.1 on a system with multiple hard drives?

    Specifically a system with a User folder located on more than one drive. I have programs installed on both drives in order to save space on one (a small SSD boot drive). Upon trying to install windows 8.1, the Windows Store tells me my PC can't run Windows
    8.1 and gives me the error 0xc1900102. Suggestions?

    Got it working :D... But it eats some time tho...
    First run a cmd with admin privileges.
    Then mklink /j C:\Users D:\Users
    (Change D if you have users on other drive)
    Now follow this guilde untill the profiles directory
    http://www.eightforums.com/tutorials/4275-user-profiles-relocate-another-partition-disk.html
    Change it to %SystemDrive%\Users
    Finish the guide and let it do its thing. (This will leave your Users map on the HDD)
    Now activate the Administrator account
    http://www.eightforums.com/tutorials/9650-built-administrator-account-enable-disable-windows-8-a.html
    Remove the mklink of C:\Users. Then copy the (hidden) Default User profile from D:\Users to C:\Users (yes create Users on the C partition)
    Then log off and log in as the admin account.
    Create a new online account (get an alternate email or make an account alias at https://account.live.com/summarypage.aspx)
    Log in with that account.
    Download and install the windows 8.1 Upgrade and let it finish everything (Took 3 hours at me)
    Then login with your main account. It will generate a new account.
    Restart your PC and login with the admin account.
    Goto C:\Users and look what name it got. If the name is crappy then you can rename it at: 
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\<your profile ID>
    Then do a mklink /j C:\Users\<ProfileName> D:\Users\<ProfileName>
    Now restart the pc and login on your main account.
    If everything went well you will have your old account back.
    Now you can remove the C:\Users map and do a mklink /j C:\Users D:\Users
    P.S. My store doesn't work anymore after this...

  • HT1923 I have a Vista Operating system with 2 users.  Somehow I got two different play lists each with one user.  One is too big for the storage and has a vast amount of duplicates.  Can I delete the one that is twice as large and then access the other li

    I have a Vista operating system with 2 users.  Somehow I got two diffent libraries for the users.  How can I delete the one and then access the correct library on the other users profile?

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Installation Options for iMovie HD on Snow Leopard system with iLife '09

    Greetings and thank-you for contributing suggestions on what is a well worn subject. I have read many of the posts existing on this topic and am trying to nip some details.
    I have a late 2006 iMac that came with Tiger and iMovie HD which is now at version 6.0.3. When I upgraded to Snow Leopard (Boxed Set) I got iLife 09 but, as it was supposed to do, it left me iMovie HD which is what I have used. I have both sets of installation DVD's. (from the iMac and the SL upgrade)
    Today I got a new MacMini and am plotting how to get iMovie HD on it.
    I gather that I first need to remove iMovie 09 from the Mini. I do that by dragging its application bundle in finder to the trash and removing any receipt packages.
    Do I have to remove all of the iLife 09 applications or just iMovie 09?
    Then, I reinstall either all of iLife 06 from the iMac DVD or just iMovie HD. After that I can load iLife 09 from the SL DVD. That will leave the iMovie HD on the system but upgrade everything else.
    Should I run software update from iMovie HD to try to get the 6.0.3 version or download and run the upgrade image? Does it matter?
    I am good to go. Did I miss anything?
    I also have a SuperDuper clone of the iMac system. Another possibility is to boot from that and clone it to the new Mini. Does anyone think this is a better idea?
    Thanks again for the insights of your experience.

    I think the issue is that if you install iMovie 06 on a system with iMovie 09 installed, iMovie 6 has no knowledge that iMovie 09 exists. Therefore iMovie 6 installs itself in the iMovie folder in the Applications Folder and assumes anything in there is old and can be trashed.
    Apple fixed this with iMovie 6.04, but this is no longer available.
    But if you install iMovie 6 first, and iMovie 9 second, iMovie 9 knows about iMovie 6 and will move it to a folder called "iMovie - Previous Versions".
    In your case, I would uninstall iMovie 09 as you started to do, then run the migration assistant, then reinstall iMovie 09.
    It should also work to create a folder on your old system called "iMovie - Previous Versions". Drag the iMovie 6 app into this folder and verify that it works. Then do the Migration Assistant. This should work, but I hesitate to recommend it because I have not tested it. Best case, it installs and you did not even have to uninstall iMovie 09. Worst case, delete the iMovie folder and reinstall iMovie 09.
    For what its worth, I recently did a Migration Assistant from a SuperDuper clone (after a failed hard disk) that had both iMovie 09 and iMovie 6 installed, and it worked fine. But I have not tried your scenario.
    I would use Migration Assistant because then you have the correct version of Snow Leopard for your system. You may not if you use a clone. A new machine may have microcode that is not released to the general release of OSX for several months. If your Mini is a used one and at least 6 months old, a clone should work OK.

  • Unable to syndicate same Remote System with differnt value

    Hi,
    I am working on MDM 7.1 SP05 and I have the following issue with syndication:
    I have a remote system table (Key Enabled) with System as Non-Qualifier and value as Qualifier and I have values in the MDM Datamanager as
    MDM ID, Remotesystem (Multivalue Qualifier Table with Key Enabled)
    111,((Qual1-Key,Val1),(Qual1-Key,Val2),(Qual1-Key,Val3))
    When I syndicate I see only one value as 111, (Qual1,Val3)... But I want to have all the Qualifiers-Key with multiple values.. Where as in MDM 5.5 I can see all the Qualifiers with out any issues..Is this a restriction in MDM 7.1?
    If I map System instead of Remote Key of Qualifier Table then I can see multiple times of same remote system with appropriate values.. But If I map remote key then I see the consolidated/the latest system-remote key wiht value... But I want system-remote key value appear multiple times...
    Thanks alot
    Rajeev

    I am using customised...
    Did you tried syndicating Remote key of that table or the field of the Qualifer table?
    I am able to syndicate out with the system field and values.. But I want to syndicate out the multiple values wiht remote key of the table..
    As mentioned Remote keys are AAA and BBB for System Sys1 and Sys2..
    First I imported remote system table with Sys1 and Sys2 with remote Keys as AAA and BBB. then along wiht main table record I imported Sys1 and Sy2...
    While Syndicating I want to syndicate AAA and BBB values along with Value field...
    Suppose:
    I have data :
    MDM ID, RemoteSystem(System, Value)
    111, ((Sys1,Val1),(Sys1,Val2),(Sys1,Val3),(Sys2,Val1))
    Remote Keys for Sys1AAA and Sys2BBB
    In the Syndication Manager I mapped as below: RemoteSystems RemoteKey and value are mapped to target...
    RemoteSystem
    --RemoteKey
    System(DFNQ)
    --Value(Qualifier)
    I mapped RemoteKey and Value to the target fields.. Which is a XML output..
    <REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val3</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>BBB</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val1</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    </REMOTE_SYSTEM>
    Where I need the following Output:
    <REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val1</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val2</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>AAA</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val3</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    - <Z_MDM_REMOTE_SYSTEM >
    <Z_MDM_SYSTEM_NAME>BBB</Z_MDM_SYSTEM_NAME>
    <Z_MDM_VALUE>Val1</Z_MDM_VALUE>
    </Z_MDM_REMOTE_SYSTEM>
    </REMOTE_SYSTEM>
    Any inputs.
    Thanks
    Rajeev

  • [HP Expert Day] "You are not able to restore this system with the media"

    Welcome to HP Experts day! 
    I've got a long-standing problem since last year. Let's see if you can solve this! 
     I'll get straight to the point : 
    I am unable to perform recovery on my system. This is the error message : 
    It's a USB recovery media created with the HP recovery media utility on the same laptop. Tested to work correctly before I sent it for RMA on my SSD. It initially was running on a micron SSD. When I got it back, it was a samsung SSD instead, according to some benchmark results. 
    Laptop : HP Envy Spectre XT 13-2018TU
    P.S I've already opened another thread on this last year. 
    http://h30434.www3.hp.com/t5/Notebook-Recovery/Unable-to-boot-from-USB-recovery-media/m-p/2197929#M1... 
    But they were stumped. 

    I had this exact same issue on a Spectre XT Pro Ultrabook. 
    The original SSD failed and I was sent a replacement, was fortunate enough to be able to create a Recovery USB stick using the wizard in Windows. When booting from USB I received the message "You are not able to restore this system with the media".
    SOLUTION: You must NOT use the Recovery USB stick in any USB3.0 port (labelled SS). Using another USB port prevented this exact error message from appearing and I was able to complete the system restore process.
    I hope this helps someone, I signed up and posted here especially for this reason!

  • Windows 8.1 system with new Office 2013 install not pulling down any Office 2013 updates from my SCCM 2012 SP1 server

    Hi,
    I've just setup a new Windows 8.1 system and added to my SCCM 2012 SP1 server and all is good and it pulled down all the correct Windows updates and pulls down automatically the FEP updates that are distributed from SCCM 2012 daily. 
    I just installed Office 2013 on this system and have activated it as necessary.  The problem is that the system doesn't seem to be pulling down any of the Office 2013 updates that have distributed thru SCCM.  I have other systems with
    Office 2013 installed and they have pulled down Office 2013 updates in the past when I published them.
    If I look at the Office 2013 updates in the SCCM console software section, I can see that for example it shows that Office 2013 SP1 (x86) is needed by one system and installed on 8 other systems and shows as downloaded and deployed.
    I've restarted the new system multiple times and also tried to force a software update check from the Configuration Manager applet but nothing seems to happen.
    What can I check to try and determine what the problem is?
    Thanks in advance,
    Nick

    Yes, the 8.1 system is a member of collection where the update deployment is targeted.
    Are there any specific logs I should check in the client?  If I check the WindowsUpdate.log I can see messages about the machine pulling down the FEP updates but that's all it appears to be doing.
    in CCM\logs, focus on the updatehandler and updatedeployment, to begin with
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Trouble in a SAP system with load balancing

    Hello masters:
    I had a trouble with workitems that came from a SAP system with load balancing. They doesn't receive the workitem ID in the UWL.
    I created another system in the portal as a "dedicated application server", and made the necessary configuration in order to replace the first one, and then my workitems worked fine.
    However, I would like to know what appened with the first system created as "system with load balancing". Why this system didn´t pass the workitem ID to the application (web dynpro abap) that execute the workitems?
    Thank you.

    I hope there was some missing configuration in the first case which was not replicating the workitem from SAP Inbox to UWL.
    Thanks
    Arghadip

  • System with load balancing server

    Hi All,
    We are having SAP NW 7.0 Portal and back end we have R3 implemented in a cluster environment.  The system object in EP have used "System with Load balancing" template; using the LOGON group and the other related parameters.
    But we have some problem with the ITS and WAS parameters; since we are using some Transaction iViews.
    Let me explain.. for the R3 cluster we have 2 systems PROD1.domain.ext and PROD2.domain.ext. Now in the system object in portal, how to specify the parameters for ITS and WAS parameters? Since the host name in these we need to specify a single server which defeats the basic purpose of having clustered environment.
    Can any one please help in resolving this issue.
    Thanks,
    Sravanthi

    Hi Sravanthi,
    Please check the below for finding ITS and WAS parameters from backend :
    For ITS - Go to SE37 >> Utilities >> Setting >> Click on ICON Right Top Corner in popup window >> Select Internet Transaction Server >> you will find the Standard Path and HTTP URL.
    For WAS - Go to SE37 >> Run FM - RSBB_URL_PREFIX_GET >> Execute it >> you will find PRefix and PAth paramter for WAS.
    Please refer to this may help step-by-step : How-to create a portal system for using it in Visual Composer
    Hope it helps
    Regards
    Arun

Maybe you are looking for

  • [Solved] NetworkManager-pptp VPN not working after update to 0.9.10

    Hello, I have a PPTP VPN set up and it's been working for a long time.  However, after I updated last night to networkmanager-0.9.10, it is no longer able to connect to the remote network.  I can activate the VPN connection, enter my password, but af

  • Pages is inserting 2011 instead of 2012.

    I JUST noticed this but when I tell Pages to insert the date it inserts the correct day, month, and time but the wrong year!  2011 instead of 2012. I have it set up in services (I forgot how I did it as it was a while ago) and I usually hit Command-S

  • Optimize media not available for XDCAM?

    Hi all, I'm really liking the new X update, and am surprised to see all the posts with possible issues on this forum on 10.0.6 - so far I'm not experiencing any issues, except that I normally have the option to optimize (create Apple ProRes files) of

  • Default system names for several RFCs in a WebDynpro project

    Hi , I have a doubt, currently I am adding several RFCs to a WebDynpro project , all of them with the same "Default system logical name" for model instances and RFC metadata.. It is ok to give the same "default system logical name" for all my RFCs" o

  • Western Digital 1TB My Book Pro Freezes while listening to iTunes.

    MP3 collection is on the MyBook. iTunes plays MP3s when all of a sudden, during a song, it halts playback and Finder with it (beachball). Can't access Finder nor the mounted MyBook drive. Any kind of query on the MyBook (through Terminal or Disk Util