NO AUTHORIZATION FOR GRAPHIC ACCESS

Hi,
   I am using pcui iviews in enterprise portal, I select a particular activitiy in activites application and click on "print", It gives me error saying NO AUTHORIZATION FOR GRAPHIC ACCESS (BDC)..
if some one has encountered this problem. please help me how and where should i set the authorization to get it going
thank you

hey
could some one help me in this  regard..please urgent ??
Thank you

Similar Messages

  • Regarding Error: No Authorization for Graphic Access (BDS)

    Hi,
    When I try to view the print preview of a form, I am getting the following error message:
    No Authorization for Graphic Access (BDS)
    Please help me resolve the issue.
    Thanks, Sai.

    Try to check Note 1068808 - Quotation PDF:No authorization for graphic access (BDS)
                               1039489 BDS Access Authorization to Sales Manager Roles
    Regards.

  • No authorization for graphic access (BDS)

    I'va a authorization problem I've tried to run the function module of the smartform from se37 transaction. The function module retrives this result
    "No authorization for graphic access (BDS)"
    Can I add this authorization to that user?
    Thanks

    Hi
    Is that user is critical, ask the approval from the higher authorities,
    Assign the authorization object using PFCG.
    If u are not sure of the assigned authorization, make a trace over the user and check what object should give access? and assign it.
    Regards
    Bhaskar

  • Setting authorization for BP access

    hi, we have few requirements related to controlling access to Business partner master data.
    1. there are sales teams for each geography and they need to see only accounts in their geography.
    2. there are account teams who get to access only few named accounts.
    any pointers on how to set these..i am aware of authorization groups but that is not solving the complete requirements
    thanks
    RH

    Hi RH,
    You can try and see information on Access Control engine and this is a functionality provided by SAP to restrict certain users to access data relevant to them and you can search forum for ACE.
    This is useful for PCUI application
    Thanks
    Srini

  • Authorizations for document management

    Hi,
    I'm trying to figure out what every authorization means and which effects it has...
    I created a new user, gave him all the necessary authorizations to use certain transactions in Document management by making a new role/profile for him
    After trying everything out, I still have a few questions:
    - with Authorization for change object link (C_DRAD_OBJ)I have the following properties:
    Activity: change, display
    document type: DRM-DRM
    linked SAP object: *
    document status: *
    I know how to display my object link, but how can I change it? <b>Do they mean with changing the object link, the creating of long text for the link or is there more to it?</b>
    - with authorization for document access (C_DRAW_DOK), I can't figure out what the options "Display Application archive" and "Change application archive" mean.  Which effect does it have when I choose them? Where do I consult the application archive? What is the application archive? => SOLVED
    - Do I also have to give the authorization "Display" when I want to give the authorization to delete something?  How can I delete a document info record without displaying it? =>SOLVED
    - <b>With "Status dependent authorizations for documents" (C_DRAW_TCS) what do the following options do?</b>
            *change application start (which difference with change?)=>SOLVED
    display application start (which difference with display)=>SOLVED
            *<b>request</b>
            *display archive =>SOLVED
            *change archive=>SOLVED
    I know it are a lot of questions but I'm making documentation on the authorization profiles of document management and when I figured those few last things out, I can share my documentation with the rest of you...
    Message was edited by: Vicky Liesens

    Good morning,
    Havent been watching this thread for some time now, so please shout if you do have any questions.
    Just a quick note on deleting documents:
    Setting the deletion indicator will simply mark the DIR for deletion, but, it will still be on the dB.
    After you have set the DIR for deletion, you need to run the program "MCDOKDEL", which has a test mode and a real mode.
    This program will physically delete the documents that you have marked for deletion.
    Regards,
    Freddie Botha
    www.documation.co.za
    SAP DMS, CAD Integration, Data Archiving, Imaging and Scanning and Workflow
    [email protected]

  • FTP_CONNECT: User ------- has no access authorization for computer -------.

    Hi, could anyone please help me resolve the following issue:
    When i run the code below, it comes back saying "could not connect to "host". When tried to run in debug or test the FM "ftp_connect" it says "user ..... has no access authorization for computer .....
    REPORT  ZALB_FTP_TEST.
    types: begin of t_ftp_data,
             line(132) type c,
           end of t_ftp_data.
    data: lv_ftp_user(64)                value 'branch'.     "change this
    data: lv_ftp_pwd(64)                 value 'careful'. "change this
    data: lv_ftp_host(50)                value '10.50.1.199'.     "change this
    data: lv_rfc_dest like rscat-rfcdest value 'SAPFTP'.
    data: lv_hdl    type i.
    data: lv_key    type i               value 26101957.
    data: lv_dstlen type i.
    data: lt_ftp_data type table of t_ftp_data.
    field-symbols: <ls_ftp_data> like line of lt_ftp_data.
    *describe field lv_ftp_pwd length lv_dstlen.
    lv_dstlen = strlen( lv_ftp_pwd ).
    call 'AB_RFC_X_SCRAMBLE_STRING'
      id 'SOURCE'      field lv_ftp_pwd
      id 'KEY'         field lv_key
      id 'SCR'         field 'X'
      id 'DESTINATION' field lv_ftp_pwd
      id 'DSTLEN'      field lv_dstlen.
    call function 'FTP_CONNECT'
      exporting
        user            = lv_ftp_user
        password        = lv_ftp_pwd
        host            = lv_ftp_host
        rfc_destination = lv_rfc_dest
      importing
        handle          = lv_hdl
      exceptions
        not_connected   = 1
        others          = 2.
    if sy-subrc ne 0.
      write:/ 'could not connect to', lv_ftp_host.
    else.
      write:/ 'connected successfully. session handle is', lv_hdl.
      call function 'FTP_CONNECT'
        exporting
          handle        = lv_hdl
          command       = 'dir'
        tables
          data          = lt_ftp_data
        exceptions
          tcpip_error   = 1
          command_error = 2
          data_error    = 3
          others        = 4.
      if sy-subrc ne 0.
        write:/ 'could not execute ftp command'.
      else.
        loop at lt_ftp_data assigning <ls_ftp_data>.
          write: / <ls_ftp_data>.
        endloop.
        call function 'FTP_DISCONNECT'
          exporting
            handle = lv_hdl
          exceptions
            others = 1.
        if sy-subrc ne 0.
          write:/ 'could not disconnect from ftp server'.
        else.
          write:/ 'disconnected from ftp server'.
        endif.
      endif.
    endif.
    Thanks in advance for the help.

    It doesn't work for me if I just maintain * entry.
    But it works after I maintained specific IP address into the table,
    ref notes:2072995 - User has no access authorization for computer
    Cause
    The message comes after the implementation of note '1605054 - Restriction in access to FTP Servers & usage of test reports' or upgrading to a
    support package that contains this note. This note was created to prevent malicious users from accessing remote FTP servers.
    Resolution
    1. Please ensure that all manual steps from note 1605054 are implemented in your system along with the code corrections
    2. Then please enter the allowed FTP servers into the table SAPFTP_SERVERS or enter ‘*’ to allow all FTP servers.

  • User DOMAIN / user has no access authorization for computer IP_address

    Dear Forum,
    When running a function module FTP_CONNECT with RFC destination SAPFTPA (in SM59). I always get a message "User <DOMAIN>/<user> has no access authorization for computer <IP_address>". Trying it with IE, I have no problem.
    There is always an event viewer security failure log when I try it:
    ===========================================
    Logon Failure:
         Reason:          Unknown user name or bad password
         User Name:     <user>
         Domain:          <DOMAIN>
         Logon Type:     8
         Logon Process:     IIS    
         Authentication Package:     MICROSOFT_AUTHENTICATION_PACKAGE_V1_0
         Workstation Name:     GDCS009D
         Caller User Name:     GDCS009D$
         Caller Domain:     ERP
         Caller Logon ID:     (0x0,0x3E7)
         Caller Process ID:     968
         Transited Services:     -
         Source Network Address:     -
         Source Port:     -
    For more information, see Help and Support Center at
    ===========================================
    Please help....
    Regards,
    Agoes

    Hi ,
    Each and every SAP client ( as it is client dependent)
    Go to SE16
    Table name : SAPFTP_SERVERS
    Go to Menu TABLE ---> Create new entries
    FTP SERVER NAME  *
    FTP SERVER PORT 21
    Save
    Regards
    Venkat

  • Doesnot ask for access key. error No authorization for the 'S_DEVELOP'

    Hi,
    After applying patches,in transaction F-43 one of the field Inv Recd Date( BSEG-ZOLLD) is not getting displayed.
    after analzing we found that ZOLLD is not there in screen SAPMF05A(0302).
    in my development server when i try to change the screen it says "You have no authorization for the authorization object 'S_DEVELOP', which would allow you to change the screen concerned"
    my profiles contains sap_all and sap_new rights even then I am getting this error.
    Why doesnt it ask for access key ?
    Kindly guide me .
    Regard

    > Please check in Su24, if iy has S_develop object or not,
    In SU24? why? and what or who is "iy"?
    > since you say you have SAP_ALL access please regenerate SAP_ALL its a composite profile this should work fine.
    What does the fact that it is a composite profile matter? Besides that I've already made a remark about regenerating it.
    > But you need to check at SU24 against f-43 whether S_develop missing or not,if missing please insert manually
    Ehm, do you really think the SU24 settings for a transaction influence the changeability of it's underlying screens/programs etc? It will not matter at all what you do with S_DEVELOP in SU24.

  • While accessing Integration Directory (No authorization for this action)

    Hi,
    I am getting below error, while accessing  Integration Directory it is showing (No authorization for this action
    I had provided necessary authorization to XI* users & j2ee_guest, j2ee_admin.
    below error is in application.log
    #1.5#0019BB24F5460065000000130000145000045BA13A34D68B#1226647931285#/Applications/ExchangeInfrastructure/Directory#sap.com/com.sap.xi.directory#com.sap.aii.ib.web.clidist.DownloadServlet#J2EE_GUEST#0####59978c50b21e11dd9a8b0019bb24f546#SAPEngine_Application_Thread[impl:3]_18##0#0#Error#1#com.sap.aii.ib.web.clidist.DownloadServlet#Plain###Cannot locate jnlp resource
    Thrown:
    com.sap.engine.services.httpserver.exceptions.HttpIOException: Write timeout. HTTP client read timeout or callback from dispatcher not received for [10000] milliseconds.
         at com.sap.engine.services.httpserver.server.ResponseImpl.sendResponse(ResponseImpl.java:281)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.ServletOutputStreamImpl.flush(ServletOutputStreamImpl.java:411)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.ServletOutputStreamImpl.write(ServletOutputStreamImpl.java:236)
         at com.sap.engine.lib.io.GZIPMultiOutputStream$StreamTool.deflate(GZIPMultiOutputStream.java:123)
         at com.sap.engine.lib.io.GZIPMultiOutputStream.write(GZIPMultiOutputStream.java:339)
         at com.sap.engine.services.servlets_jsp.server.runtime.client.GzipResponseStream.write(GzipResponseStream.java:230)
         at com.sap.aii.ib.web.clidist.DownloadResponse$FileDownloadResponse.sendResponse(DownloadResponse.java:114)
         at com.sap.aii.ib.web.clidist.DownloadServlet.handleRequest(DownloadServlet.java:104)
         at com.sap.aii.ib.web.clidist.DownloadServlet.doGet(DownloadServlet.java:34)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:365)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:944)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:266)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:160)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Regards,
    hari

    Hi,
    Thanks for your quick update,
    I had provided for all necessary aauthorizations in SU01. still i am facing problem.
    here i am attaching default.0.trc contains error.
    Pls guide me,
    #1.5#0019BB24F546006E0000000F0000145000045BA198970570#1226649514800#com.sap.engine.services.httpserver##com.sap.engine.services.httpserver#XIAFUSER#228##tdcusappay_PXI_4766550#XIAFUSER#096e7910b22211dd812c0019bb24f546#SAPEngine_Application_Thread[impl:3]_10##0#0#Error#1#/System/Server#Plain###User XIAFUSER, IP address
    HTTP request processing failed. HTTP error [403] will be returned. The error is [You are not authorized to view the requested resource.No details available].#
    #1.5#0019BB24F546005F000000500000145000045BA19A61CE61#1226649544878#com.sap.engine.services.httpserver##com.sap.engine.services.httpserver#XIAFUSER#229##tdcusappay_PXI_4766550#XIAFUSER#1b5c02f0b22211dd82890019bb24f546#SAPEngine_Application_Thread[impl:3]_37##0#0#Error#1#/System/Server#Plain###User XIAFUSER, IP address
    HTTP request processing failed. HTTP error [403] will be returned. The error is [You are not authorized to view the requested resource.No details available].#
    Thanks & Regards,
    hari

  • Sapftpa - no access authorization for computer

    Dear Forum,
    When running a function module FTP_CONNECT to do ftp to a server, always gets an error message: "<user> has no access authorization for computer <IP_address>". The ftp is on Win 2003 server Enterprise Edition.
    Any helps will really appreciated.
    Regards,
    Agoes

    To check the missing authorization Enter the T-code SU53 it will display the missing objects .then assign these objects to your user role.
    Thanks and Regards
    Waseem Yousaf

  • "Low-level" authorizations for accessing BW reports - add users to role

    Using the advice in Topic "Low-level" authorizations for accessing BW reports, I have been able to publish a query to a role that has 3 test users and each user gets the same query but with different data, as determined in the tables.
    Is there a way to look up the users and e-mail addresses from a table and associate them to the role? We have several hundred e-mail recipients that will not need BW access, but only need an e-mail with a static report that contains data on their own territories.

    Hi!
    i think programatically it might be complex. You got to maintain a seperate variant of report per user and use this variant to send mail. that means you need to maintain a variant and a Broadcast setting per user. once maintained you can use it any number of times the values will be recalculated everytime.
    with regards
    ashwin
    <i>PS n: Assigning point to the helpful answers is the way of saying thanks in SDN.  you can assign points by clicking on the appropriate radio button displayed next to the answers for your question. yellow for 2, green for 6 points(2)and blue for 10 points and to close the question and marked as problem solved. closing the threads which has a solution will help the members to deal with open issues with out wasting time on problems which has a solution and also to the people who encounter the same porblem in future. This is just to give you information as you are a new user.</i>

  • Do not have authorization for access with activity 03 on the InfoProvider

    Hi,
    I have developed new cube & ODS and created new Web Templates based on queries on these Infoproviders.
    I have created new role and adde these templates to menu of this Role.
    In Authorization profile i have used following Authorization objects.
    S_RS_BTMP
    S_RS_COMP
    S_RS_COMP1
    S_RS_ICUBE
    S_RS_ODSO
    In all these objects i hace selected activity 3.
    Infoarea used for these new Cube & ODS is also added and for cube & ODS selection ihave used * (full authorization)
    But when user is opening the web template it is showing error messahe
    "You do not have authorization for access with activity 03 on the InfoProvider ZICXEROX."
    Is there is any authorization object missing in the profile?
    Regards
    SSS

    Dear SSS,
    Have the same problem ' You do not have sufficent  authorization for the infoprovider'. so could you please send the document from my mail id
    [email protected].......
    plaase very very urgent
    Regards
    Ahmed.

  • User ftpuser has no access authorization for computer(FTP_CONNECT)

    Hi Gurus
    i am getting error like this  "User ftpuser has no access authorization for computer" when i am trying to ftp_connect.i did use before this 'HTTP_SCRAMBLE' but still not getting output .i searched SDN its says answred but no solution.can anyone help me .

    It doesn't work for me if I just maintain * entry.
    But it works after I maintained specific IP address into the table,
    ref notes:2072995 - User has no access authorization for computer
    Cause
    The message comes after the implementation of note '1605054 - Restriction in access to FTP Servers & usage of test reports' or upgrading to a
    support package that contains this note. This note was created to prevent malicious users from accessing remote FTP servers.
    Resolution
    1. Please ensure that all manual steps from note 1605054 are implemented in your system along with the code corrections
    2. Then please enter the allowed FTP servers into the table SAPFTP_SERVERS or enter ‘*’ to allow all FTP servers.

  • Accessing RSA1 issueYou have no authorization for basic types (activity 01)

    We are experiencing the following issue with RSA1
    While accessing this it comes back with error
    You have no authorization for basic types (activity 01)
    This was working before and no authorizations got changed. Appreciate your feedback.

    Hi,
    This is realted to authorizaion problem. please contact your basis team.
    Assign points if it helps.
    Cheers,
    Malli.

  • Cancel a SD invoice error message "no authorization for transaction FB08"

    Hi Gurus,
    I am trying to cancel a SD invoice and am receiving the error message " no authorization for transaction FB08" is coming. Never has this happened in past, i have checked all the security authorizations also and they are in place. Accounting document status is showing as not cleared. Also, as per my understanding cancellation of invoice happens through VF11 which does not calls FB08. Please point out reasons as to why this could be happening and the possible solution thereof.
    regards
    Anmol Pareek

    Hi Anmol
    Once you got the error screen, immediately after that goto T code SU53 and expand all link. Take the screen shot and send it to your BASIS team to provide you proper access.
    Yes you are correct cancellation is done through VF11 but sometime some programs internally calls other T codes.
    take help of your basis team.

