Performance turning problem please help!!!!!!!!!!!!!!!!!!!!!

I have the script below and the explain plan
select
leaseid detail_lease,
unit,
bldgid bldgid_A,
bldgname,
orgdesc1,
space_uom,
sum(area) Area
from (
SELECT DECODE (mc.MASTER,
NULL, sl.leaseid,
mc.MASTER
) AS leaseid,
DECODE (SUBSTR (sl.bldgid, 1, 1),
'P', 'PARK',
'SQMTR'
) AS unit,
sl.bldgid, f.flrname,
-- chg 19602 not to show Unassigned area
--NVL (o.orgdesc1, 'Unassigned') AS orgdesc1,
orgdesc1,
-- chg 19602
SUM (DECODE (SUBSTR (sl.bldgid, 1, 1),'P', 1,NVL (Cst_Convert_Uom (s.spuarea,s.uom_std_id,'METR_MTR') * so.PERCENT *.01,0)
) AS area,
DECODE (SUBSTR (sl.bldgid, 1, 1),
'P', 'PARK',
'SQMTR'
) AS space_uom,
NVL (bldg.bldgname, l.lgldesc) AS bldgname
FROM fisinterface.vfis_lease_master_component mc,
space_lease sl,
FLOOR f,
(SELECT spaceorg.bldgid, spaceorg.flrid, spaceorg.spid,
spaceorg.orgid,spaceorg.PERCENT
FROM spaceorg
WHERE TRUNC (SYSDATE) >=
NVL (TRUNC (spaceorg.start_date), TRUNC(SYSDATE) - 1)
AND TRUNC (SYSDATE) <=
NVL (TRUNC (spaceorg.end_date), TRUNC(SYSDATE) + 1)) so,
org o,
lease l,
SPACE s,
vfis_bldg_main_name bldg
WHERE sl.leaseid = mc.component(+)
AND f.bldgid = s.bldgid ||''
AND f.flrid = s.flrid ||''
AND s.bldgid = so.bldgid(+)
AND s.flrid = so.flrid(+)
AND s.spid = so.spid(+)
AND so.orgid = o.orgid(+)
AND s.bldgid = sl.bldgid
AND s.flrid = sl.flrid
AND SUBSTR(S.SPSTATOW,1,1) = 'A'
AND s.spid = sl.spid
AND DECODE (mc.MASTER, NULL, sl.leaseid, mc.MASTER) =
l.leaseid
AND l.ltflag = 'T'
AND s.bldgid = bldg.bldgid(+)
GROUP BY DECODE (mc.MASTER, NULL, sl.leaseid, mc.MASTER),
DECODE (SUBSTR (sl.bldgid, 1, 1), 'P', 'PARK', 'SQMTR'),
sl.bldgid,
f.flrname,
o.orgdesc1,
DECODE (SUBSTR (sl.bldgid, 1, 1), 'P', 'PARK', 'SQMTR'),
NVL (bldg.bldgname, l.lgldesc))
GROUP BY leaseid, unit,bldgid , bldgname, orgdesc1,space_uom
ORDER BY LEASEID ,bldgid, ORGDESC1
EXPLAIN PLAN
Operation     Object Name     Rows     Bytes     Cost     Object Node     In/Out     PStart     PStop
SELECT STATEMENT Optimizer Mode=ALL_ROWS          87           1562                     
SORT GROUP BY          87      91 K     1562                     
VIEW          87      91 K     1561                     
HASH GROUP BY          87      23 K     1561                     
HASH JOIN          87      23 K     1560                     
HASH JOIN          87      21 K     1518                     
TABLE ACCESS BY INDEX ROWID     FAMIS.LEASE     1 K     79 K     62                     
INDEX RANGE SCAN     FAMIS.LEASE_LTFLAG_I     1 K          2                     
HASH JOIN OUTER          837      153 K     1456                     
HASH JOIN OUTER          406      63 K     1163                     
HASH JOIN OUTER          406      55 K     841                     
NESTED LOOPS OUTER          406      41 K     834                     
HASH JOIN          406      25 K     529                     
TABLE ACCESS FULL     FAMIS.SPACE     1 K     41 K     467                     
INDEX FAST FULL SCAN     FAMIS.SPACE_LEASE_PK     40 K     1 M     61                     
TABLE ACCESS BY INDEX ROWID     FAMIS.SPACEORG     1      40      1                     
INDEX RANGE SCAN     FAMIS.CST_SPACEORG_BFSPID     1           1                     
TABLE ACCESS FULL     FAMIS.ORG     1 K     46 K     7                     
VIEW     FISINTERFACE.VFIS_LEASE_MASTER_COMPONENT     2 K     39 K     322                     
HASH UNIQUE          2 K     588 K     322                     
HASH JOIN          2 K     588 K     188                     
HASH JOIN          2 K     333 K     112                     
TABLE ACCESS FULL     FAMIS.LEASE     7 K     965 K     76                     
TABLE ACCESS BY INDEX ROWID     FAMIS.BUILDING_JOURNAL     12 K     322 K     292                     
INDEX RANGE SCAN     FAMIS.CST_BUILDING_JOURNAL_TYPE_IX     12 K          37                     
TABLE ACCESS FULL     FAMIS.FLOOR     11 K     285 K     41                     
The space table has 118488 records and its doing a full table scan. the primary key in this table is BLDGID, FLRID, SPID
vfis_lease_master_component is a view and has 7737 records and a full scan is done.
re_doc_relationship is a view with 10833 and doing a full table scan
lease is a table with 13807 records and a full table can is performed the primary key is lease ID
Floor is a table with 1125 records and it doing a full table scan The primary key is
Bldgid, flrid.
Am using this query in oracle reports and the report is timming out in the browser which is not acceptable to the user. Any help will be greately appreciated.
Thank you.

When I first saw this, I thought I would skip my evening SuDoKu and do this SQL instead. Well, in the end I did the SuDoKu and managed only to make the SQL readable.
select leaseid detail_lease
      ,unit
      ,bldgid bldgid_A
      ,bldgname
      ,orgdesc1
      ,space_uom
      ,sum(area) Area
from  (SELECT DECODE (mc.MASTER
                     ,NULL, sl.leaseid
                     ,mc.MASTER) AS leaseid
             ,DECODE (SUBSTR (sl.bldgid, 1, 1)
                     ,'P', 'PARK'
                     ,'SQMTR') AS unit
             ,sl.bldgid
             ,f.flrname
             ,orgdesc1
             ,SUM (DECODE (SUBSTR (sl.bldgid, 1, 1)
                          ,'P', 1
                          ,NVL (Cst_Convert_Uom (s.spuarea,s.uom_std_id,'METR_MTR') * so.PERCENT *.01,0))) AS area
             ,DECODE (SUBSTR (sl.bldgid, 1, 1)
                     ,'P', 'PARK'
                     ,'SQMTR') AS space_uom
             ,NVL (bldg.bldgname, l.lgldesc) AS bldgname
       FROM   fisinterface.vfis_lease_master_component mc
             ,space_lease sl
             ,FLOOR f
             ,(SELECT spaceorg.bldgid
                     ,spaceorg.flrid
                     ,spaceorg.spid
                     ,spaceorg.orgid
                     ,spaceorg.PERCENT
               FROM   spaceorg
               WHERE  TRUNC (SYSDATE) >= NVL (TRUNC (spaceorg.start_date), TRUNC(SYSDATE) - 1)
                 AND  TRUNC (SYSDATE) <= NVL (TRUNC (spaceorg.end_date), TRUNC(SYSDATE) + 1)) so
             ,org o
             ,lease l
             ,SPACE s
             ,vfis_bldg_main_name bldg
       WHERE  sl.leaseid = mc.component(+)
         AND  f.bldgid   = s.bldgid ||''
         AND  f.flrid    = s.flrid ||''
         AND  s.bldgid   = so.bldgid(+)
         AND  s.flrid    = so.flrid(+)
         AND  s.spid     = so.spid(+)
         AND  so.orgid   = o.orgid(+)
         AND  s.bldgid   = sl.bldgid
         AND  s.flrid    = sl.flrid
         AND  s.spid     = sl.spid
         AND  l.ltflag   = 'T'
         AND  s.bldgid   = bldg.bldgid(+)
         AND  SUBSTR(S.SPSTATOW,1,1) = 'A'
         AND  DECODE (mc.MASTER
                     ,NULL, sl.leaseid
                     ,mc.MASTER) = l.leaseid
       GROUP  BY DECODE (mc.MASTER
                        ,NULL, sl.leaseid
                        ,mc.MASTER)
                ,DECODE (SUBSTR (sl.bldgid, 1, 1)
                        ,'P', 'PARK'
                        ,'SQMTR')
                ,sl.bldgid
                ,f.flrname
                ,o.orgdesc1
                ,DECODE (SUBSTR (sl.bldgid, 1, 1)
                        ,'P', 'PARK'
                        ,'SQMTR')
                ,NVL (bldg.bldgname, l.lgldesc))
GROUP  BY leaseid
         ,unit
         ,bldgid
         ,bldgname
         ,orgdesc1
         ,space_uom
ORDER BY  LEASEID
         ,bldgid
         ,ORGDESC1At first, we have a select with a few columns, group by and order by. No problem... Except, what about the "from"?
This is itself a select with a group by.... Also nothing special.
Only, the inner select is picking data from eight tables, of which one is itself a select, then adding four outer joints.
I think this is where the combination of parser and optimizer is about to give up. No amount of tuning will really solve that problem.
I believe the creators of the database state that one should not join more than five tables in a select.
Maybe a couple of views on some of the data would help?
In my opinion, there has got to be a design issue stuck here somewhere and modifying the select isn't really going to solve that.
Sorry.... My opinion.... Maybe someone else has better advice....

Similar Messages

  • My iphone is on recovery mode and i can´t turn on it, when i try to recover it from itunes i get: "unknown error (36), i´ve tried to do lot of things but i can´t  solve my problem. please help!!

    my iphone is on recovery mode and i can´t turn on it, when i try to recover it from itunes i get: unknown error (36), i´ve tried to do lot of things but i can´t solve my problem. please help!!

    Hi, i had the same problem. Try to find the file "apple" or "itunes" don't know it anymore exactly. Ahm well you need to delet any information or just plug in your iphone into an other computer. important is that your iphone never has been pluged in this computer before. This was what i did, and it worked!

  • My Ipad 2 does not turn on when not plugged to electricity. Even when plugged to electricity, it constantly restarts/switches itself off. what is the problem, please help??

    My Ipad 2 does not turn on when not plugged to electricity. Even when plugged to electricity, it constantly restarts/switches itself off. what is the problem, please help??

    i plugged it and pressed the home button for a few seconds. the connect to itunes screen appeared and the moment i disconnect the cable from the electric plug, it switches off. when i connect the cable to the PC, nothing happens, its as if nothing has been done.

  • Hello sir my iphone screen turns off after using 2-5 minutes what would be the problem please help me out

    hello sir my iphone screen turns off after using 2-5 minutes what would be the problem please help me out

    To make sure that this is not software related, set it back to factory settings, without using any backup data afterwards. Set up the rest of the personal settings manually and test the phone. If it still does not work, this is a hardware issue and the phone has to be serviced by Apple or an Authorized Apple Service Provider:
    Use iTunes to restore your iOS device to factory settings - Apple Support
    Find an Apple Authorized Service Provider
    iPhone - Contact Support - Apple Support

  • TS4436 Iphone 4 camera worked fine for 2 years then turned all flash photos red after installed Fast Torchlight App - deletion of app did not fix camera problem - please help?

    Iphone 4 camera worked fine for 2 years then all photos with flash came out as red after installed Fast Torchlight App - deletion of app did not fix camera problem - please help?

    Try This...
    Close All Open Apps...  Sign Out of your Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    If no joy...
    Connect to iTunes on the computer you usually Sync with and “ Restore “...
    http://support.apple.com/kb/HT1414

  • Iphone activation problem, please help me

    Hello, I have a problem with the iPhone 3GS and you can not turn on, please help me, thanks

    Previous thread info:
    TeeKnows
    This solved my questionRe: Hello, I have a problem with the iPhone 3GS and you can not turn on, please help me, thanks 
    Jul 24, 2013 6:40 AM (in response to samy andrey)
    A couple of weeks ago you postedhttps://discussions.apple.com/message/22397885#22397885
    Sounds like your phone was locked and perhaps had it jailbroken or unlocked and now your device is not working.  Is this correct?

  • My iPad stop working suddenly i see black screen only pressing the home? and sleep button dose not solve the  problem please help?

    My iPad stop working suddenly i see black screen only pressing the home and sleep button dose not solve the problem please help ?

    Frozen or unresponsive iPad
    Resolve these most common issues:
        •    Display remains black or blank
        •    Touch screen not responding
        •    Application unexpectedly closes or freezes
    http://www.apple.com/support/ipad/assistant/ipad/
    iPad Frozen, not responding, how to fix
    http://appletoolbox.com/2012/07/ipad-frozen-not-responding-how-to-fix/
    iPad Frozen? How to Force Quit an App, Reset or Restart Your iPad
    http://ipadacademy.com/2010/11/ipad-frozen-how-to-force-quit-an-app-reset-or-res tart-your-ipad
    Black or Blank Screen on iPad or iPhone
    http://appletoolbox.com/2012/10/black-or-blank-screen-on-ipad-or-iphone/
    What to Do When Your iPad Won't Turn On
    http://ipad.about.com/od/iPad_Troubleshooting/ss/What-To-Do-When-Your-Ipad-Wo-No t-Turn-On.htm
    iOS: Not responding or does not turn on
    http://support.apple.com/kb/TS3281
    Home button not working or unresponsive, fix
    http://appletoolbox.com/2013/04/home-button-not-working-or-unresponsive-fix/
    Fixing an iPad Home Button
    http://tinyurl.com/om6rd6u
    iPad: Basic troubleshooting
    http://support.apple.com/kb/TS3274
     Cheers, Tom

  • My iphone 5 32 gb has an camera autofocus problem, please help me solve this

    my iphone 5 32 gb has an camera autofocus problem, please help me solve this

    Hi teejayfs,
    Thanks for visiting Apple Support Communities.
    If you've noticed unexpected behavior with your iPhone camera, start with these steps to isolate or resolve the issue:
    Camera isn't functioning or has undesired image quality
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Note: Video-recording features are not available on original iPhone or iPhone 3G.
    If your iPhone has a front and rear camera, try switching between them to verify if the issue persists on both.
    You can find these steps here:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Regards,
    Jeremy

  • Hi guys i have an ipad 1 and when i plug it in to my macbook pro picasa opens up and show its name but when i open itunes i cant find the name, ive been working my head out to solve the problem please help me:(

    hi guys i have an ipad 1 and when i plug it in to my macbook pro picasa opens up and show its name but when i open itunes i cant find the name, ive been working my head out to solve the problem please help me:(

    Pay no attention to iinami, the amount of replies to people saying their handsets must have been jailbroken everytime iTunes throws out an error is tremendous. (Clearly you don't need to have any real knowledge to get to level 3 on these forums, let's hope apple's geniuses know a lot more than some of their customers.)
    http://support.apple.com/kb/TS3694
    Solution below.
    Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes. This can occur if the device is manually disconnected during the restore process. This issue can be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.

  • P6N Lots of problems please help

    P6N Lots of problems please help
    The setup is the following:
    P4 D935 3.2gHz
    P6N Diamond MS-7320 Bios 1.3V
    Corsair XMS2-6400C4DHX
    NX8600GT-TD512EZ/D2
    Seagate Barracuda 7200 250Gb SataII 16Mb
    Akasa 460W Dual Rail
    Please help I have lots and lots of problems with lockups that can happen any time post , bios , loading vista and sometimes during OS. Some times will work ok play games etc. Already tried different combinations fitting the mem modules even tried and some pc4200 modules same problems. Spent lots of hours clocking the mems with different settings but non is stable. I am not interested in overcloking just to make it stable to start with. When is actually running is fine is more than enough for me. Already looked to lots of posts on the msi forum but… Since the cpu is old can I go back on an older bios version???? The Corsair modules have to run at 2.1V or is it possible to use them with slower setting. So confused so lost ….. please HELLPPPPP
    Any help greatly appreciated.

    please, don't buy any more unneded parts.  first find the problem then buy if no solutions available.
    One thing I find with BIOS issues is to do a full clear.
    1. disconnect the power cord from the power supply(turn switch to off if there is one.
    2. hit the power switch to clear the power out of the system.
    3. set the cmos jumper to clear and leave there if one is available.
    4. Pull the battery.
    5. carefully short out the battery connector on the motherboard to drain any power left.
    6. press the clear cmos button and hold for 30sec minimum, if you didn't have a jumper to set. 
    7. replace battery, move jumper back, plug in power cord, turn on power sipply switch.
    Now it should hopefully power up.  go into BIOS and load optimized results. hit save and exit and when it gets back to the post screen, go back into bios and set your normal MB settings(ie. set boot devices, boot order, disable sound if using sound card, etc...)
    go into your H/W Monitor section and list the CPU Vcore settings to make sure it is getting the power it needs.  I just looked it up and it's suppose to run from 1.225v - 1.325v.
    also, try your most generic ram you have with auto settings.  the faster the ram usually the more volts they need and default volts are 1.8v for ram and sometimes faster chips have issues with lower volts.
    Let me know how this works for you.
    -=Mark=-
    ps. make sure everything is unplugged from the computer you don't need.  just cpu, 1 stick of ram, and video. and of course keyboad and mouse.  Please make a signature with all your systems specs including make and model numbers.  I hate guessing at solutions and I'd hate to see you buy any more unneccessary parts because of lack of information.

  • Ipod won't turn on please help!!!!!

    ok so i need an answer within ten minutes of this post if you don't have an answer for me withing ten minutes don't bother posting, so it's 10 30 at night i wanna put a new cd i just bought onto my ipod so i upload the cd to my mac plugin my ipod and the stupid ipod updater pops up, i usually ignore this annoying little window but i figured what the heck and clicked update anyway, so my ipod starts to update and the screen goes to the apple with a little bar underneath when nothing happens for ten minutes i figure i need to restart it or something right because this was my first time updating the new ipod, so i restart it and the thing won't turn on again i tried to reset and could find no troubleshooting for this problem, please help me!!!! i could go in the morning and get a new one at the place where i bought it but i really don't have the time seeing im starting school tomorrow, thanks

    I have the same problem with my iPod, only PLEASE Reply to this, I dont want to buy another iPod. The excat same thing happened to me though, and I need some help. I tired different USBs, putting it into charge mode, resetting it, and putting it into a speaker dock. The problem is definitely with the iPod. But Im begging for help!! PLEASE!!

  • Is there another way i could turn my phone on? it wont turn on or show me the battery screen to show its charging. i already tried to hold the on and home button at the same time but it does not want to turn on. please help?

    is there another way i could turn my phone on? it wont turn on or show me the battery screen to show its charging. i already tried to hold the on and home button at the same time but it does not want to turn on. please help?

    Device Not Recognised
    For PC
    http://support.apple.com/kb/TS1538
    For Mac
    http://support.apple.com/kb/ts1591

  • Problem Please help me.....Let me know the area to look for it I am a DBA..

    Problem Please help me.....Let me know the area to look for it I am a DBA..Thanks in advance to let me know the cause and the area to look and fix it...
    Server Error in '/' Application.
    Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Web.Services.Protocols.SoapException: Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 
    Stack Trace:
    [SoapException: Problem with SAP/BAPI.
    SAP.Connector.RfcCommunicationException: Connect to message server failed
    Connect_PM  MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       service 'sapmsPRD' unknown
    TIME        Wed May 04 08:59:06 2005
    RELEASE     620
    COMPONENT   NI (network interface)
    VERSION     36
    RC          -3
    MODULE      ninti.c
    LINE        428
    DETAIL      NiPServToNo
    SYSTEM CALL getservbyname
    COUNTER     1
       at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode)
       at SAP.Connector.SAPConnection.Open()
       at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn)
       at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn)
       at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type)
       at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)]
       System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) +1503
       System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +218
       SoftwareKeyUI.InstalledBaseDataWS.InstalledBaseData.LoadKPIRegionMulti(DataSet products)
       SoftwareKeyUI.InstalledBaseDataAccess.LoadKPIRegionMulti(DataSet products)
       SoftwareKeyUI.InstalledBase.GetRegionDetails(Int32 userId, String product, String regionType)
       SoftwareKeyUI.FilteredAccess.GetRegionDetails(Int32 userId, String product, String regionType)
       SoftwareKeyUI.search.LoadRegionDetails()
       SoftwareKeyUI.search.regionType_SelectedIndexChanged(Object sender, EventArgs e)
       System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(EventArgs e) +108
       System.Web.UI.WebControls.DropDownList.System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent() +26
       System.Web.UI.Page.RaiseChangedEvents() +115
       System.Web.UI.Page.ProcessRequestMain() +1099

    The error is a very basic one - the sapmsPRD service is not known. You will have to go to <NT_ROOT>\system32\drivers\etc and add the entry sapmsPRD 3600 to this file.
    This is basically telling the requester at what port to look for the message server.
    C

  • Problem Please help me.....Let me know the area to look for it

    Problem Please help me.....Let me know the area to look for it I am a DBA..Thanks in advance to let me know the cause and the area to look and fix it...
    Server Error in '/' Application.
    Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Web.Services.Protocols.SoapException: Problem with SAP/BAPI. SAP.Connector.RfcCommunicationException: Connect to message server failed Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD LOCATION CPIC (TCP/IP) on local host ERROR service 'sapmsPRD' unknown TIME Wed May 04 08:59:06 2005 RELEASE 620 COMPONENT NI (network interface) VERSION 36 RC -3 MODULE ninti.c LINE 428 DETAIL NiPServToNo SYSTEM CALL getservbyname COUNTER 1 at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode) at SAP.Connector.SAPConnection.Open() at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn) at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn) at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type) at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [SoapException: Problem with SAP/BAPI.
    SAP.Connector.RfcCommunicationException: Connect to message server failed
    Connect_PM MSHOST=prddb01.lamrc.com, R3NAME=PRD, GROUP=Prod HR PRD
    LOCATION CPIC (TCP/IP) on local host
    ERROR service 'sapmsPRD' unknown
    TIME Wed May 04 08:59:06 2005
    RELEASE 620
    COMPONENT NI (network interface)
    VERSION 36
    RC -3
    MODULE ninti.c
    LINE 428
    DETAIL NiPServToNo
    SYSTEM CALL getservbyname
    COUNTER 1
    at SAP.Connector.SAPConnection.ThrowRfcException(RFC_ERROR_INFO_EX rfcerrInfo, Encoding encoding, String languangeCode)
    at SAP.Connector.SAPConnection.Open()
    at SAP.Connector.SAPClient.RfcInvoke(String method, Object[] methodParamsIn)
    at SAP.Connector.SAPClient.SAPInvoke(String method, Object[] methodParamsIn)
    at SoftwareKeySAPG.SAPProxy1.Z_Bapi_Load_Kpi_Region(ZSOFT_KPI_REGIONS_MTable&amp; Kpi_Regions, ZSOFT_PROD_TYPETable&amp; Prod_Type)
    at SoftwareKeySAPG.SAPGSK.LoadKPIRegion(DataSet dsProduct)]
    System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage message, WebResponse response, Stream responseStream, Boolean asyncCall) +1503
    System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String methodName, Object[] parameters) +218
    SoftwareKeyUI.InstalledBaseDataWS.InstalledBaseData.LoadKPIRegionMulti(DataSet products)
    SoftwareKeyUI.InstalledBaseDataAccess.LoadKPIRegionMulti(DataSet products)
    SoftwareKeyUI.InstalledBase.GetRegionDetails(Int32 userId, String product, String regionType)
    SoftwareKeyUI.FilteredAccess.GetRegionDetails(Int32 userId, String product, String regionType)
    SoftwareKeyUI.search.LoadRegionDetails()
    SoftwareKeyUI.search.regionType_SelectedIndexChanged(Object sender, EventArgs e)
    System.Web.UI.WebControls.ListControl.OnSelectedIndexChanged(EventArgs e) +108
    System.Web.UI.WebControls.DropDownList.System.Web.UI.IPostBackDataHandler.RaisePostDataChangedEvent() +26
    System.Web.UI.Page.RaiseChangedEvents() +115
    System.Web.UI.Page.ProcessRequestMain() +1099

    Hi
    You should make a mapping for the service sapmsPRD in your /etc/services file (On Windows: C:WINDOWSSYSTEM32DRIVERSETCservices). If your instance number is 00 you will have to add the following entry:
    sapmsPRD      3600/tcp
    Good luck!
    René van Es

  • [TV@Master] Problem please help

    I have Msi.mother board PT8-Neo -LSR ,  Model No.Ms-6799 , main board bios -Phonenix ,maind board version i updat it to 2.2 , cpu size 2.4 G celleron D/256/533 , memory size 256DDram (400),display card Nvidia Riva TNT2 model 64
    the problem that i face it when i put my TV@nywhere -master card ,the pc stop at the main page that show the biso version and name of bios company and the letters do not bost well it look like a virus work , and when i take tha card off the pc go normally , i tried put it to other PCI the same problem
    please help

    i meany by fix the problem of getting the pc go on to windows with card on PCI salot but i still have the broblem of the driver
    please read my reply again
    my operating system is win me and i have also another pc have XP
    when i log in to windows the system show that found my TV@nywhere card but it didnt took the installatin driver for it i tried to install the driver directly
    but it give me this 2 mesages  when i try to install the driver
    MSI TV card is not found ,stop the installation
    the other message is
    MSI pvs driver installatin failed
    i download the driver from msi page also give me the same messages
    for known on Device Manager it show me that the driver there but do not have the driver and the ? mark beside them
    what to do now 

Maybe you are looking for