How to add to applications?

A friend made a cd of banners to use in my newsmagazine. I take the cd from the desk top and drop it into applications where it appears. But I can access it only when the disk is still in the computer. A message appears saying the volume cannot be found. What to do?
Apple discussions is terrific. Where would I be without you?
-Govan

PeterBreis0807 wrote:
btw This reminds me this is another annoyance in OSX.
This changed the behavior from the classic Mac OS, where dragging a volume icon onto your Hard Drive sensibly created and filled a folder with the same name as the volume.
At last you tell the truth. What bother you is what changes your habits !
And while we are about it, we can't simply print the contents of windows in OSX to attach to DVDs/CDs sent to a client or printer.
I do that quite everyday under MacOS X. I just copy the folder's contents onto an AppleWorks WP document.
Is it useful to post a script returning the windows's contents in the clipboard?
--\[SCRIPT]
tell application "Finder" to set liste1 to the selection
set liste2 to {}
repeat with i in liste1
copy (i as text) to end of liste2
end repeat
set the clipboard to my recolle(liste2, return)
on recolle(l, d)
set AppleScript's text item delimiters to d
set t to l as text
set AppleScript's text item delimiters to ""
return t
end recolle
--[/SCRIPT]
I have no time to comment it.
Here is the result:
Western 4:Tout Gerbino:pour ebay:X11910à11916ƒ:z280275458404:
Western 4:Tout Gerbino:pour ebay:_X11910à11916ƒ:#X11915.JPG
Western 4:Tout Gerbino:pour ebay:_X11910à11916ƒ:#X11910.JPG
Western 4:Tout Gerbino:pour ebay:_X11910à11916ƒ:#X11911.JPG
Western 4:Tout Gerbino:pour ebay:_X11910à11916ƒ:#X11914.JPG
Western 4:Tout Gerbino:pour ebay:_X11910à11916ƒ:#X11913.JPG
Western 4:Tout Gerbino:pour ebay:_X11910à11916ƒ:#X11916.jpg
Western 4:Tout Gerbino:pour ebay:_X11910à11916ƒ:#X11912.JPG
It would be a very long thread indeed that listed all the backward steps taken in OSX, and the many backward steps that were attempted by Apple until they were howled down by the users.
Just an example, they dropped Folder Actions but re-integrated them two years later in a more powerful way
And, you know what, you may perfectly continue to use MacOS 9 if you want, the market of second hands machine is a huge one
I'm quite 65 years old and I'm not afraid by changes. I always heard funny ones claiming that "it was better before".
Yvan KOENIG (from FRANCE lundi 13 octobre 2008 19:51:49)