Maybe you are looking for

  • How to reference dynamic parameters in the PL/SQL script

    The meaning of dynamic parameter is the position and name of parameters will be changed based on the data structure of a referenced text file reading by the concerned PL/SQL script. Anybody can post a sample code will be very appreciated.

  • LD_JAVA, classpath settings in .profile for oracle on unix installations

    I need details about setting LD_JAVAPATH /JAVA related classpath settings etc. That i remember seeing sometime ago, but cannot find the required settings in my current oracle 10g installation guide on solaris 10!! the DBCA wizard is failing and I nee

  • Problem related to locking the table

    Hi all, i am facing a problem while applying locks on the oracle table.my intention is stop the accessing of table to other users, if the table is locked by one user. for this i wrote the code as follows Class.forName("oracle.jdbc.driver.OracleDriver

  • N96-phone recovery-PLS HELP--URGENT

    im geting the error in nokia software updater:- remove the battery and charger, insert battery and charger, click retry power on. what should i do? after trying this, i still get the error! help pls What's Worth Doing, Is Worth Doing Well! All "N-ser

  • Release strategy of PO

    Hi, Do we need to maintain charactertic value in CTO4  under values tab...or its to be maintained when we add something new like new plant, new doc type etc? We give values only when we define release strategies....correct me if i am wrong. In case w