Frustrated with concatenation problem, please help!!

To simplify the senario:
I have 2 binding variables, V_Field1 and V_Field2, and a lexical parameber P_SELECT
In the After Form triger
:P_SELECT := :V_Field1||CHR(32)||:V_Field2
The SQL is
SELECT &P_SELECT AS GROUP1 ......
The point is that I want to select 2 fields together with a space between them, such as LName||' '||FName AS Name, for some reason I always get an "Invalid Number" error when the query is run.
The query runs fine if :P_SELECT := :V_Field1||:V_Field2
How can I put a space between V_Field1 and V_Field2!!??
Thanks

Hi, Splazm
Thanks for the reply. I didn't try your 2nd solution. But I know the 1st one would return "invalid number."
My conlusion is that a concatenated select field in report builder SQL must contain same datatype. The thing is I don't understand "why" ? A select statement such as select 111||' '||222 from dual would work fine in sqlplus. But similar situation wouldn't work in Report. I cannot even use to_char(111)||' '||to_char(222) in Report.
Anyways, I finally got to work around it. My solution is to write a SQL as follow
SELECT &P_SELECT
FROM (SELECT to_char(column1) AS col1,
to_char(column2) AS col2,
FROM tableA)
In the After Form Trigger
:P_SELECT := :P_SELECT||'||chr(32)||'||:V_FIELD2;

