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.

Similar Messages

  • Authorization check when creating shipment document

    Dear Experts,
    I have a shipment document type that is shared for all shipping point. I found that there are no shipping point checking when we select outbound deliveries. Can we add shipping point authorization check when we select delivery document?
    Please advice.
    Thanks.

    If you want to use frameworks, I think the right model would be to place the methods in EJBs and then use security constraints and user roles and the like.
    OTOH, Spring probably has something very similar without requiring EJBs. It will require the beans come from the Spring container however and not the JSF managed bean container.

  • Can two user can logon into sap b1 8.8 as like sab b1 2005

    Hi All Expert,
           As we know that as like SAP B1 2005 we two user can logon into sap from a user id , My question is can we do the same on sap 8.8 also..
    Regards,
    Inder.

    Hi Gordon,
          Do the old two log in with the same user id is working with 8.8 also..
    Thanks and Regards,
    Inder.

  • Is there a R3 table to track who are currently logon into SAP portal?

    Hey, Gurus,
    Is there a R3 table to track who are currently logon into SAP portal?
    Thanks inadvance!
    Fisher

    What I am trying to accomplish is that we have a customized SAP web dynpro program with Java that access R3 data.
    I would like to create a lock in R3 to prevent the record in R3 being accessed by more than one person.
    The problem was that in our customized portal programs will not always exit gracefully and the lock will not be cleared correctly all the time.
    If there is a way that I can access the user logon data in portal (java stack), I will try to figure out how to unlock the record after the person exit.
    Thanks!
    Fisher

  • EXCEL Web Query  - load into SAP via Web dynpro or standard ABAP

    Hi everybody
    I was wondering if you can run an EXCEL WEB Query from abap and then upload the data retrieved from the web into SAP using either a web dynpro application or standard SAP.
    For standard ABAP one could probably run the EXCEL web query by executing some code such as
    call method cl_gui_frontend_services=>execute
    exporting
    document = 'your excel web query file'.
    You could then save the data and using GUI_UPLOAD get it into sap.
    I'd really like to do it via a web dynpro application.
    Any ideas anyone.
    For guys who've never used EXCEL web queries --quite easy.
    Open EXCEL
    go to Import External Data
    Choose New web query
    Enter URL of where you want to retrieve your data from such as YAHOO finance etc.
    For example to get the components of the Dow Jones Composite Index (^DJA) use this url
    http://finance.yahoo.com/q/cp?s=%5EDJA
    click the yellow arrow on the table data you want to import. The arrow will turn Green and press IMPORT
    Then enter the cell number where you want to start importing data
    Hey presto you've got your data from the web.
    Cheers
    jimbo

    when you create a new webquery, in the properties, you can set when the page should refresh (data fetch to happen), you can set that to refresh at file open.
    then you can use either OLE or gui_upload to upload the excel to read the data.
    have couple of question:
    why do you want to choose excel webquery ?=> is it because the ability to get unstructured data from the web?
    what sort of data you are trying to read from the web?=> most of data centric sites (forex, stock quotes) will have either RSS feeds or some web APIs to get data which can be easily consumed by ABAP
    Regards
    Raja

  • Authorization check when searching for transactions

    Hi all,
    We have a requirement to show only those activities for which a user is authorized. A custom authorization object has been maintained and the check in CRMD_ORDER has been extended accordingly. When opening an activity, the check is executed correctly, but when searching for activities, ALL activities are still shown, so the check is not performed at that particular moment. I have tested with standard authorization objects as well, but none of them are taken into account. Does anyone of you know how we can have the authorization check executed before or during the search, so that only those activities are shown, that the user may maintain as well.
    Thanks in advance!
    Regards,
    Joost

    Hello Joost,
    Check if BADI CRM_ORDER_INDEX_BADI could not map your requirement.
    Regards,
    Frédéric

  • How to let a PE user logon into SAP?

    If I have a employee, and create his data in SAP,
    His partner function is PE.
    After creating a sales order, I send a internal email to him, then
    1) How can he logon SAP, where can I change his password?????
    2) How can he read this email??????
    example: personal ID 170101 in IDES
    when I save sales order, system ERROR:
    OK)        Object 0000012661
    OK)        Output type: Internal Mail 01
    OK)        Processing log for program RSNASTSO routine SAPOFFICE_AUFRUF_VX
    ERROR) Function <Send> not possible
    OK)        Message object FOL18          4 SCR33000000000266 created or sent
    WHY?
    Edited by: jianming zhang on Nov 6, 2008 9:51 AM

    Hi there,
    When the order is saved, the system will call the mail ID maintained in SU01 of the user.
    It will then trigger the mail to the regular outlook mailbox.
    Else in some cases a new Z table is defined to maintain the mail IDs. System will trigger the mail through outlook. It has that inbuilt capability.
    Just ask your user to check his mail box to see if he has received the mail.
    Regards,
    Sivanand

  • ORA-06502: error when inserting into table via db link with long datatype

    Folks,
    I am getting the following error:
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small.
    This occurs when an insert is done via a database link into a table that has a LONG data type for one of the columns, and the string contains some carriage returns and or line feeds.
    I have checked by removing the db link, and inserting into a local table with identical column data types, where there is no error.
    So this might be another db link bug?
    So I need to remove the carriage returns and/or line feeds
    in my pl/sql block in the page process. I have tried
    l_text := REPLACE(l_text, CHR(10), ' ');
    l_text := REPLACE(l_text, CHR(13), NULL);
    but still getting the ORA-06502. Would really appreciate some advice here, please.
    Cheers
    KIM

    Scott,
    Time to 'fess up':
    My fault sorry, the error was coming from another page process where I had allowed insufficient string length for one of the variables, and my error message did not identify the page process clearly.
    This leads me to make a request for future releases, could the system error messages state which page process caused the problem?
    One other thing I notice, and this might be a feature not a fault, the page processes are numbered: "Page Process:      3 of 5". However process 3 is not the 3rd one to be processed, and probably refers to the order in which they are created. Should the number reflect the process order?
    Cheers
    KIM

  • Authorization error when logon to IB-Repository and Directory

    Hi,
    we patch from SP12 to SP13. At SP12 logon to IB (Repsoitory and Directory) work without problems. But
    after applying SP13 to XI we can't logon to IB anymore.
    The error is "Authorization error, unknown user name or
    incorrect password". The user we use can logon to the
    Server so password should be ok. And the same user have
    been also used when we still have SP12.
    We have cleared the WS Cache an do the Re-Ininitialize
    like mentioned in other thread dealing with this problem.
    But it doesn't help so far.
    Login to SLD, Runtime Workbench with the same user work
    without problem. So it can not be the issue with wrong
    name and password.
    Have somebody faced this problem after patching to SP13.
    Our XI run on Windows 2000.
    Thanks,
    Ly-Na Phu

    Hi,
    First check in RSSM whether your InfoProvider is checked for authorization object 0PERS_AREA. Also determine whether do you need this authorization object ?If yes, then it should be checked otherwise check mark should be unchecked. If 0PERS_AREA is checked for your InfoProvider, then you should have some value in this object when you create the role. Either *  for all values or restricted value for it. Goto Pfcg select the role and add the authorization values for the 0PERS_AREAobject.
    GSM.

  • Authorization check during logon

    hi,
    please help me to find out the answer.. which authorization object is checked first when a user log in to a sap system?

    Hi Adri,
    While logging no authorization are checked against your ID,but your Authorization are copied in user buffer.
    When you execute tcode authorization are check from this buffer.
    If you don't assign any authorization i.e role to user, user is able to login but cannot execute any tcode.
    This justified it.
    Try it out.
    Hope this helps

  • How to get my MacBook to open new space when plugged into tv via HDMI?

    Alright. All of my roommates & myself have MacBook Pros. When they plug them into the tv via HDMI, the computer opens a new separate empty space on the tv where you can drag windows from your laptop to the tv screen so you can still use the computer at the same time as watching a movie. However, when I plug mine in, it just shows what is on my computer screen & I really want to know how to change it.
    Pleaseee someone help me!

    Turn off the mirror settings in Safari > Displays

  • Txn LM50 starts with a message when logging into SAP

    Hello Developers,
    I have a user who always gets txn LM50 to immediately display after every login to SAP instead of getting the SESSION_MANAGER page to display.
    After entering the user id and password, transaction screen LM50 displays with message "User xxxx not assigned to any active inventory document".  I don't believe this is necessarily a problem with the tcode or as a result of the error causing the message.
    Are there any known reasons why a user would be placed directly into a transaction rather than into the initial SESSION_MANAGER page as a result of logging into the system?
    Thank you
    Terry

    I'm not sure if you are looking at the right place.
    Ok. Do this. Go to easy access menu and set that as the start transaction.(Browse the menu bar to find the "set start transaction" option)
    - guru
    Reward points for helpful answers

  • HPUX on IA64: Error when connecting to SAP via librfc

    Hello,
    I'm trying to develop a C-program to call ABAP-Functions. On Windows this works fine (example program from the book "SAP-Schnittstellenprogrammierung" by Meiners/Nüßer), but on HP-UX on IA64 I get:
    **** Trace file opened at 20060919 115449 MESZ SAP-REL 700,0,61 RFC-VER 3 834459
    resize I/O buffer to 16000 bytes
    >>>> [1] <unknown>    : EXT  <ac: 1> L w2sap >>> OPEN  
    UUID: ab_drvstate create uuid {450FBE6A-BE69-25F1-E100-0000C06D4F88}
    ======> Connect to SAP gateway failed
    Connect_PM  GWHOST=w2sap, GWSERV=sapgw00, SYSNR=00
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       internal error
    TIME        Tue Sep 19 11:54:49 2006
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -1
    MODULE      nixxi.cpp
    LINE        2762
    DETAIL      NiICheckPendConnection
    SYSTEM CALL poll, getsockopt
    ERRNO       2050
    COUNTER     3
    >>>> [1] <unknown>    : EXT  <ac: 2> L w2sap >>> CLOSE abrfcio.c 611 
      -{450FBE6A-BE69-25F1-E100-0000C06D4F88}
    ==== Delta 0   0 LOG DROPPED
    >>> RfcOpenEx ...
    Got following connect_param string:
       CLIENT=000 USER=BCUSER PASSWD=******* LANGUAGE=DE ASHOST=w2sap SYSNR=00 ABAP_DEBUG=0 LCHECK=0 TRACE=1 USE_SAPGUI=0
    <<< RfcOpenEx failed
    I presume it has something to do with 32/64 Bit, because we also had problems with our own programs. On HPUX socklen_t is 64 bit (parameter of getsocket), and perhaps librfc thinks, it only has 32 bit and give an int as parameter.
    Is there anything I can do?
    Thx.
    Roger

    I am also getting this error when using VitalStream. Was an
    answer ever found this this issue? If anybody has any suggestions,
    all help is appreciated.
    Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095:
    flash.net.NetConnection was unable to invoke callback streamInfo.
    error=ReferenceError: Error #1069: Property streamInfo not found on
    mx.controls.videoClasses.NCManagerConnectClient and there is no
    default value.
    at mx.controls.videoClasses::NCManager/::connectRTMP()
    at mx.controls.videoClasses::NCManager/connectToURL()
    at mx.controls.videoClasses::VideoPlayer/::_load()
    at mx.controls.videoClasses::VideoPlayer/load()
    at mx.controls::VideoDisplay/load()
    at mx.controls::VideoDisplay/::autoPlaying()
    at mx.controls::VideoDisplay/::creationCompleteHandler()
    at
    flash.events::EventDispatcher/flash.events:EventDispatcher::dispatchEventFunction()
    at flash.events::EventDispatcher/dispatchEvent()
    at mx.core::UIComponent/dispatchEvent()
    CODE
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Panel title="VideoDisplay Control Example"
    height="75%" width="75%"
    horizontalAlign="center"
    paddingTop="10" paddingLeft="10" paddingRight="10"
    paddingBottom="10">
    <mx:Text width="75%" color="blue"
    text="Use the buttons to control the video. The Stop button
    resets the video to the beginning."/>
    <mx:VideoDisplay
    id="myVid"
    height="158"
    width="211"
    source="rtmp://LINK REMOVED"
    autoPlay="false"/>
    <mx:HBox>
    <mx:Button label="Play" click="myVid.play();"/>
    <mx:Button label="Pause" click="myVid.pause();"/>
    <mx:Button label="Stop" click="myVid.stop();"/>
    </mx:HBox>
    <mx:HBox>
    <mx:Label text="{myVid.bytesLoaded} of
    {myVid.bytesTotal}" />
    <mx:Label text="{myVid.playheadTime} of
    {myVid.totalTime}" />
    </mx:HBox>
    </mx:Panel>
    </mx:Application>
    Text

  • Remote disc when booted into Windows via Bootcamp?

    I have a PC only program that only works when the CD Rom is in the drive. My question is whether the remote disc functionality works when you are booted into the Windows side of the computer. I have installed the program i need to run on the windows side, however, it requires the physical disc to be inserted when the program runs. Can remote disc work for this?
    Thanks in advance for any answers.

    Good question. Here's what Apple provides:
    MacBook Air- How to use Remote Disc to share DVDs or CDs on a Mac or Windows-based computer
    MacBook Air- USB optical drive required for installing Boot Camp

  • 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

  • Select text from all_views returns an empty string

    My application allows the user to select between the Data Provider for ODBC and the Data Provider for Oracle. (ODP) When using the ODBC provider the statement: Select text from all_views where view_name='MYVIEW' returns the expected string. If I conn

  • Parsing query variable

    I am facing a problem while parsing query output variable. Scenario:- I have stored session variable name as the column value of a table. Now I have used cfquery tag and get the result column value which is the session variable name. But cold fusion

  • No PDF Thumbnails in Windows 7 RTM Reader 9.1.3

    My Thumbnails have disappeared. PDF documents that previously had thumbnails are gone. Just the plain old Adobe icon now. I have tried every setting I can think of and deleted all the thumb files and icon caches. One minute I had 'em and the next the

  • How to read an APO table from excel in place using Visual Basic ?

    We have enhanced some APO reports using layouts that use excel in place with custom visual basic (VB) code. For example, the VB code can append the data with additional columns that perform specific calculations and then proceed to create pivot table

  • Oracle Boot Camp training

    Not sure of the best place to ask this question so will try here. I have been checking out the Oracle Boot camps for an intense training course for certification. One camp can be found at http://www.trainingcamp.com/us/training/oracle/oracle.asp Anyb