I need upload Training sap tutor file

Hi All,
I need upload Training sap tutor file(.sim), and it should be restricted by user leave, user should not able to copy the file and should not print(we controlled in Tutor file level).

Hi,
Authorizations can be restricted by making use of authorization tab provided in DIR..
Authorization role : Superuser per Object Category and Activity - ACO_SUPER can be used..
Thank You,
Manoj

Similar Messages

  • How to upload a SAP request files into our PRD ?

    dear all ,
    there is a software installed on windows 2008, this software will connect to our SAP production server to collect some data.
    there is a problem within the connection, the software vendors send some files with *.E6D Extension and ask us to install on SAP production server to resolve the problem.
    the files are
    K900086.E6D
    K900096.E6D
    K900102.e6d
    R900086.E6D
    R900096.E6D
    R900102.e6d
    i think these files are are change requests copied from the transport directory from a SAP DEV server
    my question is how to upload or install these file into SAP PRD server?
    thanks in advance
    Mahmoud Younis

    Hi,
    Firstly copy the cofiles and datafiles of above mentioned requests into /usr/sap/trans .../cofiles and /data of PRD.
    Then Login to PRD in default client
    go to tcode STMS
    select the production server
    From Menu , Extras -> Other request , add each of these transport request into the import queue of PRD.
    Then run the import of these requests as per the sequence specified.
    Hope this answers your query.
    Regards,
    Deepak Kori

  • Need Web Dynpro ABAP Tutor files

    Hi
    Can anyone help me to locate Tutor files in this site / any sap web site.
    Regards

    hi,
    U can check out the following links for web dybpro in abap....
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/fed073e5-0901-0010-4eb4-c9882aac7b11 [original link is broken]
    this link contains 6 basic webdympro for abap tutorial.....
    also chk out
    https://www.sdn.sap.com/irj/sdn/developerareas/webdynpro?rid=/webcontent/uuid/512040e1-0901-0010-769c-c238c6ca35d9 [original link is broken]

  • Re: SAP Tutor output file not saved after recording

    Hi,
    we are having the following issue when trying to create SAP Tutor files.
    The Application which should be recorded with the SAP Tutor is running and selected in the running applications window. During the recording session a sim file is created, but as soon as the recording is stopped the sim file is gone. There are no error messages or warnings.
    The created sim file just disappears after ending the recording with the "stop" button - why?
    Thanks in advance!
    Regards,
    Sampath.

    Hi,
    Go to Start --> regedit -->HKEY_LOCAL_MACHINE -->Software -->SAP -->smi tutor, Delete this smi tutor folder completely and also delete SAP Tutor folder inside program files. Then restart the system and again install the SAP TUTOR freshly and check it will work fine.
    Regards,
    Sampath.

  • SAP Tutor output file not saved after recording

    Hi,
    we are having the following issue when trying to create SAP Tutor files.
    The Application which should be recorded with the SAP Tutor is running and selected in the running applications window. During the recording session a sim file is created, but as soon as the recording is stopped the sim file is gone. There are no error messages or warnings. We are following the discription found here:
    http://help.sap.com/download/documentation/additional/saptutor/saptutor14_en.pdf
    The created sim file just disappears after ending the recording with the "stop" button - why?
    Thanks for your help!

    What OS is running on your PC? I'm having the same issue with a Windows 7 PC, but not with a Windows XP PC.
    What I think is happening is that after you hit "Stop" there's a process called "iTutorCleanup" that's run to post-process the .sim file. On a Windows XP machine I can see this running, and I end up with a working .sim file afterwards. I suspect on a Windows 7 PC this cleanup process is failing and that is why the .sim file disappears.
    I'm still playing with compatibility mode settings, but haven't found anything yet that makes it all work. If anyone has any suggestions I'd be very grateful!
    Thanks,
    Steve.

  • How to license a SAP Tutor

    I get a sim file and try to play it. However I get the error mesg:
    "You need to license SAP Tutor."
    I have searched  the OSS and SDN but no findings about how to do it.
    Please help, thanks a lot!

    Have you downloaded and installed the Sap Tutor player ? Here is the link if you havent.
    https://websmp201.sap-ag.de/~sapidp/011000358700001572552002E
    You dont need a license. However, you need an OSS id.
    Kunal

  • Excel Format File Upload in SAP APO 4.0

    I have an file on desktop with .xls format. This file I need to upload in SAP ztable in APO .... kindly suggest the various techinques availabe for this....
    kindly find the attached code for the same which I have written..... request you to suggest on this...
    This APO is not supporting following Function module
    1. KCD_EXCEL_OLE_TO_INT_CONVERT
    2. ALSM_EXCEL_TO_INTERNAL_TABLE
    I am attaching the code...
    EPORT ZTEST_EXCEL NO STANDARD PAGE HEADING MESSAGE-ID zsn.
    DATA: Begin of i_temp occurs 0,
           Z_LOCATION like ztest_tran-z_location,
            z_product  like ztest_tran-z_location,
            Z_0_30_DAYS like ztest_tran-Z_0_30_DAYS,
            Z_31_59_DAYS like ztest_tran-Z_31_59_DAYS,
            Z_OVER_59_DAYS like ztest_tran-Z_OVER_59_DAYS,
          End of i_temp.
          data : i_temp1 like i_temp OCCURS 0 WITH HEADER LINE.
          DATA : begin of itab_file occurs 0,
            line(255) type c,
          end of itab_file.
    DATA: v_file type string.
    selection-screen begin of block b1.
    parameters: fl_file like rlgrap-filename lower case.
    selection-screen end of block b1.
      v_file = fl_file.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = V_FILE
       FILETYPE                      = 'ASC'
      HAS_FIELD_SEPARATOR           = ' '
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      TABLES
        DATA_TAB                      = I_TEMP
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      NO_AUTHORITY                  = 6
      UNKNOWN_ERROR                 = 7
      BAD_DATA_FORMAT               = 8
      HEADER_NOT_ALLOWED            = 9
      SEPARATOR_NOT_ALLOWED         = 10
      HEADER_TOO_LONG               = 11
      UNKNOWN_DP_ERROR              = 12
      ACCESS_DENIED                 = 13
      DP_OUT_OF_MEMORY              = 14
      DISK_FULL                     = 15
      DP_TIMEOUT                    = 16
      OTHERS                        = 17
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

    ..........

  • File upload in SAP BI using Webdynpro.

    Hi,
    I have requirement in Webdynpro, where I need to upload the data from file of type Tab delimited (*.txt) file from desktop. In ECC I know how to upload the file i.e., by using the Function module (FM) 'HR_KR_XSTRING_TO_STRING'. But in SAP BI the FM doesnu2019t exist.
    Is there any way to upload TAB delimited (*.txt) file in SAP BI for  Webdynpro ABAP.
    Can we move or copy the package P99E  from ECC to SAP BI.This package contains the above said Function module. If it is possible then please guide on this.
    Edited by: SUNIL B SMG on Jan 27, 2012 3:19 PM
    Edited by: SUNIL B SMG on Jan 27, 2012 3:22 PM

    Hi,
    iView:
    <hbj:form encodingType="multipart/form-data" >
       <hbj:fileUpload  id="myfileupload"                    maxLength="125000"                    size="50"   />
    </hbj:form>
    Action-Method:
    public void onLoadFile(Event event) {
             FileUpload fu = (FileUpload) this.getComponentByName("myfileupload");
    // this is the temporary file
             if (fu != null) {
    // Output to the console to see size and UI.
                System.out.println(fu.getSize());
                System.out.println(fu.getUI());
    // Get file parameters and write it to the console
                IFileParam fileParam = fu.getFile();
                System.out.println(fileParam);
    // Get the temporary file name
                File f = fileParam.getFile();
                String fileName = fileParam.getFileName();
    // Get the selected file name and write ti to the console
                ivSelectedFileName = fu.getFile().getSelectedFileName();
                System.out.println("selected filename: "+ivSelectedFileName);
    Regards,
    Gerhard

  • I need the Log Report for the Data which i am uploading from SAP R/3.

    Hi All,
    I am BI 7.0 Platform with Support Patch 20.
    I need the Log Report for the Data which i am uploading from SAP R/3.
    I extract the DATA from R/3 into BI 7.0 DSO where I am mapping the GL Accounts with the FS Item.   In the Transformation i have return a routine on the FS Item InfObject . I am checking the Gl code into Z table for the FS Item .
    I capture the FS item from the Z table then update this FS item to Infobject FS item.
    Now i  need to stop the Data upload if i do not find the GL code in the Z table, and generate report for all GL code for which the FS item is not maintained in the Z table.
    Please suggest.
    Regards
    nilesh

    Hi.
    Add a field that you will use to identify if the GL account of the record was found in the Z table or not. Fx, create ZFOUND with length 1 and no text.
    In your routine, when you do the lookup, populate ZFOUND with X when you found a match (sy-subrc = 0) and leave it blank if you don't find a match. Now create a report filtering on ZFOUND = <blank> and output the GL accounts. Those will be the ones not existing in the Z table, but coming in from your transactions.
    Regards
    Jacob

  • Error while loading .sim file with sap tutor 2.2

    Dear Gurus,
    I had recorded a tutorial which is am attempting to edit now.
    On opening the tutorial through the editor, I get the following message:
    "The following error occured while opening the file:
    error loading archive: no valid header or TOC found (80040002)"
    I am able to edit other tutorials satisfactorily.
    I seek guidance in resolving the error and opening the tutorial.
    Note: I downloaded SAP Tutor from SWDC.
    Regards,
    Ajay

    I was using the SAP Personal Player to play the tutorials. After I installed the licenced version from service.sap.com, I was able to open the .sim files.
    Thanks!

  • Password while extracting SAP Tutor installation files

    Hi,
    I have downloaded SAP Tutor tutor216full_2-20000393.zip file. While extracting this zip file its asking for password. From where can I get it?
    Thanks in advance

    Charles please do not extract the installation files to the Program Files directory.  I would recommend extracting the installation files to your download folder or your desktop.  Once the installation files are extracted you can then run the installer to install Photoshop Elements 13.

  • Can some body point me to the source of simulation(sap tutor) scenario file

    There used to be some sap tutor(sim) files for some config scenarios of XI, I am no longer able to see them here in SDN. Can somebody tell me where they are gone or if the location is changed.
    Thanks in advance

    Hi Krishna,
    You can check in service.sap.com for this-
    Link is -
    https://websmp109.sap-ag.de/netweaver ->SAP Netweaver In detail->Process Integration->SAP Exchange Infrastructure->Media Library 
    There are mnay tutor files/documentation etc..
    Elearning~
    https://www.sdn.sap.com/irj/sdn/developerareas/xi?rid=/webcontent/uuid/a680445e-0501-0010-1c94-a8c4a60619f8 [original link is broken]
    Topic based Demos
    https://www.sdn.sap.com/irj/sdn/docs?rid=/webcontent/uuid/110ff05d-0501-0010-a19d-958247c9f798#xi [original link is broken]
    Regards,
    Moorthy

  • I need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training

    i need to do sap sd certification ,training for same is very costly from authorised center and i canot afford ,the other way is i do training from unauthorised center and take certification exam in any country where prerequisite is not doing training from authorised center.how good it it to do prepare from unauthorised center and take exam in any country like australia ,US ?please help understand .

    Hi Preeti,
    please first understand the difference between a subject (your header) and its body line, please never write so long subject matter.
    Now coming to your queries , what you thinks being at Australia or US is free of Cost. The first thing is that i don't understand your mission for taking Certifications, Are you a working proffesional because for more than 2 yrs. of working experience, you don't need any training , you can take direct examinations.
    And if you are not a working professional, i don't thing taking any certification will serve any purpose in your job hunt, although it will enrich your Resume only, you will nothing get out of this from just taking a vertification
    So, please tell us that you are a fresher or having real time working exposure in SAP SD module, then any one will guide you well.

  • My iWeb image names are incompatible with FTP servers and must be renamed but I can't find the images in iWeb. I can upload to a desktop file and change them there but then I would need to download them to a new site in iWeb to publish them.

    my iWeb image names are incompatible with FTP servers and must be renamed but I can't find the images in iWeb. I can upload to a desktop file and change them there but then I would need to download them to a new site in iWeb to publish them. 
    What's the answer?
    Thanks 

    Many thanks to  responded to my question and sorry not to get back sooner.
    Yes, I discovered by this unfortunate experience that the names of photos are a serious issue if the site is to ever go to an FTP server.  Apple should discuss this carefully in their "manual".
    One more question:  I uploaded the website to a folder on my desktop. When I open it, unlike the photos in iWeb, there are folders for each page which have all the photos in them. I went through each folder and changed the names to be FTP compatible. I'm using iWeb SEO Tool which allows one to upload from this local folder to an FTP server but having trouble.
    Is this because there is an imbedment in iWeb that uses the old photo names to link to the actual photos and it can't find them because of the name changes?
    Thanks again for your help ...
    Phil McP

  • Need ABAP screencams and sim tutor files

    Hi all,
    I am a beginner in a Abap Programming,Please send me the links of  free abap programming screencams or sim tutor files. You can also send it to it my personal id  [email protected] Thanks in advance.

    Welcome to the SDN! -:)
    You have to look in the download area <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/downloads">Downloads</a>
    Or maybe on the <a href="http://service.sap.com">SAP Marketplace</a>
    Also, please don't write down your e-mail...We got a Business Card for that -;)
    Greetings,
    Blag.

Maybe you are looking for

  • HT1296 If my iPhone 5 is syncing to new computer?

    So my iphone 5 is synced to my grandparents computer, but i now want to connect it to my macbook. But im scared to! i dont have anymore space in my memory and want to put some of my pictures on my computer so that i can free up space on my phone. If

  • Any way to bypass iPhone backup so I can upgrade to 2.1?

    I'm really looking forward to upgrading my iPhone to 2.1, but in order to upgrade it has to backup the iPhone first. It's been running for an hour now and the progress bar has barely moved! At this pace it'll take at least 10 hours to backup! And if

  • When I plug in my iphone my charging symbol does not appear and my phone is not charging.

    When I plug in my iphone 4 my charging symbol does not appear and my phone is not charging.  Do I need a new battery?  It is only a year old.

  • Macromedia Dreamweaver 8 issue

    When I try to view a website on Dreamweaver, it shows the "design" but when I click on "code" there is only this <html xmlns:v="urn:schemas-microsoft-com:vml" so the code is not there. When I try to update a CD, I can't even save it because if I do,

  • Unable to Merge Points Islands ?

    I know that to merge different sections they have to be on the same layer / sublayer then you should cut them so they merge or rather it's not closed.  That is exactly what I did and the little gap you see in the image, I can't get those two to merge