Can anyone explain why the generated URL of my BPS web app

Errors as follows:-
Business Server Page (BSP) error
What happened?
Calling the BSP page was terminated due to an error.
SAP Note
The following error text was processed in the system:
Die URL enthält keine vollständige Domainangabe (cud015 statt cud015.).
Exception Class CX_FQDN
Error Name 
Program CX_FQDN=======================CP
Include CX_FQDN=======================CM002
ABAP Class CX_FQDN
Analyze CHECK
Line 10 
Long text -
Error type: Exception
Your SAP Business Server Pages Team
Note the URL being sent is:-
/sap/bc/bsp/sap/zfcfsw03web2/zfcfsw03web2.htm?sap-client=200&sap-language=EN
The URL generated when that is executed is:-
http://cud015:8000/sap/bc/bsp/sap/zfcfsw03web2/zfcfsw03web2.htm?sap-client=200&sap-language=EN

677118 - explains what generates the error message and how to overcome it
434918 - which suggests setting the icm/host_name_full parameter to default to a full domain name
and the following SDN weblog:-
/people/brian.mckellar/blog/2003/09/25/bsp-in-depth-fully-qualified-domain-names

Similar Messages

  • Can anyone explain why the new blackberrys don't come with a holster?

    I'm just looking to upgrade my phone on contract through vodafone. I have been looking at the Z30 model for a few weeks. When i got my current phone (White Bold 9900) I recived a leather holster that came with the phone.
    I would like to know a reason why blackberry have decided to stop the holsters. I have always seen blackberry as a luxury device and the holster was always part of that reason. I would of thought since blackberry started to struggle to keep up with the lastest competing phones, they would be trying harder to keep their existing custom as much as possible.  
    I feel like blackberry has forgotten they were once seen as the luxury phone only a few years ago.
    Could anyone please explain why they have stopped it? thanks

    The seller, the mobile provider, decides what all accessories go in the box. And yes, I would bet the belt holster was or is the least popular case. Although it's the one I use.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can anyone explain why iTunes in South Africa is limited to App Store

    In the South African store it appears we are restricted from purchasing anything other than AppStore items, for example:
    All the iTunes store content is not available : i.e. no music, movies, ebooks, etc.
    Also for the iPhone we cannot get access to any of the iPhone games advertised on Apple.com
    Can anyone provide some clarity on why Apple has chosen to restrict this content in countries like South Africa, we have a number of other legal online ways to purchase music, movies, etc. online so it appears very strange that Apple have implemented this restriction.

    Apple is limited by what the rights holders will allow them to sell. If they can not come to favorable terms with the people who own the distribution rights for the music, movies, television shows, they won't be able to set up an iTunes Store in that country. And, rights holders may not be the same in one country to the another.
    You can be fairly certain that, as a profit making company, Apple would be more than happy to take your money if they could do so.
    Best of luck.

  • Can anyone explain why the new CC Photography plan 2014 was announced at $9,99 but is actually offered at a higher European price at EUR12,29?

    See here: http://blogs.adobe.com/creativecloud/ and here: https://creative.adobe.com/plans)?
    This really does make no sense at all to me.
    Anyone?
    Thanks upfront.

    Hi Iansally,
    I can take at the billing of your account. Please can you send me in your details using the link found in the "About Me" section of my profile?
    Thanks
    PaddyB
    BTCare Community Mod
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry but we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Can anyone explain why the code compiles on one database but not another?

    I have two databases, both running 10.2.0.4, same hardware/OS platform.
    On one database, this code compiles just fine, on the second database, I get errors as shown below:
    SQL> SET SERVEROUTPUT ON SIZE 1000000;
    SQL>
    SQL> create or replace procedure testproc as
    2 vCount number;
    3 vCmd varchar2(2048);
    4 vLastName varchar2(30);
    5 vFirstName varchar2(30);
    6 vPK integer := 0;
    7 vSortLN varchar2(30);
    8 vSortFN varchar2(30);
    9 cursor cPERSON is
    10 select LastName,
    11 FirstName
    12 from GENERIC.PERSON
    13 order by LastName, FirstName;
    14 BEGIN
    15 select count(*) into vCount from USER_OBJECTS where object_name = 'ML4TEMPPERSON';
    16
    17 IF (vCount = 0) THEN
    18 /* NOTE: Omit semi-colon from command. */
    19 vCmd := 'create table ML4TEMPPERSON (PK integer not null, LastName varchar2(30), SortLN varchar2(30), FirstName varchar2(30), SortFN varchar2(30))';
    20 Execute Immediate vCmd;
    21 vCmd := 'alter table ML4TEMPPERSON add (constraint XPKML4TEMPPERSON PRIMARY KEY (PK))';
    22 Execute Immediate vCmd;
    23 END IF;
    24
    25 delete from ML4TEMPPERSON;
    26
    27 for P in cPERSON
    28 loop
    29 vLastName := rpad(P.LastName, 30, ' ');
    30 vFirstName := rpad(P.FirstName, 30, ' ');
    31 vSortLN := vLastName;
    32 vSortFN := vFirstName;
    33 DBMS_OUTPUT.PUT_LINE(vLastName || ', ' || vFirstName);
    34 vPK := vPK+1;
    35 INSERT into ML4TEMPPERSON
    36 ( PK, LastName, SortLN, FirstName, SortFN)
    37 values
    38 (vPK, vLastName, vSortLN, vFirstName, vSortFN);
    39 end loop;
    40 IF (vPK > 0) THEN
    41 COMMIT;
    42 END IF;
    43 END;
    44 /
    Warning: Procedure created with compilation errors.
    SQL> show errors
    Errors for PROCEDURE TESTPROC:
    LINE/COL ERROR
    25/3 PL/SQL: SQL Statement ignored
    25/15 PL/SQL: ORA-00942: table or view does not exist
    35/7 PL/SQL: SQL Statement ignored
    35/19 PL/SQL: ORA-00942: table or view does not exist
    SQL>

    Your table ML4TEMPPERSON doesn't exist in your second database, and you want do delete ans insert, may be in first database the table ML4TEMPPERSON exist
    Try this code. /* Formatted on 2009/05/21 09:10 (Formatter Plus v4.8.8) */
    SET SERVEROUTPUT ON SIZE 1000000;
    CREATE OR REPLACE PROCEDURE testproc
    AS
       vcount       NUMBER;
       vcmd         VARCHAR2 (2048);
       vlastname    VARCHAR2 (30);
       vfirstname   VARCHAR2 (30);
       vpk          INTEGER         := 0;
       vsortln      VARCHAR2 (30);
       vsortfn      VARCHAR2 (30);
       CURSOR cperson
       IS
          SELECT   lastname, firstname
              FROM generic.person
          ORDER BY lastname, firstname;
    BEGIN
       SELECT COUNT (*)
         INTO vcount
         FROM user_objects
        WHERE object_name = 'ML4TEMPPERSON';
       IF (vcount = 0)
       THEN
    /* NOTE: Omit semi-colon from command. */
          vcmd :=
             'create table ML4TEMPPERSON (PK integer not null, LastName varchar2(30), SortLN varchar2(30), FirstName varchar2(30), SortFN varchar2(30))';
          EXECUTE IMMEDIATE vcmd;
          vcmd :=
             'alter table ML4TEMPPERSON add (constraint XPKML4TEMPPERSON PRIMARY KEY (PK))';
          EXECUTE IMMEDIATE vcmd;
       END IF;
       vcmd := 'delete from ML4TEMPPERSON';
       EXECUTE IMMEDIATE vcmd;
       FOR p IN cperson
       LOOP
          vlastname := RPAD (p.lastname, 30, ' ');
          vfirstname := RPAD (p.firstname, 30, ' ');
          vsortln := vlastname;
          vsortfn := vfirstname;
          DBMS_OUTPUT.put_line (vlastname || ', ' || vfirstname);
          vpk := vpk + 1;
          vcmd :=
                'INSERT into ML4TEMPPERSON
    ( PK, LastName, SortLN, FirstName, SortFN)
    values
             || vpk
             || ', '
             || vlastname
             || ','
             || vsortln
             || ','
             || vfirstname
             || ','
             || vsortfn
             || ')';
          EXECUTE IMMEDIATE vcmd;
       END LOOP;
       IF (vpk > 0)
       THEN
          COMMIT;
       END IF;
    END;
    /Edited by: Salim Chelabi on 2009-05-21 06:12

  • Can any explain why the teathering option has dissapeared in GM iOS 5?

    Can anyone explain why the teathering option has dissapeared in ios5?

    You would have to ask the maker of the apps.  They are the ones who choose what versions to release and make available.

  • My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    My ipod 60gb classic is showing as fully charged until I connect it to my pc when it comes up with the error message, 'please wait very low battery' and the little wheel goes round and nothing happens, can anyone explain why this is and what i can do?

    I have worked my way through the assistant and nothing works. I have tried connecting in disc mode but although the screen on the ipod is showing that the device is charged and that it is in disc mode as soon as I connect it to the computer it comes up with the error message 'please wait very low battery' and stays like that until I disconnect when it appears to be OK again. I have tried on both pc and mac.
    BTW the ipod is an ipod video not classic if that makes any difference.
    Thanks

  • Can anyone explain what the other section section in the HDD usage description is for ? I recently used iphoto to send a mail and this "other "section inrease the usage by about 1GB....any ideas why ?

    Can anyone explain what the "other" (yellow colour) section in the HDD usage description is for and what it does.It is under the about this mac section and storage option?
    I recently used iphoto to send mail with photos attached and this "other" section increased by about 1GB. The mail size was around 900KB.....any ideas ?

    Shurig wrote:
    Thanks gor replying,,,this is my first time on this site.
    Any idea why the "other" continues to increase. I have just got got my mac so no new apps installed yet only been using it for mail and web browsing. I tried the iphoto mail last night and noticed the the "other" section had increased by 1GB which I thought was rather larger. Do you know what this setion actually does ?
    Also do you know if it is possible to delete the iphoto emails.
    All of your 'stuff' that is not Music Movies Apps Backups or Photos is in Other, that means all your emails, all your files etc, why don't you just leave well enough alone, this is not windows and doesn't need tinkering with,

  • Can anyone explain why on my iPhone 4S, whenever I play music, it won't hold my place in the song? I pause it, and then when I go back later, it's all the way back at the beginning? A google search was not very helpful, any tips would be great!

    Can anyone explain why on my iPhone 4S, whenever I play music, it won't hold my place in the song? I pause it, and then when I go back later, it's all the way back at the beginning? A google search was not very helpful, any tips would be great!

    Try assigning Queen as the Album Artist on the compilations in iTunes on your computer.

  • I recently installed Acrobat Pro X on my Mac. I initially accepted the terms of agreement, but then every few seconds the same prompted window for the terms of agreement keeps popping up. Can anyone explain why this is happening, and how to resolve?

    I recently installed Acrobat Pro X on my Mac. I initially accepted the terms of agreement, but then every few seconds the same prompted window for the terms of agreement keeps popping up. Can anyone explain why this is happening, and how to resolve?

    Have you tried reinstalling the original drive? Same symptoms with it?

  • My wife, daughter and I have iPhones. We all have iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue except those that my wife sends to me. They are green. Can anyone explain why.

    My wife, daughter and I have iPhones with iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue however, when my wife messages me, the message appears in green on her iPhone. Can anyone explain why.

    Because some kind of error occured.  This is only from her iPhone to your iPhone?  Whenever she sends a message to any other iPhone, it is sent as blue?  And when anyone else sends you a message from an iPhone, it sends as blue?

  • My G4 desktop won't  cold start. I have to plug in to the outlet for about 15 minutes every time. Can anyone explain why?

    My G4 desktop won't cold start. I have to plug in to the outlet for about 15 minutes every time. Can anyone explain why? Otherwise, the desktop runs fine.
    The battery is new, and I zapped the little button on the main board once. I've noticed that the power supply plug is a little longer than the usual one for G4, and the AGP slot has an extra slot, which is black and about half inch long.

    Hi Ursula,
    the AGP slot has an extra slot, which is black and about half inch long.
    I believe that is for ADC Monitor power if you had one, or a card with ADC, like the little tab on this one...
    I think your startup problem is bad capacitors in the power supply or on the logic board, and the need to bleed off their charge before they work right to start.

  • I try to play an album on ITunes for Windows 7and it plays the first track then randomly goes to a different album and plays the whole of that. Can anyone explain why? Shuffle is turned off....

    I try to play an album on ITunes for Windows 7and it plays the first track then randomly goes to a different album and plays the whole of that. Can anyone explain why? Shuffle is turned off....

    I am working on a friend of mine's 15g ipod(W/dock connector)and I am having the same trouble except it does it to all the songs. I have tried reseting it multiple times, but to no avail.
    I am not sure that this runs on windows XP, it is absolutly archaic (compared to my 5th gen. 30g video).
    Help?
    15g ipod (w/dock connector)   Windows XP  
      Windows XP  

  • I just bought a second hand iPhone 5, but the sim tray seems to be for a sim sized ~14x8mm, thinner but longer than a nano SIM (~12x9mm). Can anyone explain why, and how to get a SIM to fit?

    I just bought a second hand iPhone 5, but the sim tray seems to be for a sim sized ~14x8mm, thinner but longer than a nano SIM (~12x9mm). Can anyone explain why, and how to get a SIM to fit?

    You would have to ask the person you bought the phone from to explain why.

  • Can anyone explain why all of my Spry Assets on a live website have suddenly stopped working?

    Can anyone explain why all of my Spry Assets on a live website have stopped responding? I have checked that the Spry CSS and JS files are in place. Then checked the files on Dreamweavers live view and they are not working there either. It was fine a few weeks ago, it is almost as if the web browsers have stopped rending Spry, for example, the links for the collapsible panels are not even being recognised as links.
    I am using 'old' spry assets on Dreamweaver CS4 (if that makes a difference). The Spry Assets used are Tabbed Panels and Collapsible Panels.
    Thanks for your help.

    Something has been going on, when I look at the bottom of your document (as pasted below), this is normally all at the top after the links to external style sheets.
    <script src="js/jquery-1.10.2.min.js"></script>
    <script src="js/lightbox-2.6.min.js"></script>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
       <script type="text/javascript" charset="utf-8" src="Menu_Photography_edgePreload.js"></script>
       <script src="SpryAssets/SpryCollapsiblePanel.js" type="text/javascript"></script>
       <script type="text/javascript">
    <!--
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
      var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
      if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
      d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
      if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    //-->
    </script>

Maybe you are looking for

  • Tough question - can anyone help?

    Hi, this is a follow-up to my previous post about the Mac HD not being mountable through the Installer Disk because it says it can't be repaired. We got to a discussion of using Data Rescue and Target Disk Mode. I have another G4 connected to mine vi

  • Shared Variable Timestamp fixed on TPC-2012

    My code running on a TPC-2012 reads from a shared variable that is hosted on a CRio.  Reading the timestamp of the shared variable gives me the same 5AM time in 1903. If I read that same shared variable using software running on a PC vs the TPC, I ge

  • Session or Call transaction

    How do decide whether to go for Session or Call transaction?Can anyone give me the justification with a real time example,,please???

  • 1st Typed Key/Letter/Number Doesn't Show Up..

    Hi, I have a new and 100% up to date 15" PB. I don't recall if this was happening before the 10.4.4 update but beleive it was and now is just getting to me. What's happening is when entering text in a search type box the 1st type charecter doesn show

  • Display multiple channels on waveform graph

    Hello, I would like to display multiple channels of acoustic data on one waveform graph. I currently have them separated and controlled by tabs inside a case Structure. I sometimes have run into DAQ error because I'm looking at 10 channels of 1/3 Oct