Where does WebDynpro ABAP URL get defaulted

When creating a WebDynpro ABAP application, the URL gets generated automatically.
My question is where does this path get generated from.  Is there a place to edit the settings?
The reason why I ask is that the Basis team has disabled protocol HTTP and are now using HTTPS. 
The problem is, our WebDynpro ABAP applications still get defaulted to HTTP in the URL string.
Where do you change the settings?

Yes, I replied to your question before realizing the answer had been given by Shruti.  By going to tcode SMICM, in GOTO/services menu, I noticed that HTTP and HTTPS were both set to active.  So, I inactivated the HTTP and by doing that the WebDynpro ABAP application URL's that get defaulted (tab folder adminstrative data) now default to HTTPS and the port defined in SMICM.
The Basis team had disabled HTTP, I assuming by removing the port address, but keeping the HTTP service active and this was causing a problem for all the WebDynpro ABAP programs.  They were still defaulting to HTTP.  Why they did not make this change I just did, I don't know.
I couldn't get anyone to take charge of this, so I did.
Problem solved.

Similar Messages

  • Where does an abap program get stored after save?

    Where does an abap program get stored after save? ...plzz tell
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 11:28 AM

    this program download the code to presentation server
    Analyse this code.
    CHECK IT IN DEBUGGING
    REPORT zdownload_source MESSAGE-ID zabap.
    TABLES: trdir.
    SELECT-OPTIONS: repo FOR trdir-name.
    PARAMETERS: path(60) TYPE c DEFAULT 'C:\programs\'.
    DATA: BEGIN OF tabsource OCCURS 10,
          source(72) TYPE c,
          END OF tabsource.
    DATA: BEGIN OF tabtext OCCURS 50,
          tab LIKE textpool      ,
          END OF tabtext.
    DATA: BEGIN OF tabrdir OCCURS 100,
          rdir LIKE trdir,
          END OF tabrdir.
    DATA: filename LIKE rlgrap-filename,
          mode TYPE c VALUE ' ',
          rdirrows TYPE i,
          sourcerows TYPE i,
          rc TYPE i,
          length TYPE i.
    FIELD-SYMBOLS: <p>.
    DATA: ok TYPE i VALUE 0,
          fail TYPE i VALUE 1.
    AT SELECTION-SCREEN.
      DATA: i TYPE i.
      DESCRIBE TABLE repo LINES i.
      IF i <= 0.
        SET CURSOR FIELD repo.
        MESSAGE i001 WITH 'se message class'.
      ENDIF.
    START-OF-SELECTION.
      CONDENSE path NO-GAPS.
      length = strlen( path ).
      SUBTRACT 1 FROM length.
      ASSIGN path+length(1) TO <p>.
      IF <p> <> '\'.
        ADD 1 TO length.
        ASSIGN path+length TO <p>.
        <p> = '\'.
      ENDIF.
      SELECT * FROM trdir
              INTO TABLE tabrdir
              WHERE name IN repo.
      DESCRIBE TABLE tabrdir LINES rdirrows.
      CHECK rdirrows > 0.
      LOOP AT tabrdir.
        MOVE tabrdir TO trdir.
        PERFORM download_sourse USING rc.
        CHECK rc = ok.
    *    PERFORM download_textpool USING rc.
      ENDLOOP.
      write :/ sy-dbcnt , ' number of programs downloaded'.
    *&      Form  download_sourse
    *       text
    *      -->P_RC  text
    FORM download_sourse USING  rc.
      rc = fail.
      CLEAR: tabsource, filename.
      REFRESH: tabsource.
      READ REPORT trdir-name INTO tabsource.
      DESCRIBE TABLE tabsource LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = PATH
          string2         = TRDIR-NAME
          string3         = '.ABA'
       IMPORTING
         string          = FILENAME
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    WRITE: 'AAAA'.
      ENDIF.
      CONDENSE filename NO-GAPS.
      PERFORM download TABLES tabsource USING filename rc.
    ENDFORM.                    " download_sourse
    *&      Form  download_textpool
    *       text
    *      -->P_RC  text
    FORM download_textpool USING    p_rc.
      rc = fail.
      CLEAR: tabtext, filename.
      REFRESH: tabtext.
      READ TEXTPOOL trdir-name INTO tabtext LANGUAGE sy-langu.
      DESCRIBE TABLE tabtext LINES sourcerows.
      CHECK sourcerows > 0.
      CALL FUNCTION 'STRING_CONCATENATE_3'
        EXPORTING
          string1         = path
          string2         = trdir-name
          string3         = '.TXT'
       IMPORTING
         string          = filename
       EXCEPTIONS
         too_small       = 1
    *   OTHERS          = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      PERFORM download TABLES tabtext USING filename rc.
    ENDFORM.                    " download_textpool
    *&      Form  download
    *       text
    *      -->P_TABTEXT  text
    *      -->P_FILENAME  text
    *      -->P_RC  text
    FORM download TABLES   tabtext
                          USING filename
                           rc.
      rc = fail.
      CALL FUNCTION 'WS_DOWNLOAD'
       EXPORTING
    *     BIN_FILESIZE                  = ' '
    *     CODEPAGE                      = ' '
         FILENAME                      = filename
         FILETYPE                      = 'ASC'
         MODE                          = 'MODE'
    *     WK1_N_FORMAT                  = ' '
    *     WK1_N_SIZE                    = ' '
    *     WK1_T_FORMAT                  = ' '
    *     WK1_T_SIZE                    = ' '
    *     COL_SELECT                    = ' '
    *     COL_SELECTMASK                = ' '
    *     NO_AUTH_CHECK                 = ' '
    *   IMPORTING
    *     FILELENGTH                    =
        TABLES
          data_tab                      = TABTEXT
    *     FIELDNAMES                    =
    *   EXCEPTIONS
    *     FILE_OPEN_ERROR               = 1
    *     FILE_WRITE_ERROR              = 2
    *     INVALID_FILESIZE              = 3
    *     INVALID_TYPE                  = 4
    *     NO_BATCH                      = 5
    *     UNKNOWN_ERROR                 = 6
    *     INVALID_TABLE_WIDTH           = 7
    *     GUI_REFUSE_FILETRANSFER       = 8
    *     CUSTOMER_ERROR                = 9
    *     OTHERS                        = 10
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      IF sy-subrc <> 0.
        WRITE: / sy-subrc, ' message declare '.
      ENDIF.
      rc = sy-subrc.
    ENDFORM.                    " download
    regards.
    santhosh reddy
    <REMOVED BY MODERATOR>
    Edited by: Santhosh Reddy on Feb 13, 2008 6:48 PM
    Edited by: Alvaro Tejada Galindo on Feb 18, 2008 12:00 PM

  • Where does the ACS server get the DNS info for IP pools?

    I am trying to change the DNS servers that my VPN users are assigned from the IP pools on the ACS server. Where does the IP pools get the DNS server information. I have changed the DNS Ips on the windows server and rebooted. But the VPN clients are still being assigned the old DNS servers.

    ACS ip pools do not push DNS server information
    It is either being forwarded from VPN concentrator group setup or
    it is being send from ACS user/group setup > Radius(VPN 3000) attributes > [026/3076/005] Primary-DNS.
    Hope this helps.
    Regards
    Rohit

  • Where does the svc system get its infos from?

    The longer I work with Solaris 10, the more I dread this awful "services" construction and its unwieldy administration.
    I have a newly setup machine with two zones, one created right after the other, meaning they should be identical.
    /usr is, as usual, lofs'ed into both zones, and contains a /usr/local/samba dir with a handcompiled 3.0.30 release.
    I have not created any manifests as I intended to simply delete the 'onboard' samba service and start the new version
    via the classical init script.
    I boot both zones.. and one starts "/usr/local/samba/smbd -D -f /etc/smb.conf", and the other starts (or tries to) "/usr/sfw/sbin/smbd -D".
    I inspected the manifest xmls for the network/samba service, and in both zones the entry lists /usr/sfw as start method.
    svccfg listprop network/samba also reports /usr/sfw for both zones.
    Where did the one zone get the info to start the /usr/local samba installation, and where did it get the (correct) conf file parameter?
    Why does svccfg report a different startup method property than it really runs on svcadm enable?
    I have grepped through all of /lib/svc, /etc/svc and /var/svc and nowhere is any reference to the /usr/local file nor the conf parameters.
    Swapping the svc repository.db file between both zones also swaps the problem around - so it must be somewhere in there,
    but as it's no longer a human readable file, I'm out of luck there. How did the /usr/local path and parameters get into that DB file?
    Does the service system search the filesystem for known daemon binary names and other guesswork? And if it does such voodoo,
    why didn't it do the same in the other identical zone?
    rant Did we really need to get this svc "feature"? Until now I have seen no advantage from it, and only incurred a huge load of inconvenience,
    be it the additional work of creating manifests for new services or debugging problems that I never had in a decade or two of init script usage.
    We have all seen for many years how well this registry/service stuff worked on Windows..*/rant*

    >
    I boot both zones.. and one starts "/usr/local/samba/smbd -D -f /etc/smb.conf", and the other starts (or tries to) "/usr/sfw/sbin/smbd -D".
    I inspected the manifest xmls for the network/samba service, and in both zones the entry lists /usr/sfw as start method.I take it you mean the full path with /usr/sfw in it, not "/usr/sfw" all by itself....
    What do you get for:
    svcprop -p start/exec network/samba:defaultThat should display the start string it uses.
    Where did the one zone get the info to start the /usr/local samba installation, and where did it get the (correct) conf file parameter?I can only assume that some program inserted that string into the service. As you said, it's not in the manifest, so it didn't come from there.
    Why does svccfg report a different startup method property than it really runs on svcadm enable?
    I have grepped through all of /lib/svc, /etc/svc and /var/svc and nowhere is any reference to the /usr/local file nor the conf parameters.
    Swapping the svc repository.db file between both zones also swaps the problem around - so it must be somewhere in there,
    but as it's no longer a human readable file, I'm out of luck there. How did the /usr/local path and parameters get into that DB file?
    Does the service system search the filesystem for known daemon binary names and other guesswork? And if it does such voodoo,
    why didn't it do the same in the other identical zone?
    rant Did we really need to get this svc "feature"? Until now I have seen no advantage from it, and only incurred a huge load of inconvenience,
    be it the additional work of creating manifests for new services or debugging problems that I never had in a decade or two of init script usage.As with many such things, the advangages are greater when the environment is more complex. For starting a single job, you won't see the benefits as much.
    Of course, the milestone services still run startup scripts out of /etc/rc[S23].d, so those are perfectly valid places to run a startup script.
    Darren

  • Where does the converted document get saved to?

    After the PDF doc is converted to word and I hit save, where does the saved/converted document end up?

    Wherever your browser is configured to save files to by default or the location you select.
    I would suggest searching for the file name (without extension) through Windows Search or Spotlight.
    If you're having difficulty saving the files at all, I'd suggest trying the troubleshooting steps outlined here: http://forums.adobe.com/docs/DOC-1831
    Let us know how it goes!
    -David

  • Where does the file path get reported from?

    When looking at ZAM software information, it'll show the product name and then like:
    c:\program files\something\
    Where does that path information come from?
    The windows registry?
    Or does it actually come from the location of the .exe itself?

    kjhurni,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • (SOLVED) where does the xorg server gets the Composite file from?

    I'd like to see the list of composite combinations. Seeking on the Internet I understand that the file should be:
    /usr/share/X11/locale/en_US.UTF-8/Compose
    Where en_US.UTF-8 is my locale, but according to that file:
    <Multi_key> <underscore> <o>         : "ō"   U014D # LATIN SMALL LETTER O WITH MACRON
    I should obtain the small letter o with the macro using multi_key underscore and o. Instead I obtain this: º.
    Same problem with the
    <Multi_key> <c> <o>                  : "ǒ"   U01D2 # LATIN SMALL LETTER O WITH CARON
    If I press the keys I obtain: ©, the copyright sign...
    So... Where does the arch xorg got its Compose file? Change I change its behavior?
    Thanks.
    Last edited by ezzetabi (2009-10-10 15:25:02)

    I ignored that is was an application side issue, thanks for explanation. And indeed I was using lxterminal: the terminal emulator of lxde that is based on GTK. Using the xim input system everywhere solved the problem.
    People! Listen! Put this two lines in your .xinitrc :
    . /etc/X11/xinit/xinitrc
    export GTK_IM_MODULE=xim
    export QT_IM_MODULE=xim
    exec whatever you use
    Thanks! Cheers!
    Last edited by ezzetabi (2009-10-10 15:25:25)

  • Where does Manual Feed as a Default Come From

    A couple of computers on the school network, when printing to a network laser (different kinds) always send out manual feed jobs. This is true whether they IP print directly to the printer or through a server queue. We had tracked down a reference in the com.apple.print.custompresets.plist to "manual feed," so deleted the plist. The plist was recreated and had the same reference to manual feed. With unaffected computers - the same plist does not have this "manual feed" reference. Where is the system getting the instruction for manual feed? We've been to the print dialog settings, and paper feed is set to Auto Feed, but when we print, the job is configured as manual. Any ideas what to try next?
    Notes: It makes no difference whether the user is local or server-based, a standard user or administrator. From the affected machine, all print jobs to certain printers are manual feed. Printers in System Preferences have been deleted and recreated to no avail.

    look for a setting in the CUPS admin page:
    http://localhost:631
    Or,
    change the default in the .ppd file.

  • Where does Sting to IP get the net address if the computer is disconnected from the net? It should return the same I

    P/Net address� it did not change. Internet Protocal(TCP/IP) Properties did not change. When the network is physically disconnected, my VI after several runs returns 127.0.0.1. So, how do I get my IP address whether it�s connected to the network or not?Thanks in advance for your help.

    P/Net address� it did not change. Internet Protocal(TCP/IP) Properties did not change. When the network is physically disconnected, my VI after several runs returns 127.0.0.1. So, how do I get my IP address whether it�s connected to the network or not?If you're getting a dynamically assigned IP address from the network, then String to IP will return that IP but it may not be constant. See if TCP/IP properties are set to "Obtain an IP address automatically". If you disconnect from the network, then the IP address will default to something and I wouldn't be surprised if the default is 127.0.0.1. If you want to always have the same IP, then the ICP/IP properties should be changed to use a fixed IP but you'll certainly need to check with your IS department before doing so.

  • Where does Adobe CS3 install by default?

    Hey there,
    I'm trying to install Adobe CS3 Design Premium on my MacBook Pro.
    I was wondering once installed in the default installation location "/Applications" does it install each individual application in the Applications folder, or does it create another folder automatically that installs every application in there?
    I'm asking, because if it automatically installs everything in the applications folder, i could create a new folder "Adobe CS3 Design Premium" and have everything install in there.
    Thanks,
    Saeid

    In any case, if it does, I explained that the installer would allow the creation of that folder. Also, my "yes" was in reference to the OP's suggestion of directories for standard install, and making a new folder. Redundancy is not necessary here. Nothing was made clearer. read my statement below. It applies to almost every post in here. A tenet not followed by many.

  • Where does the JAVA_DEPLOY role get created????

    Environment:
    OWB 10g
    Runtime: 9.2.0.4
    Repository: 9.2.0.4
    OS: AIX 5.2
    I am trying to create a Runtime Repository on an RS6000 and am getting an error inthe log file that says the JAVA_DEPLOY role is not created.
    OK, I give up.
    I have searched and read and Googled and crossed my fingers but to no avail.
    I have another runtime repository set up and working fine and I 'thought' I was setting this one up the same way but obviously I've missed something.
    Do I need to install Workflow or something strange like that to get the role created? It exists in my other environment but I can't get it 'born' in this one.
    Someone please help me with JAVA_DEPLOY 101.
    Many thanks.
    Gary

    I installed the XML JDK for PL/SQL and the install worked finally.
    I say 'finally' because I found several hoops I had to jump through whenever I wanted to restart the installation process. I'll document them here for anyone attempting the same.
    I was trying to create a new Runtime Repository on a different server and ran into several issues that stopped the installation and forced me to do some housecleaning and restart the installation script 'runtimeinst.sh'.
    1- The first time I tried the install I was told the role JAVA_DEPLOY was not created. After a lengthy search I just created the role manually and assigned it. I assumed it wouldn't do any harm since the role had no other roles nor any system privileges assigned to it. It worked.
    2- I had to drop the users that were created: Runtime Repository schema (RTR), Runtime User (RTU) and OWBRT_SYS.
    3- I also had to drop the roles created: WB_A_*, WB_D_*, WB_R_* and WB_U_*. The install script does a straight 'CREATE' and doesn't check to see if the role is already created. Bummer.
    After several attempts it looks like the new runtime environment is installed.
    Now I have to see if it works!
    Gary

  • Where does a new contact get stored when Exchange and iCloud are configured?

    I have Contact (and mail and calendar) configured for iCloud and Exchange. When I add a new contact, how do I determin where it is stored?
    When I click Add (via the + or Command N) I get
    Which account will hold the new contact?
    Thank you

    You should be able to switch between three different views at the bottom of Contacts (three buttons next to each other below your contacts list) - the leftmost button should show all your accounts and groups next to your list of contacts and you can then simply drag & drop contacts into an account or group :-)

  • Where does app.documents.add() get its document profile from?

    It has a set of defaults listed in the scripting reference, I understand that much. but a new doc (without specifying anything else) also contains swatches/symbols/brushes etc. that don't seem to match any existing doc profile. Where is it fishing these from?

    I tried various scenarios and documents.add() always matched the Print Profile, which happens to be the first in the list.

  • Where does the content height get set?

    I've been working with a simple application using a treeview controls with multi-checkboxes.  The height is 315px which only allows about 10 lines of text. I can't find where that limit is being set or figure out how to change it.
    I've attached a stand alone file, test.html that illustrates the problem.  (I had to name it test.txt because it wouldn't allow an html attachment). I've also got a screen shot.  I've searched through the CSS files but can't find anything with 315.  Can anyone point me in the right direction?
    Thanks

    Thanks Robin!  I appreciate the response.  I'll try it out as soon as I can but I've run into a different problem today.  My sample no longer works!  I'm getting an error;
       Uncaught TypeError: Cannot read property 'TriStateCheckBox' of undefined
    I first ran into this error when I was linking the sample to a local copy of openui5-sdk.1.22.4.  It worked when I used the online version; https://sapui5.hana.ondemand.com/resources/sap-ui-core.js. Now I'm getting that error using the online version also.  In fact, the sample on http://jsbin.com/jukobu/2/edit is getting the same error.  I wonder if they upgraded the version on the hana.onedemand site?
    Anyway, I'm very grateful for your help.

  • Where does everyone's MBP get hot?

    All,
    I have another similar post, so I apologize for this, but I am wondering where everyone notices the heat on their MBP the most? Bottom? Top? Above function keys?
    The reason I ask is b/c I recently had my logic board replaced by a local authorized apple repair center. Just as an aside, the job was done in about 3 hours and I was only without my MBP for an afternoon. On the other side, this could be part of the problem . . .
    Anyway, after the LB replacement, I have noticed a SUBSTANTIAL heat increase on the left side of my MBP. Specifically, the left palm rest gets considerably hotter than the right and the left speaker grill up by the ESC key and above the function keys is almost too hot to touch. I am a little concerned that something might not have been done right when the LB was replaced.
    -JB

    Nope, mine stays cool anywhere 'below' the keyboard unless I'm burning a DVD or CD at full speed (4x). I think if you didn't have this heat before you got your logic board replaced I would take it back to the fracking geniuses.
    (I'm glad there's nothing wrong with my McBook Pro [geez it's the same quality as McDonalds, seems like] or else I would have to take it to the stupid geniuses everyday).
    EDIT: have you tried resetting the PMU?

Maybe you are looking for

  • Photoshop is unable to Register/ Auto-Closes upon opening

    Alright, I've seen at least one other user with this problem, and it's nothing that can be resolved by signing in and out of the Adobe CC application, or even the Ctrl+Shift+Alt and opening trick. So recently I went with the $9.99 a month package for

  • Oracle 10G Performance Tuning Documents

    Hi all Can any one tell where can I get the oracle 10G Performance Tuning materials(PDF),Documents. Thanks in advance

  • Can't see scanner...

    I have a Canoscan 8800f that I use through Photostudio or MP Navigator Ex. I recently installed a new Canon MP620 printer. Now when I open Photostudo or MP Navigator Ex it is seeing the printer as the default devise, and I can't even find or select t

  • How to use Nsopenpanel in iPad applications

    How can I browse a zip file from my local sub system .I'm developing an application for iPad. thank you so much

  • Inoperable printer

    Hello, Printer wouldn't print so I aquired a new driver download on-line. Still not working/printing so uninstalled everytghing and tried to reinstall. Now 4 lines indicating registry keys are the problem. I'm stumped, cant get any further and need s