Intercompany folder in Application Tasks

All,
Greetings!!
How to provide access to the folder Intercompany in Application tasks to the some of the users?
Regards
VT

Hi. By referring to "Intercompany folder in Application Tasks," it sounds like you're referring to the intercompany transaction module. To enable this, you need to create a rule in the Transactions subroutine to enable the feature. Then the menu items should be enabled. There are also some security roles that need to be provisioned to the users.
Eric

Similar Messages

  • To create folder in Application server

    hi,
    How to create folder in application server from presentation server??
    how is the program it??
    reply me soon...
    thx,
    s.suresh.

    hi Suresh
    Hope u r having nice day
    here i am sending a sample report which can upload the file to Application Server which inturn automatically create folder .
    REPORT  ZSHR_UPLOAD_TO_APPLICATION              .
    DATA : BEGIN OF IT_MAT OCCURS 0,
              MBRSH LIKE MARA-MBRSH,
              MTART LIKE MARA-MTART,
              MAKTX LIKE MAKT-MAKTX,
              MEINS LIKE MARA-MEINS,
           END OF IT_MAT.
    DATA : W_DIR(40).
    MOVE 'D:\usr\sap\DEV\DVEBMGS00\work\SHR' TO W_DIR.
    "SHR" IS A FOLDER NAME TO BE CREATED
    START-OF-SELECTION.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                     = 'C:\MAT.TXT'
       FILETYPE                      = 'ASC'
       HAS_FIELD_SEPARATOR           = 'X'
      TABLES
        DATA_TAB                      = IT_MAT
    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.
    OPEN DATASET W_DIR FOR OUTPUT IN TEXT MODE ENCODING UTF-8.
      IF SY-SUBRC EQ 0.
        LOOP AT IT_MAT.
           TRANSFER IT_MAT TO W_DIR.
        ENDLOOP.
      ENDIF.
    CLOSE DATASET W_DIR.
    IF USEFUL AWARD POINTS.
    REGARDS
    HEMASEKHARA REDDY S

  • Delete folder from application server

    Hy folks i'm been reading many topics about creating and deleting a folder ( entire folder) from application file.
    i successufuly create a file by using command and  SM69   cmd /c   mkdir,
    and that's ok, what i'm unable to do is to delete a directory.
    witch command should i use?
    is it all possible to zip a folder?
    Regards.

    Hi,
    you have to delete all files in your directory before deleting the directory. Otherwise, it is not possible.
    The command is: rmdir -p
    CALL 'SYSTEM' ID 'COMMAND' FIELD 'rmdir -p'
                                  ID 'TAB'     FIELD tabl-*sys*
    Afterwards, to Zip a folder, refer to the class CL_ABAP_ZIP.
    Rachid.

  • How to zip the folder in application server?

    how to zip the folder in application server?

    You can use
    open dataset with filter
    link:[http://help.sap.com/abapdocu_70/en/ABAPOPEN_DATASET_OS_ADDITION.htm#!ABAP_ADDITION_2@2@]

  • Moving a folder in applications to external hard drive

    Hello! So background story: I recently started moving all of my photos, music, and video library from my Macintosh HD to my external hard drive. I do have my Adobe CS4 suite installed on my Mac HD, and it is a folder inside 'Applications.'
    So here is my question...
    If I simply drag-n-drop into my External HD, will it copy a) the applications and b) all of the, you know, 'background files' that keep it running and such, or will it just copy the applications and lose all of the other information that may be tagged along with it hidden somewhere else in the HDD?
    I was a PC user back in the day, and I know this happened alot with Windows, where an application would have other hidden files attached to it somewhere...
    Thank you!

    Moving applications off of the system drive is a bad idea.
    Many will not run at all. Some will run but have problems.
    The install to do updates will not be abloe to find applications that have been reloacted.
    I strongly recommend against  moving the applications.
    Moving the data is fine.
    Allan

  • Creating a folder in application server in background.

    Hi experts,
    Is it possible to Creating a folder in application server in background.?
    My requirement is like this , every time a PO is created it has to be saved locally.
    When atlast i manged to do this, i get stuck again by this CR ,
    The PO has to be saved in a folder with the same name as PO number,
    I do not know if it is possible.
    So as always I am looking for inputs/suggestions or knowledge if you had come across scenario like this one.
    Thanks and Regards,
    K

    Hi,
    You could create a system command in SM69 to create a directory and then use the function module SXPG_CALL_SYSTEM to invoke the command and pass in the directory name as a parameter at run time.
    Darren

  • Trying to clean up my iMac.  Noticed that while in finder, I click on Applications and in the list I see another folder called applications that is a duplicator of the original folder.  Is this truly a copy that can be deleted?

    Trying to clean up my iMac.  Noticed that while in finder, I click on Applications and in the list I see another folder called applications that is a duplicator of the original folder.  Is this truly a copy that can be deleted?

    DO NOT remove either folder. DO NOT mess with any OS X system files either. If you have dupliocates check your files in iPhoto, iTunes and your iMovies libraries. Also check your data files, under ALL circumstances stay away from any OS X systems files or you will probably bork your Mac to the point it will not run.

  • All files in folder of Application server.

    Hi Frnds,
    how to get the all files from a folder of application server. I have to get the all files in internal table when i selecting only folder?
    thanks in advance.
    regards,
    Balu

    Here is an example program, which acts like an application server file browser.
    report zrich_0001 .
    data: begin of itab occurs 0,
          rec(1000) type c,
          end of itab.
    data: wa(1000) type c.
    data: p_file type localfile.
    data: ifile type table of  salfldir with header line.
    parameters: p_path type salfile-longname
                        default '/usr/sap/TST/DVEBMGS01/data/'.
    call function 'RZL_READ_DIR_LOCAL'
         exporting
              name           = p_path
         tables
              file_tbl       = ifile
         exceptions
              argument_error = 1
              not_found      = 2
              others         = 3.
    loop at ifile.
      format hotspot on.
      write:/ ifile-name.
      hide ifile-name.
      format hotspot off.
    endloop.
    at line-selection.
      concatenate p_path ifile-name into p_file.
      clear itab.  refresh itab.
      open dataset p_file for input in text mode.
      if sy-subrc = 0.
        do.
          read dataset p_file into wa.
          if sy-subrc <> 0.
            exit.
          endif.
          itab-rec = wa.
          append itab.
        enddo.
      endif.
      close dataset p_file.
      loop at itab.
        write:/ itab.
      endloop.
    Regards,
    Rich Heilman

  • How to read list of all files in folder on application server?

    How to read list of all files in folder on application server?

    Hi,
    First get the files in application server using the following function module.
        CALL FUNCTION 'RZL_READ_DIR_LOCAL'
          EXPORTING
            name     = loc_fdir
          TABLES
            file_tbl = int_filedir.
    Here loc_fdir contains the application server path.
    int_filedir contains all the file names in that particular path.
    Now loop at int_filedir.
    OPEN DATASET int_filedir-name FOR INPUT IN TEXT MODE ENCODING  DEFAULT MESSAGE wf_mess.
    MESSAGE wf_mess.
        IF sy-subrc = 0.
          DO.
            READ DATASET pa_sfile INTO wf_string.
            IF sy-subrc <> 0.
              EXIT.
    endif.
    close datset int_filedir-name.
    endloop.

  • Do I need OS 9 System Folder and Applications?

    I am running low on space and am looking at things to remove from my internal hard drive. Is there any risk to removing the OS 9 folders? I have a 200G external harddrive with lots of space. Is moving the folders there a better option than deleting them or does moving them cause problems also if I might need them in the future?
    Thanks,
    Sande
    powerbook   Mac OS X (10.3.9)   12 in

    Hi, asinhk. The disk space you'd regain by deleting your OS 9 System Folder and Applications Folder is likely to be less, maybe far less, than one gigabyte. Check the sizes of those folders using the Finder's Get Info command to see how much space you're actually talking about.
    If you have no need at all to run Classic applications — you never do so in your day-to-day work, and you have no old, stored documents that you'll ever need to access in Classic mode — then you can safely delete OS 9 and its applications. It would also be OK to transfer the two major OS 9-related folders to your external drive, if you do need to run Classic sometimes, and if you'll have the external drive connected to the Powerbook whenever you need to use Classic. If you do that, you'll need to re-specify the new location of the System Folder to use for Classic in the Classic pane of System Preferences.
    But ultimately, if you are so pressed for hard drive space that removing OS 9 from your internal drive is going to make any significant difference, then you'll need a new, larger internal hard drive very soon even if you do delete OS 9. If you ever need to perform an Archive & Install of OS X, or you ever want to burn a DVD, you'll need at least 5GB of available space on your internal hard drive to do so. If you can't free up that much space on your HD right now without making agonizing choices about what to keep, you already need a bigger drive.

  • Please, Help me.. !!  ((Can not support NAS or shared folder ? (Application Directory)))

    I need to set up application directory in NAS or Network
    Shared Folder.
    How can I do that ?
    In the fms.ini file.
    VHOST.APPSDIR = z:\myapps => z:\ is shared folder
    then,
    Application directory does not exist : z:\myapps
    please, I want to fix the problem..
    bye.

    I have the same issue. My NAS is CIFS mounted and I can only
    access it using a specific user. The thread below suggests that I
    may have to change FMS to run under that user, but this doesn't
    look easy. I'll let you know how I get on.
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=578&threadid=1220842&me ssid=4394726
    This isn't a rare setup - can anyone provide better
    pointers?

  • There is no iweb folder in application support

    there is no iweb folder in application support. Why?

    See this page for info about the location of the Domain.sites2 file...
    http://www.iwebformusicians.com/iWeb/URLs-Favicons.html
    ...and this page for info about opening the library folder and Domain files of you are using Lion/Mountain Lion...
    http://www.iwebformusicians.com/iWeb/mountain-lion.html

  • I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i

    I installed LR CC , but when i try launching it flashes & it is gone. I tried the solution in the Adobe Site - which says search for the folder Library/Application Support/ Adobe/ Sl Store ...., but i can't seem to find the SL Store or SLCache folders ( i use the Mac). Only then can i apply the solution. I just cant seem to find the folder in the first place

    That did not work for me & as per adobe site help if signing out does not help- we are supposed to go the above folders & do some additional steps, but i could not find the folders & hence the question

  • Smartform into PDF and store in folder of  application server

    Hi Gurus,
         I have to solve this issue please help meu2026
    1.Convert Smartform into PDF and store in folder of  application server
    2.print the PDF stored in folder(Application Server) automatically
    Please give suggestion for the above..
    Moderator message: "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Oct 7, 2011 10:39 AM

    hi uma,
    http://www.kodyaz.com/articles/sap-smartforms-download-as-smartform-pdf-using-ws_download-and-cl_gui_frontend_services.aspx
    check this out...
    thanks,
    ram

  • Can't create new folder to Applications in standard account

    Hi.
    As I have two accounts one admin account and other standard account and last time it didn’t work in both.
    So I just restored factory settings like described here: http://support.apple.com/kb/ht3910
    This fixed the problem.
    Now again I can't create new folder to applications but this time it doesn’t work only in my standard account but it does work in admin account.
    Previously I downloaded this program to open pdb files :http://www.loghound.com/pordible/
    But it didn't work for me so I removed it to Trash. That's when I noticed that the new folder icon in applications isn't active but I can't be sure that this caused it.
    I used Disc Utility to repair my macbook pro hard disk using Mac OS X Install DVD but it didn't fix the problem.
    Is there any way to fix this problem without restoring factory settings again?

    I think either way should work OK - it's less of a security risk to use a standard account for "everything", including web browsing, but I confess I don't myself do this. You would again have to authenticate with an admin username/password if you do download and install from the standard account.
    Whichever way you do it, this article may be relevant:
    *About file quarantine in Mac OS X v10.5 and v10.6*
    http://support.apple.com/kb/HT3662
    It includes the following:
    If you have multiple user accounts on your Mac, the user account that downloaded the file is the only user account that can remove the quarantine attribute to the file. All other user accounts can open the quarantine file, but they will be presented with the quarantine dialog box asking "Are you sure you want to open it?" every time they open the file.
    --------------------

Maybe you are looking for