Explicit logon via ITS

Hi,
Is there a way to avoid SSO, and to pass an URL parameter to explicitly force the user to logon?
The problem is - we have an URL link, pointing to ABAP transaction via ITS. We want to make user to select explicitly an ABAP client. To my knowledge, it is possible only using the logon screen.
I suppose there is some URL parameter "logon=true", similar to "~transaction" parameter?
Thanks and regards
Konstantin

may in the place where you have the link provide and option to change the client and generated url based on that.
not so nice solution:
send a wrong userid/pwd via url and it will force the log on screen to show up
sap/its/webgui?sap-client=XXX&sap-language=EN&~transaction=SE38&sap-user=Enter_User_name&sap-password=wwww

Similar Messages

  • Authorization Check when logon into SAP via ITS

    Hello
    We have implemented Authorization Check after user have logged on to SAP via ITS in this User Exit SUSR0001. It was working fine in 46C version, but after upgrade to ERP 2005, when user logs on into SAP via ITS, this user exits is ignored, while logging normally via SAP GUI; authorization check is performed as before?
    Did anyone else have experienced the same problem?

    From what I understand something on that line changed.  We are still hanging on to our external ITS 6.20 so I am afraid I can not go into details.

  • CRM single sign on (SSO) to R/3 system via ITS 6.20

    Hi all
    I try to configue CRM2007 single sign on (SSO) to R/3 system via ITS 6.20.
    my configuraion process
    1. on CRM2007
    -profile : login/accept_sso2_ticket = 1
                  login/create_sso2_ticket = 2
    - t-code : strustsso2 --> export system PSE
    2. on R/3 system
    - profile : login/accept_sso2_ticket = 1
                   login/create_sso2_ticket = 0
    - t-code : strust --> import certification --> add certification list --> save
    - t-code : oss2 --> execute with crm rfcdestination --> all green.
    3. ITS
    ~appserver      r/3.domain
    ~client     
    ~clientcert      1
    ~cookies      1
    ~exiturl     
    ~hostsecure      itshost.domain
    ~hostunsecure      itshost.domain
    ~language     
    ~login     
    ~logingroup     
    ~messageserver     
    ~multiinstanceservices      1
    ~password     
    ~portsecure      443
    ~portunsecure      80
    ~routestring     
    ~runtimemode      pm
    ~systemname      R/3 SID
    ~systemnumber      R/3 system no
    ~theme      99
    ~timeout      600
    ~urlimage      /sap/its/graphics
    ~urlmime      /sap/its/mimes
    ~usertimeout      240
    ~xgateway      sapdiag
    ~xgateways      sapdiag,sapxgwfc,sapxginet,sapextauth
    ~mysapcomgetsso2cookie 
    ~mysapcomusesso2cookie  1
    ~mysapcomssonoits  1
    for SSO check, execute web ui and then log on web ui
    I go to the Interation center and then go to the ERP information.
    but ITS log on screen appear.
    crm user and r/3 user is same.
    how can I do ??

    You use Server Port 3600, message server.
    It means, while creating a system you used wrong template and picked "SAP system using dedicated application server".
    You should use "SAP system with load balancing", since message server is doing load balancing.
    Once you selected correct template you will see "Message Server" instead of App and GW servers.
    Make sure to fill in
    Group  - Logon group to use. If not defined in R3, use SPACE
    Message Server - ansapdev01
    SAP Client = 150
    SAP System ID <SID> = DEV
    Server Port 3600
    System Type = SAP R/3
    It should work.
    Regards,
    Slava

  • HT204053 Dear Support Team, every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud???

    Dear Support Team,
    Every time i tried to logon Icloud its gives me wrong user name or password and at the end it show me error " This Apple ID is valid but is not an ICloud Account" then how can i use one account for same Apple ID and ICloud?
    Thanks

    It is not possible to create a new iCloud account using a Windows machine. You must create the account using a Mac (10.7.5 or more) or an IOS device (iPhone etc). Once that is done you can sign into and use the account on your Windows machine.

  • Call a function module from CRM 5.0 via ITS to FICA

    Hi
    I want to call a function module in FICA (FICA is using sapgui) from CRM (IC-web) via ITS (Not integrated in FICA)
    Is it possible and how should this be done???
    If someone know how, please help
    BR//JL

    generally RFCs should not have user dialogs.
    any how to handle your case, you need ITS and since FICA is a WAS 6.20 system, you need to have a ITS installed for FICA system, without which you cannot do that.
    alternatively you can mimic the functionality of the RFC by programming the same in a BSP and call this from CRM system
    Regards
    Raja

  • Display PDF on Web via ITS.

    Hello everyone,
    I am trying to display a pdf that I am converting from OTF on web directly via ITS in SAP GUI for HTML based IAC.  The following is the code behind scenes. 
    CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
        format = 'PDF'
        max_linewidth = 132
      IMPORTING
        bin_filesize = g_bin
    *    BIN_FILE =
      TABLES
        otf = p_T_OTF
        lines = t_lines
        EXCEPTIONS
          err_max_linewidth = 1
          err_format = 2
          err_conv_not_possible = 3
          err_bad_otf = 4
          OTHERS = 5.
    CALL FUNCTION 'ALEWEB_DOWNLOAD'
        EXPORTING
          data_len                = g_bin
          mime_type               = 'application/pdf'
          DATA_TYPE               = 'BIN'
        tables
          data_tab                = t_lines.
    Then the following garbage is getting displayed.
    •ä‘†â´±â¸³à´Šâ—¢îíŒà¨²â€°â¯æ‰ªà´Šã°¼
    But if I use GUI_DOWNLOAD as shown below, then the PDF is getting downloaded into my local PC without any problem and I am able to read the PDF also.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    bin_filesize = g_bin
    filename = 'test.pdf'
    filetype = 'BIN'
    TABLES
    data_tab = t_lines.
    I am using ECC 5.0 and ITS 6.20 Patch 23.  What should I do to see the PDF on web.
    Thanks,
    -Bharath

    Hi
    I have a doubt so thought i will ask you. I am creating a spool request number through VF02. How can get the OTF format in to my internal table using the spool request number to use this function module. I am using the FM CONVERT_OTFSPOOLJOB_2_PDF and getting the PDF in to the internal table but i am getting some authorization problems in reading the spool request can you help me on this.
    CALL FUNCTION 'CONVERT_OTF'
      EXPORTING
        format = 'PDF'
        max_linewidth = 132
      IMPORTING
        bin_filesize = g_bin
       BIN_FILE =
      TABLES
        otf = p_T_OTF
        lines = t_lines
        EXCEPTIONS
          err_max_linewidth = 1
          err_format = 2
          err_conv_not_possible = 3
          err_bad_otf = 4
          OTHERS = 5.
    Thanks in Adv.
    Regards
    Lakshmikanth.T.V

  • Problem in web enabling ALV ABAP report via ITS. Please help!

    Hi Experts,
            I have a report that has a selection screen. On executing the selection screen an ALV output loads displaying data based on the selection criteria.
    I have web enabled it via ITS. I have used SICF transaction.
    When I run the internet service I can see only the selection screen. There is no execute button also. I also see a different layout then if my report has only selection screen. If my report has only selection screen then my page shows all the buttons including execute.
    How to resolve this problem? Please help!
    Thanks
    Gopal

    since you mentioned about SICF, i assume you are using integrated ITS.
    <i>When I run the internet service I can see only the selection screen. There is no execute button also</i>
    you wont see the execute icon, instead you will see a button with "execute" text. (you can also use F8 key)
    <i>I also see a different layout then if my report has only selection screen. If my report has only selection screen then my page shows all the buttons including execute.</i>
    the layout of SAPGUI for HTML is slightly different, if you want (somewhat) similar look of a wingui, either make your transaction as "Easy Web Transaction" or in the url pass ~webtransactiontype=EWT
    as a test can you run the following url and see how it looks.
    http://waserverhost.domain.com:port/sap/bc/gui/sap/its/webgui?sap-client=<clinetno>&~transaction=<you reports transaction code>
    Regards
    Raja

  • Issue when accessing standard LM transactions via ITS

    Hi,
    We are implementing WM using ITS Mobile.
    We have developed certain custom screens and also used standard transactions such as LM02 and LM04.We have created  a internet service for transaction LM01 and published all our custom and standard screens within the service.
    When testing the transactions in R/3 using LM01 transaction..there were no issue...
    But when testing the same in ITS....once we enter into a standard transaction like LM02(By clicking the corresponding menu entry) and click on Back button...it must bring me back to my menu( transaction LM01)...instead...my ITS session gets logged off...displaying message...'You have been logged off from SAP NetWeaver Application Server'.
    We are facing the same issue when we try to access standard LM transactions via ITS...
    I tried to analyze by debugging from ITS....but the flow of R/3 and ITS remains the same...
    These are my service parameters..
    ~THEME     99
    ~SINGLETRANSACTION     1
    ~ITSMOBILE     1
    ~TRANSACTION          LM01
    ~SOURCES     ZWM_MENU,itsmobile
    ~GENERATEDYNPRO     1
    ~POPUPS     1
    Did any of you face a similar kind of issue when accessing standard LM transactions in ITS ?
    Kindly Suggest.
    Regards,
    Thyagu.
    Edited by: Thyagu Natarajan on Jan 25, 2011 1:00 PM

    Hello,
    I am also trying to implement WM using ISTMobile, but i have a little problem... when i am in my local network the service works and calls the page in the browser, but when i am in other network it gives me "Could not connect to remote server" (off course).
    I undertand that i can´t access my server through other networks...  but can anyone tell me if i it is possible to access SAP ITSMobile transactions through the internet?? Is the solution create a VPN network to my local network or something like that?
    Thanks a lot.

  • Digital signature via ITS

    Hello gurus,
    I use a ssf complaint dll to sign files using a smart card. Everything works fine in the sap Gui.
    Now my customer ask me to use the same application via ITS. He wants to access the sapGui via web and sign the document using a smartcard.
    As far as I know ssf signature use a RFC destination to talk with the local dll library.
    Does somebody knows if this scenario (the one via ITS) may work?
    Thanks
    Gianni

    Hi Gianni,
    please create a SAP customer message for this issue and ask SAP primary support to forward the message to ITS development. Describe what your customer wants to do and why they require this functionality. We will than check what can be done.
    Best regards,
    Klaus

  • Logon via pop up needs to be disabled

    Hi,
    We are using SRM 5.0 and EP 7.0 sp10, and we currently have the logon via pop pop up enabled on SRM, but we dont want it and want to turn it to the normal logon, so we can enable single sign on it, so please advice.
    All help is appreciated and rewarded.
    Thanks,
    Swetha

    Hi,
    If your requirement is to pop-up only once then you need to do mod. in FV45KFKD_VBKD_PRICING which is a standard program.
    Thanks,
    Krish.

  • Upload files with transaction CV02N via ITS

    Hi,
    Is it possible to upload files (Word, PDF, Excel etc.) with transaction CV02N via ITS?
    How must be configure the ITS so that this works?
    Any ideas?
    Thanks,
    Marco

    Hi Marco,
    I dont know transaction CV02N. But if this application uses standard function modules like GUI_UPLOAD it should work with ITS. A special configuration should not be required as long as the files have a size up to 5 MB. If they are larger it might be required to adjust the size of the request container MaxReqSize. Dont forget that Java has to be activated to let webgui access the filesystem.
    Regards,
    Klaus

  • Custom transaction to be displayed/accessed via ITS

    Hi,
    just a quick question for understanding. If we have a custom transaction (copied form an existing one and enhanced) and want this integrated into the ENterprise Portal via ITS, would we need to create an ITS Template or something like that or will the integration work without any additional development work?
    Basically my question is, do we need to implement a ITS/HTML Template?
    Thanks for any response,
    Erik

    Hi Jothi,
    we have not yet installed the ITS, that is why we do not know yet, how the custom transaction looks like in the webgui / ITS screen. We want to know what effort it might be to rearrange the screen elements (layout) if necessary (i.e. too many scrollbars, etc.).
    Thanks for your anwsers.
    Erik

  • I've recently bought a Time Capsule (3TB); then I've added an external HD of 2TB to my TC via its USB port to store my iTunes Libraries. I would like to backup my external HD with Time Machine in the HD of TC. Is it possible?

    I've recently bought a Time Capsule (3TB); then I've added an external HD of 2TB to my TC via its USB port in order to store my iTunes Libraries.
    I would like to backup my external HD with Time Machine in the HD of TC. Is it possible?

    I would like to backup my external HD with Time Machine in the HD of TC. Is it possible?
    Sorry, but not possible.
    Time Machine can only back up the internal drive(s) in a Mac....or a drive that is connected directly to a Mac via USB or FireWire.....provided that the drive is formatted in Mac OS Extended (Journaled).
    I am not recommending this, but you might be able to move the drive from the USB port to the Mac, and have Time Machine back it up that way.....then move it back to the USB port on the Time Capsule......but this will involve doing some risky things.....and manually changing settings around everytime you make the swap. Something will surely go wrong....but up to you if you want to try it.
    Carbon Copy Cloner will back up the drive connected to the USB port on the Time Capsule to the Time Capsule disk, but these will not be Time Machine backups.  SuperDuper claims to also be able to do this.....but I have not tested it.

  • Jabber SSO for PKI / Kerberos LogOn via Card&fingerPrint

    Is there any solution (existing or planned) for Jabber SSO when users are not using UserName/Password identification when they are logging in to their PC ?
    Instead they are using a PKI / Kerberos LogOn via Card&fingerPrint ? and for this LogOn method once opening Jabber Client how can they be LoggedOn without any need for further identification?

    Hi Andrzej Kazmierczak,
    Thanks a lot for the reply,
    If we configure certificate based authentication in IIS (certificate mapping) it doesn't use kerberos provider (at least that's what I have seen through network monitor captures).
    guess probably the presentation of intent in my question was wrong.. my bad..sorry
    My requirement is to configured the SSO environment based on "kerberos Authentication" (where the pre-authentication happens not via user name and password but through USER IDENTITY certificates.)
    http://msdn.microsoft.com/en-in/library/cc238455.aspx
    When smart cards are implemented with kerberos, pre-authentication (for kerberos) happens through KDC validating the smart card PKI certificate (x.509), I want to achieve the same thing in my lab without smart card (i.e.. only with user identity certificate
    installed over a device).
    There are few related information  available over the web but for Linux based (MIT kerberos) environment. However according the document available in the link(http://msdn.microsoft.com/en-in/library/cc238455.aspx), it should be possible even in Microsoft
    environment.That's exactly is my requirement.
    I am very new to  kerberos topic, please correct me if my implementation understanding is wrong somewhere.
    Thanks,
    GK

  • DMS via ITS to SAP

    In DMS we are trying to atach documents that will go to SAP via ITS.  If the docs. are smaller than 1000 bytes they are transferred succesfully, any larger and it fails.  I assume that this must be a parameter setting somewhere but do not know where to look.
    Any help would be much appreciated

    Are you using the web gui or a custom transaction?
    If you are using a custom transaction. I would suggest trying to do what you want to do with transaction CV01N in the web gui.
    If you can't do it with the webgui. You will know if you have a settings issue.
    You may want to look at the parameters in CSADMIN for the content repository.
    Sorry I can't be of more help. We use the ITS and DMS, but in the other direction. Serving up docs via the ITS.

Maybe you are looking for

  • .xls file format - downloaded from Gmail, can't open in numbers

    I tried to open it using a 3rd party "conversion" program called icExcel.app which i found on the web. I saved the file as Appleworks 6 which is the file format the program offered which Numbers would open -- but it didn't work. Any experience? I don

  • Windows 7 beta can't authenticate to Tiger Server PDC

    Greetings, Currently our Windows XP Professional clients authenticate to Tiger Server running as a Windows Primary Domain Controller without issue. I'm testing Windows 7 beta (having skipped Vista) and when I try to join the client to the Windows dom

  • Little bug in report query

    If I include an "order-by" clause in the query source of a report definition and later I specify a sorting option in the report attributes, I get an error message from the parser, probably because the sql query is dinamically created by putting toget

  • New Look for Trophy Case

    Nike has updated the Trophy Case and added new features. Below it a link to the image. http://i106.photobucket.com/albums/m253/OwensZilla/TrophyCase.jpg   Windows XP Pro  

  • Can't open itunes all of a sudden

    All of a sudden, I cann't open itunes. The message reads "the file ituneslibrary.itl cannot be read because it was created by a newer version of itunes" I have windows vista. Help!