Similar Messages

  • How to add KDE applications in KDE_base --SOLVED--

    Hi,
    I installed Archlinux base 0.7.2, xorg, KDE base 3.5
    There is less in KDE base than I thought. ( no filemanger, no tools, no terminal )  In fact it is an empty dektop with a few icons even without applications linked to these icons.
    I installed a few more KDE packages with pacman, but these are
    not added in the KDE menu. How can I fix this ?

    Linteg wrote:
    I guess you didn't log out and log in again after installing KDE? If you do, your $PATH var gets updated, and /opt/kde/bin is added, then you will be able to start the kde apps by just typing their names.
    Thanks Linteg, fixed the PATH this is ok now.
    I have a few "working" icons on my desk now, Konsole, Kwrite, Firefox but I don' t find find how to add these
    applications to the KDE menu.

  • How to add bsp application in workflow

    Hi .. Experts..
    i am new to workflow
    i want to add bsp application in workflow..
    this is a another task in apprasial process.. there is workflow for standard apprasial process..
      but i have created a new bsp application..
    apprasiee selects minimum 10 apprasiers . to all the 10 people selected bsp application should go to them to thier outlook..
    once thy complete the filling of  application  and submit it, email should trigger in apprasiee outlook that this apprasier has completed your application filling..
    please help in this as i am new to this .. i would be thankful if u explain me in detail..

    Hi Subramanyam,
    To add the fields in the field group, follow the below mentioned sequence. However, this method is used to add predefined SAP fields into Field Group. We are not talking about adding Z-Fields into the Field Group.
    a) Goto Transaction CRMC_BLUEPRINT_C.
    b) Click on Application Elements - You will see hierarchy of PCUI Objects viz. Applications, Views, Field Groups, Tab Page Groups, Toolbar Groups, Events.
    c) Open Field Groups. Go to the desired Field Group. The desired field group can be found by expanding the Applications Hierarchy.
    d) For the Given View within the Field Group - You can Right Click and add the desired pre-defined SAP Field.
    Regards
    Tushar Kansara

  • How to add Services/applications directly in the area group page

    Hi Experts,
    I'm implementing the standard ESS/MSS for my client, but they don't want to have the SAP way of attending the apllication which is : area group --> area --> subarea --> and finally services.
    but they want to have directly in the first page the 4 applications of Personal information (address, bank information, family members, and personal data)
    I explain more : instead of having ESS --> Overview --> Personal Information --> address for example we want to have Personal Data --> address and we eliminate the Employee self service and the Overview steps.
    Is this possible, If so, how?
    Thanks for your help

    Hi, that's what I did,
    bank information is working but when we want to change the data from ESS I'm having an error: Data record xxxxxx has grouping value "" instead of 06
    the other 3 applications having also error: ''Country/Structure do not match application country
    I did the customization in R/3, defining the ressources and the services for France.
    Do I have to do something else?
    Thanks for your help guys.
    Regards,
    Aymen

  • How to add an Application custom error to the FacesPageLifecycle

    I am trying to implement an error handling framework for an application. I have created the required Execption classes(Extending the JboException class) and added a MyExceptionHandler that extends DCErrorHandlerImpl. I am overriding the reportExecption method and removing the error codes etc.
    When an error case is encountered MyExceptionHandler.reportException is called from the page bean. This does not display the error in the Faces error dialog. I have noticed that MyExceptionHandler.getDisplayMessage is not invoked for my the custom application errors.
    Other JboExecption generated by the database constraints or validation errors are shown in the error dialog and there is a call to the getDisplayMessage after the call to reportException in the MyExceptionHandler.
    Should I explicitly call FacesPageLifecycle.addError...or something similar? If so what is the right place to do this.
    Please point me to any available documentation if available.
    Thanks,
    Sireesha

    That custom error handler is generally to handle errors thrown by your Model project. The place I first noticed this is when I tried to catch and specially handle the infamous token validation exception (even though that's a JBO exception, it's thrown by the databindings, not by the Model project...which is kind of unfortunate, I think; they should have used something in the oracle.adf.model package, which is where the other databinding implementations are stored). To really catch all exceptions, you have to handle them directly in the FacesPageLifecycle, not the ErrorHandler.
    Edited by: Avrom Roy-Faderman on Oct 2, 2008 1:32 PM
    Wait...were you also calling handler.reportException() directly? You're definitely not supposed to do that. Just throw your exceptions, and the appropriate functions will be called automatically as part of the lifecycle. This is independent of the other problem--that ErrorHandler never gets used for exceptions thrown from outside the business services layer.

  • How to add MS Office add-in from inside a Thinapp 5 virtual application to a MS Office 2013 suite that is installed on a base image

    Hi,
    We have the following solution:
    VMware Horizon View 5.3.1
    Non-persistent Linked-clone pool with delete VM after logoff
    Windows 8.1 Update 1 Enterprise 64 bit
    MS Office 2013 32-bit installed on image
    Thinapps registered for each user from logonscript with thinreg.exe command. Thinapps is located on a network share
    Native Windows roaming profiles with appdata/roaming, appdata/local without appdata/locallow(persona management does not support Windows 8.1 in View 5.3.1)
    This is our issue:
    We have a 3rd party application with a couple Thinapp entrypoints(exe files) and in the Thinapp package process we also installed Office addins. We tested that the Add-ins was opened inside Outlook, Word and Powerpoint before post installation scan.
    The problem is that the add-ins is not added to Office 2013 before or after the Thinapp is started on a test client.
    I have tried several changes in the package.ini and virtual filesystem attributes(no registry changes yet):
    Package.ini:
    ChildProcessEnvironmentExceptions=WINWORD.EXE;EXCEL.EXE;POWERPNT.EXE;OUTLOOK.EXE;
    ChildProcessEnvironmentDefault=External
    ChildProcessEnvironmentExceptions=excel.exe;outlook.exe;powerpnt.exe;winword.exe
    ChildProcessEnvironmentDefault=Virtual
    VirtualizeExternalOutOfProcessCOM=0
    DirectoryIsolationMode=Merged
    RegistryIsolationMode=Merged
    I have also read that you could make entrypoints to the locally installed Office 2013, but I get errors on the build process. ref. link: http://edwinfriesen.nl/content/?p=105#comments
    The best thing would be if the add-ins were added in the logon process together with thinreg.exe, but if that is not supported, the add-ins must be added to Office either in a custom Office shortcut/entry point or after starting the Thinapp virtual application.
    Remember that the application needs to registered every times the user logon, because we use a non-persistent View pool.
    I would really appreciate if somebody could tell me how to add Office add-ins from inside a Thinapp virtual application/package to a locally installed MS Office 2013 suite on a Windows "base" image?
    We do not want to add the whole Office suite to the Thinapp virtual package and not add the add-ins trough GPO,SCCM etc.

    What about the COM object parameters in package.ini ?
    We can live with scripting in logon or changed logon scripts etc.
    And you don't no need to lock in the project files.
    From package.ini documentation:
    ObjectTypes Parameter
    The ObjectTypes parameter specifies a list of virtual COM object types that are visible to other applications in
    the physical environment. You can use scripts, such as VBScripts, to call objects that start captured applications.
    An object type is registered to only one native or virtual application at a time. If you install Office 2003 on the
    native machine and want to use a virtual Office 2007 package, you must determine whether to have the virtual
    or native application handle the object types.
    If you want the virtual Office 2007 to handle the object types, you can leave the ObjectTypes setting in the
    Package.ini file, build the package, and register it using the thinreg.exe utility. If you want the native Office
    2003 to handle the object types, you must remove the ObjectTypes setting from the Package.ini file before
    building and registering the package.
    You cannot add random entries to the ObjectTypes parameter.
    You can only remove entries that were generated by the capture process.
    Example: Starting a Virtual Application When a COM Object is Created
    If a script or a native application creates an Excel.Application COM object or other COM objects listed in the
    ObjectTypes parameter, ThinApp starts the virtual package.
    [Microsoft Office Excel 2007.exe]
    ObjectTypes=Excel.Application;Excel.Application.12;Excel.Chart;
    Excel.Macrosheet;Excel.Sheet; Excel.Workspace

  • How do you add an application event to the Applications Panel

    How do you add an application event to the Applications Panel.
    My previous post referred to .ashx files, and the problem seems that Firefox, by default, does not recognize a .ashx format being read by Adobe Acrobat.
    Therefore there needs to be a way to add Applications and Events into the Applications Panel under Preferences

    domdp wrote:
    ...I have Theme L selected and I get 10 icons along the left side and bottom....
    ...I am thinking I may be limited to 10 icons....
    Gotcha... But actually its limited to 9 icons in the L theme as the Profiles icon is always present. From that screen hit the Menu key to display the bigger list of icons. Arange them so the first 9 icons are the ones you want to see on the L theme.

  • How to add A Gauge Control in VC++ MFC Application

    How to add A Gauge Control in VC++ MFC Application.
    i want to add Gauge Control in my Application. like meter.
    ther meter should perform depends upon the value.
    for example , Assume the meter have 10 units 1-10 . if the value (ie, input ) is 4 the meter point out the 4 like that.

    How to implement CProgressCtrl to like this.
    https://social.msdn.microsoft.com/Forums/getfile/643828
    You need to implement this all by your own or if you are lucky you may something find @Codeproject, CodeGuru, ...
    Here you will find examples on creating custom controls (in general)
    http://www.codeproject.com/Articles/521/Creating-Custom-Controls
    https://msdn.microsoft.com/en-us/library/bk2h3c6w.aspx?f=255&MSPPError=-2147217396
    You will find a lot more stuff if you try your prefered search engine.
    Maybe this one fits the best to your requirements:
    http://www.codeproject.com/Articles/9375/CStatic-derivative-CSpeedoMeter-class
    Best regards
    Bordon
    Note: Posted code pieces may not have a good programming style and may not perfect. It is also possible that they do not work in all situations. Code pieces are only indended to explain something particualar.

  • How to add accessibility to already built application

    Hi,
    Can any one help me how to add accessability to already built application. jdev version which am using is 11.1.1.4.
    Thanks in advance.
    Regards,
    lavanya.

    Hi,
    its mostly a configuration in ADF Faces
    http://docs.oracle.com/cd/E23549_01/web.1111/b31973/af_access.htm
    Frank
    Ps.: One of the beauties of using ADF Faces instead of hand-crafted web site in which case you would have been screwed

  • How to add i18n features to a Struts application?

    How to add i18n features to a Struts application?
    txs!

    How to add I18N to Struts application
    operation:
    1) provide your native ascii encoded properties file.
    2) set the correct language priority. (As to IE: Tools - Internet Options - Languages
    3) coding: add correct encoding in your web page, exp. for zh_CN:
    <%@ page contentType="text/html; charset=gb2312" %>
    utility batch file:
    native2ascii -encoding gb2312 MessageResources_zh_CN.txt MessageResources_zh_CN.properties
    copy MessageResources.txt MessageResources_en_US.properties
    note
    Before you run the utility batch file, you should first add %JAVA_HOME%/bin to system %PATH% environment variable.

  • How to add button on application tool bar of standard transaction

    Hi All,
    Can any one let me know how to ADD the button in on application tool bar of standard transaction by using SHD0 transaction or any other solution.While adding the button I don't want do any code modification.
    Thanks,
    Vijay

    HI
    SHD0 is used to create and maintain Screen and Transaction Variants..
    to know more about Screen and trransaction variants click on this link
    http://help.sap.com/saphelp_47x200/helpdata/en/67/232037ebf1cc09e10000009b38f889/content.htm
    we can create Transaction Variants Using SHD0 Transaction.
    Transaction Variants and Screen Variants
    Transaction variants can simplify transaction runs as they allow you to:
    Preassign values to fields
    Hide and change the 'ready for input' status of fields
    Hide and change table control column attributes
    Hide menu functions
    Hide entire screens
    In particular, hiding fields in connection with screen compression, and hiding screens, can result in greater clarity and simplicity.
    Transaction variants are made up of a sequence of screen variants. The field values and field attributes for the individual screens found in transaction variants are stored in screen variants. Each of these variants is assigned to a specific transaction, can, however, also contain values for screens in other transactions if this is required by transaction flow. The transaction that the variant is assigned to serves as initial transaction when the variant is called.
    There are both client-specific and cross-client transaction variants. All screen variants are cross-client, but may be assigned to a client-specific transaction variant.
    A namespace exists for cross-client transaction variants and screen variants and both are automatically attached to the Transport Organizer. Client-specific transaction variants must be transported manually.
    In principle, transaction and screen variants can be created for all dialog and reporting transactions. There are, however, certain Restrictions that apply to certain transactions, depending on their internal structure.
    No transaction variants are possible with transactions already containing preset parameters (parameter transactions and variant transactions).

  • How to add button on application tool bar of standard transaction-URGENT

    Hi All,
    Can any one let me know how to ADD the button in on application tool bar of standard transaction by using SHD0 transaction or any other solution.While adding the button I don't want do any code modification.
    Thanks,
    Vijay

    Hi,
      Go through this thread.
       Push Buttons on application toolbar.
    Regards,
    Vani.

  • How to add button on application tool bar of standardt ransaction

    Hi All,
    Can any one let me know how to ADD the button in on application tool bar of standard transaction by using SHD0 transaction or any other solution.While adding the button I don't want do any code modification.
    Thanks,
    Vijay

    http://help.sap.com/saphelp_nw04/helpdata/en/c8/19762743b111d1896f0000e8322d00/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/83/7a18cbde6e11d195460000e82de14a/frameset.htm
    these are the avilable user Exits for the Tcode..C203
    XCZD0004 Extend authority check for the material-recipe allocati
    CMDI001 Determine explosion control for BOM
    CPAU0001 Enhancement for Authorization Check in Task Lists
    CPDO0001 Test units of measure for reference operation set
    CPRE0001 Enhancement for Reorgnization Checks in Task Lists
    Run this Program.. enter the Tcode. u'ii get teh BADI's exist for the Tcode
    REPORT Z_FIND_BADI .
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Please give me reward points...

  • How to add push button in application tool bar in SAP transaction VA01

    How to add push button in application tool bar in SAP standard transaction VA01 and how to implement the code for that function code.

    There is no scope to create a push button in application tool bar. Instead of that we can add in a menu bar.

  • CRM2007 How to add a Web Dynpro ABAP application to a CRM business role

    I am investigating CRM2007 UI framework and I cannot seem to find a way to add a custom made Web Dynpro ABAP Application (created in CRM 4.0) to a business role, or how to add a custom transaction created in classic ABAP (transaction created via se93, progam created via se38). Whatever I do, I only see BSP components. I am using transaction BSP_WD_CMPWB.
    Next to this it seems you can add/integrate Visual Composer applications to (there is an entry in spro called "integration of the visual composer in BI"). However, I presume we first have to meet the requirements for the portal integration in SAP CRM 2007 as described in spro. If somebody knows how this works, that would be great!
    kind regards
    Angelique Heutinck

    Hello Angelique,
    It should be possible to call web dynpro applications from the L-shape menu of CRM UI (check transaction CRMC_UI_NBLINKS). As for the old GUI transactions, you can embedd them also via transaction launcher using CRMC_UI_NBLINKS (search for "transaction launcher" in this forum, there is plenty of information on it).
    Best Regards,
    Yevgen
    Edited by: Yevgen Trukhin on Jun 19, 2008 11:53 AM

Maybe you are looking for

  • How to use the CMS functionality in Sun Portal Server 7.2

    Hi All, How to use the CMS functionality using the ccd.war(Portlet) which is available in the library as i could add it to my channel but not able to show the functionality as it is showing the error msg "You are currently not logged in. Please login

  • Vendor Master Purchasing Block

    Dear All, Im having a very weird issue. For certain vendors, the vendor master purchasing block was automatically set by the system. I know it was done automatically because when i checked the vendor master change documents and audit trail, no change

  • Error in F4 help/popup

    I tried  a popup help as shown below...    <htmlb:inputField id          = "empid"                         showHelp    = "true"                         value       = "<%= empid %>"                         onValueHelp = "window.open('emppop.do','Emp D

  • Lightroom 3.0 / 3.2 tethered shooting with 550d

    Hey guys and girls, Just starting using lightroom and have had success shooting tethered with my 400d and 550d through the EOS utility but when i go to shoot directly into lightroom i can only use my 400d. Is there anything special I have to do to ge

  • Deletion of SAP standard roles

    I have been asked by the client if we could delete all of the SAP standard roles. I think there are many good reasons not to delete them, but does anyone know what SAP's official recommendation would be to that question and could you point me to the