Similar Messages

  • HT201209 I'm new to this an yesterday I bought 65$ worth of iTunes music using a iTunes gift card. Then I got these emails saying I am being billed again????? What do I do???? I'm very frustrated with this. Please help me

    yesterday I bought 65$ worth of iTunes music using a iTunes gift card. Then I got these emails saying I am being billed again????? What do I do???? I'm very frustrated with this. Please help me

    What e-mail are you talking about?
    What exactly did it say?
    Are you sure that the e-mail was not your receipt?

  • /dev/poll with libevent problem Please help me!!!

    libevent compiled fine, but not worked.
    When i run "make verify" i got reply:
    cd ./test && make verify
    Running tests:
    KQUEUE
    Skipping test
    DEVPOLL
    test-eof: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    test-weof: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    test-time: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    regress: [warn] ioctl: DP_POLL: Invalid argument
    FAILED
    POLL
    test-eof: OKAY
    test-weof: OKAY
    test-time: OKAY
    regress: OKAY
    SELECT
    test-eof: OKAY
    test-weof: OKAY
    test-time: OKAY
    regress: OKAY
    RTSIG
    Skipping test
    EPOLL
    Skipping test
    Answer on uname -a
    SunOS gamesys01 5.10 Generic_118822-02 sun4u sparc SUNW,Sun-Fire-V490
    I am trying to compile libevent v1.0, v1.0c, v1.1, v1.1a with some effect. Please help me. Oua project did not work without memcached who using libevent. How can i solve this problem?

    I am already find cure for this problem. It is here: http://forum.sun.com/thread.jspa?forumID=272&threadID=26396

  • Dialup with slip problem, please help me

    Hi All,
    My diagarm
    PSTN
    PC( with modem ) --------> Router 2811( with NM8-AM-Module ) | LAN
    I has creat a connection when dialup with slip but I do not registing on my network becase Router don't assigned IP.
    Please help me how to configure aaa authorization network on Router.
    aaa authentication login default local
    aaa authentication ppp default local none
    aaa authorization network default local none
    interface Loopback0
    ip address 192.168.15.1 255.255.255.0
    interface Group-Async1
    description $FW_OUTSIDE$
    ip unnumbered Loopback0
    encapsulotion slip
    ip nat inside
    ip nat enable
    ip virtual-reassembly
    ip tcp header-compression passive
    async mode interactive
    peer default ip address pool DIALIN
    group-range 1/0 1/7
    routing dynamic
    ip local pool DIALIN 192.168.15.60 192.168.15.70
    line 1/0 1/7
    login authentication
    modem InOut
    modem autoconfigure type micro_usa
    transport input all
    autoselect during-login
    autoselect slip
    stopbits 1
    Please end eemail to: [email protected]
    Thanks and best regard

    If asynchronous dynamic routing is enabled, you can enable routing at the user level by using the routing keyword with the slip or ppp EXEC command.
    To enable IP-SLIP on a synchronous or asynchronous interface, use the following commands in interface configuration mode:
    Step 1 : Router(config-if)# ip address ip-address mask or
    Router(config-if)# ip unnumbered type number
    Step 2 : Router(config-if)#encapsulation slip
    Step 3 : Router(config-if)# async mode interactive
    For the AAA authentication following URL help you :
    http://www.cisco.com/en/US/docs/ios/12_2/security/configuration/guide/scfathen.html#wp1000971

  • Got dizzy with this problem,please help!

    I am trying to write a simple pagingGrid component,but i don't know why when i click next page icon,it still show the first page. i wrote a scroller component ,its renderer and a scroller tag.The paging process is like this, taking "next" action for example, and please be patient:
    Step 1 i click the "next" icon, in the renderer it is rendered like this:
    String clientId = component.getClientId(context);
             String formId=RendererUtil.getFormId(context,component);
             ScrollerAction scrollerAction=TagUtil.getCurrentScrollerAction();
             String path="http://localhost:8080/JSFOnStart/index.faces";
             scrollerAction.setClientID(clientId);
             scrollerAction.setFormID(formId);
             String imagePath="next.gif";
              writer.startElement("a", component);
             writer.writeAttribute("href", path, null);
             writer.writeAttribute("onclick",
                      // submit form in which the scroller resides
                       "document.forms['" + formId + "'].submit(); ", null);
             writer.startElement("img",component);
             writer.writeAttribute("src",imagePath,null);
             writer.endElement("img");
             writer.endElement("a");
             scrollerAction.setAction("next");The scrollerAction is a managed bean of ScrollerAction class with the session scope.I think I could share information between components by storing the info in session scoped managed bean,and every time i need it, i use the following code to get the instance:
    public static ScrollerAction getCurrentScrollerAction()
                   FacesContext context=FacesContext.getCurrentInstance();
                   Application app=context.getApplication();
                   VariableResolver vr=app.getVariableResolver();
                   ScrollerAction scroller=(ScrollerAction)vr.resolveVariable(context,"scrollerAction");     
                  return scroller;
              }I think during the session,i will always get the same instance no matter in which component i invoke the above method,maybe some problem with this?
    Step 2: In the setProperties(..) method of PagingGridTag class, i get the ScrollerAction instance with the above getCurrentScrollerAction() method,and in the very similar way, i got a PagingParam instance which is also a session scoped managed bean and it stores the information like currentPage, totalPages and so on. By using the two instances, I got the action value and infos like current page and total page count.Based on these information, i do some calculation to set the value of current page,rows to be displayed,start row index and so on, the calculation is simple and i am sure it is right.The corresponding component is HtmlPagingGrid which is a subclass of HtmlDataTable, and i can set the "rowIndex" and "rows" of it to do paging.
    But i don't know why it is not working well when i click the "next" icon.
    Maybe it is one of such problems below or some other problems:
    1 the javascript part is not right, i only use one page "index.jsp" to test it out.
    2 everytime i try to get ScrollerAction and PagingParams instances,actually i got a new instances, so the informations are always for the first page.
    The whole thing seems not complex,but i got really dizzy with it, and if you are interested in this topic and want to have the code to check the problem out, please send an email to me,mine is [email protected], then i will reply your email with my code attached.Thanks:)
    Best Regards:)
    Robin

    *i deleted all my music on itunes to free up disc space on my pc.*
    Why not leave it on the external drive and let iTunes use that for all your music?
    *as i manually manage my itunes so as not to reload my music in a file*
    I have no idea what this means.
    I autosync my iPod with selected playlists.
    Only new songs get loaded onto the iPod and old songs get taken off. It doesn't reload everything.
    If yopu cannot find the podcasts on the iPod to delete them, you will need to restore the iPod.

  • Using Mac Mail with Exchange problem - Please HELP

    When using mac mail with exchange server 2000 when i delete an email from mac mail it doesnt delete it from exchange i know this because when i login to my email from microsoft outlook the mail that i deleted is still there.
    i have tried changing the mailbox behaviours in mail preferences to not store deleted messages on the server but this didnt do anything do i need to setup directory access in utilities to get an exchange account to work properly any help would be appreciated as we dont want to have to use microsoft products
    many thanks

    Are you set up for POP or IMAP? For POP, that's the normal behavior. For IMAP, try making sure you have the synchronize mail folders option selected. The is under Mail->Preferences->Accounts->Advanced.

  • Hi .. my iPad 4 with iso 7.0.3 he is restarting himself ... How can i solve this problem please help me

    Hi .. my iPad 4 with iso 7.0.3 he is restarting himself ... How can i solve this problem please help me

    Standard troubleshooting...
    1. Try a Restart by pressing the sleep/lock button until you see the slider.  Slide to power off.  Restart by pressing the sleep/lock button until you see the Apple logo.
    2. Try a Reset by pressing the home and sleep buttons until you see the Apple logo. Takes about 5-15 secs of button holding and you won't lose any data or settings.
    3. Remove apps from Recently Used list...
    - From any Home Screen, double tap the home button to bring up the Recents List
    - Swipe up on the app preview card to remove it from the list
    - Press the home button when done.
    4. If still a problem restore with your backup.
    5. If still a problem restore as new, i.e. without your backup. See how it runs with nothing synced to it.
    6. If still a problem, it's likely a hardware issue.

  • I have ipad4 but i have a big problem in blutooth so ican not pir this with other devices       . please help me

    i have ipad4 but i have a big problem in blutooth so ican not pir this with other devices       . please help me

    Which other devices? Please note the list of supported Bluetooth protocols below.
    http://support.apple.com/kb/HT3647

  • When I plug in my headphones into my imac only the right side plays music. I tried with other headphones and still has the same problem. I tried the headphones with other devices and they work properly. Can anyone help me with my problem please?

    When I plug in my headphones into my imac only the right side plays music. I tried with other headphones and still has the same problem. I tried the headphones with other devices and they work properly. Can anyone help me with my problem please?

    Macs have crazy headpne jacks in different models.
    So we know more about it...
    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: iMac
    Model Identifier: iMac7,1
    Processor Name: Intel Core 2 Duo
    Processor Speed: 2.4 GHz
    Number Of Processors: 1
    Total Number Of Cores: 2
    L2 Cache: 4 MB
    Memory: 6 GB
    Bus Speed: 800 MHz
    Boot ROM Version: IM71.007A.B03
    SMC Version (system): 1.21f4

  • Immportand. Problems with MB. Please help.

    Hello
    Im having a problem with my PC in the moust unpleasent moment as I can’t do my college work and I cant afford new PC in the next 4 months, so any help with my problem will be grealty appriciated.
    OK.
    Here is my problem.
    When I work and that’s usualy using Internet and Office XP my PC is starting to slow down (mouse cursor is scroling very slow, I cant close windows) and afther a while its turning off. Whell its not turn off exactly because CPU, GPU and PSU fans are still working but the monitor is turing on stand by. When this happens I can’t do restart so I have to puss power on/off button on the case of the PC to turn the PC off. If I try to turn in on afther that NumLock and CapsLock indicators on the keyboard will flash for a second as well as monitor and again only CPU, GPU and PSU fans works but the system is not starting. This happened several times and every time till now I waited for a day to start my PC again. That was till the last time. Now afther 4 days I still can’t to start my PC.
    NOTE.
    When I opned the case four led diodes that are on my MSI mainboards were lightning red. In the manual explanation for this is “The procesor might be damage or not instaled properly. Damage/discharge lithium batery”
    I doubt that the problem is procesor because the PC will never start if the procesor is damaged of instaled properly.
    Iv also changed lithium batery but the problem remained.
    And another thing. PC Alert 4 somethimes showd that CPU and system tempetarure were 78 C. Afther this restart the system and went in bios to see if that was the real temperature but the bios showed 32 C for procesor and 22 for system.
    I have the latest drivers, bios and updates for windows. Iv checked for viruses with the latest updates for Pc-cillin 2002 and I didn’t find any viruses. Iv cheked every componets on other configuratios and they worked fine.
    Now a frend of me told me that the cause of problem are condenzator on mainboard araund the procesor.
    If you know whats is the problem please help me to resolve it.
    Thank you..

    Please tell us more about your system, including PSU.
    It sounds very, very much like a melted condensator. It is not hard to check:
    Open case and look for brown or darkcoloured... yecch... on the motherboard. Another symtom will be harder and harder to start and more and more frequent shut downs.
    There are people here I believe that can guide you to change them. I would get another board because the problem might happen again. In either case, save all important work, logins, etc. to an external unit. Mail it to a friend if nothing else is available.

  • Ichat with linksys Befsr41 problems please help

    hi
    i just got a linksys router model BEFSR41 and i cant get Ichat to work. i keep getting an error message that says "i did not respond", blah blah blah,. I have seen many post on the net but none that could give a clear way of showing me what to do with the router.
    please help. i am running system 10.4.8 and the router is connected to a motorola cable modem. i use comcast high speed cable.
    any help would greatly be appreciated.
    thank you
    John
    power mac g5 dual 2 gig   Mac OS X (10.4.8)  

    This chap has emailed me as well
    The answer was:
    Hi John,
    If the Motorola is in Bridge mode (passes the public IP to the Linksys) then the Linksys can be left doing DHCP.
    The Linksys is going to have to have the port open for iChat and AIM for the PC if that is what you are doing.
    This page http://portforward.com/english/routers/port_forwarding/Linksys/BEFSR41-v3-v4-v5/ iChat.htm tells you how to access the Linksys.
    Looking at the pics it has UPnP (Use the one in Administration) This will save you having to open any ports by any other method.
    (not to mention that the ports listed for Port Forwarding on this site are wrong in iChat8 as they call it)
    UPnP will allow all the Apps on all the computers to pen the ports as they need them. It is just an Enable/ Disable setting in Administration
    On the Set Up page you will find the MTU setting. Try setting this to 1492 rather than the default 1500
    On the Set Up page you will find the spot to disable DHCP. This will then mean setting Static addresses on the computers.
    On the Mac it is done in System Preferences > Network
    Go here and then Built-in Ethernet in the second drop down.
    Go to the TCP/IP tab
    In here as default, it will be set to Using DHCP and have the other details filled in. Make a note of these before turning Off DHCP in the Linksys
    Change the drop down that read Using DHCP to Manual.
    You will now have to fill in the text fields.
    The computer can be 192.168.1.xxx where xxx is anything between ,2 and 255 (the Linksys itself is .1)
    The Subnet mask is 255.255.255.0
    The DNS will be whatever you have now.
    The "router" is 192.168.1.1 as it is now.
    Repeat for other Mac but add a different last number for the IP 192.168.1.3 for example
    On the XP machine it is done buy changing the Properties in the Network Connection.
    Go to Start > Control Panels
    Pick out the Network Services one
    Click on the one that is for the LAN network
    Right click or use the Properties Button
    Change as the mac was done. the last number of the Computer's IP will need to avoid the numbers for the Macs and router.
    If the Motorola is in bridge mode it is easy enough to leave the Linksys doing DHCP and UPnP.
    Also
    On the Macs make sure System Preferences > Quicktime > Streaming tab has the drop down set to your Connection download speed.
    Check in iChat > Preferences > Video section > Bandwidth Limit drop down that it is set to NONE.
    If it still does not work try this:
    Go to iChat > Preferences > Accounts.
    Make sure you are logged out of AIM.
    Go to the Server Setting tab
    Change the 5190 port to 443
    These are the most common things to check at your end.
    10:53 PM Monday; December 4, 2006

  • Weirdest problem with ipod!PLEASE HELP ME!!!

    Okay, i tried to load a playlist that had about 100 songs on it. While its loading, the update just stops. My ipod starts going crazy.The apple logo keeps lighting up and then the light doesnt come on but the logo is still there. You can hear the inside of it like trying to come on but then it just keeps doing the same thing til the battery life runs out! I really need help on this! I've tried to reset but everytime I do it it just keeps doing the same thing. I dont know if i should wipe all my songs off of itunes or what but im so confused and so aggravated with it. PLEASE HELP ME! I'D REALLY APPRECIATE IT!
      Windows XP  

    Welcome to Apple Discussions!
    See if any of these help...
    iPod Only Shows An Apple Logo and Will Not Start Up
    iPod Only Shows An Apple Logo
    btabz

  • 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& Kpi_Regions, ZSOFT_PROD_TYPETable& 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& Kpi_Regions, ZSOFT_PROD_TYPETable& 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& Kpi_Regions, ZSOFT_PROD_TYPETable& 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

  • HT4623 my voice call services is not working with cellular network...only works fine with wifi..please help?

    my voice call services is not working with cellular network...only works fine with wifi..please help?

    Since you have already done some sort of reset on your Airport Express, you might as well make sure it was a "hard reset" - follow the instructions for a hard reset found at:
    http://docs.info.apple.com/article.html?artnum=108044
    Since your Mac is running Leopard, you need to configure the Airport Express using the Airport Utility found in the Applictions->Utilities folder. You cannot install the old software that was supplied on the CD you got with the Airport Express.
    In future - if you do something bad with network settings on your Mac, do NOT try to fix it with the Airport Utility. The Airport Utility is only used to configure the Airport Express - and since the problem you have created is on the Mac and not the Airport Express, there is no need to be using the Airport Utility and especially there is no need to be resetting the Airport Express.

Maybe you are looking for

  • Is there a standard script that runs when a projector stops?

    I know there are a couple of scripts I can use to set things up when starting a Director movie (startMovie and PrepareMovie).  But are there also scripts I can use that run when the user chooses to shut down a projector?  I want to run a script that

  • SSRS Reporting: Can I make a rectangle that truly hide

    I have a report at the bottom of which has an optional section.  This optional section is entirely contained in a rectangle.  My problem is, when I set this rectangle's hidden property to true i.e. to display it on last page only, it is hidden but th

  • 1.33ghz PB 17" Trackpad "freezing"

    The trackpad on my 1.33ghz 17" Powerbook keeps freezing up. When I say freezing, I mean the cursor is stuck and it doesn't move when the trackpad is touched. Please help, and thank you in advance. -Chris

  • Is Satellite 2430-101 compatible with 100GB HDD?

    Dear fellows, I've bought right now a Hitachi Travelstar 7K100, 100G HDD. Can I use this HDD with my Toshiba 2430-101 notebook? Has anyone made experiences with this combination? With best regards, Jarek

  • Ipsec tunnel c7204vxr to c1941isr

    I have a site ipsec tunnel between a c7204vxr and a c1941isr.  The tunnel is established successfully but I am noticing packet drops on the ingress to the c7204 from the c1941. Specifically,  there is an ssl website that is being accessed that is beh