New documentation SRM configuration

Hi,
I have found a PDF called SRM40_CG_SSP.pdf but this is an old document, we are on ITS 7.00. Is there new documentation about the configuration of SRM?
We need to upload attachments from SRM portal and we want to view/edit them in ECC but we cannot transfer them at all, we see the order but are not able to see the attachments. We've set all the settings found on SDN:
SRM Side:
Created implementation ZECA_DMS_CLASSIC for BADI BBP_CREATE_BE_RQ_NEW and implementation ZECA_DMS_EXT_CLASSIC for BADI BBP_CREATE_BE_PO_NEW with following code for method FILL_RQ_INTERFACE and method FILL_RQ_INTERFACE and method FILL_RQ_INTERFACE1:
cs_ctrl_att-BE_DOC_TYPE = 'SRM'.
cs_ctrl_att-BE_storage_cat = 'DMS_C1_ST'.
cs_ctrl_att-TRANSFER_ACTIVE = 'X'.
ECC Side:
- Create new document type for SRM with T.code DC10. Following parameters need to be set for that
a. Check Use KPro
b. Enter 1 in the number assignment field
c. Assign Internal number range as u201C02u201D
d. Select Number Exit u201CMCDOKZNRu201D
e. Version number increment u201C1u201D
- Assign following Object links to the new created document type u201CSRMu201D.
a. Type as u201CSRMu201D
b. Object as u201CEBANu201D and u201CEKPOu201D respectively
c. Object description as u201CPurchase req. itemu201D and u201CPurchase order itemu201D respectively
d. Screen number u201C247u201D for EBAN and u201C248u201D for EKPO.
And I've defined the workstation applications in transaction DC30:
ACD     Autocad                       A2     X                             
BVO     Objektpflege                  *     X     X
BVV     Vertragspflege                  *     X     X
GIF     GIF Anzeige                  A2     X
LIM     Großbild                            X          *.jpg, *.gif
MPP     MS Project          mpp          X          .mpp,.
OHD     Dokument der Arbeitsmed.                  X     X
PDF     Acrobat Reader          pdf          X          *.pdf
PLT     HPGL Anzeige                       X
SIM     Kleinbild                            X          *.jpg, *.gif
SND     Ton                            X          *.wav
TIF     TIFF Anzeige                       X     
TXT     Textdateien          txt     *     X          *.txt
WRD     Word                       A2     X     
WWI     Winword 6.0s          doc     *     X          *.doc
XLS     Microsoft EXCEL          xls     *     X          *.xls, .
XML     XML               xml          X          *.xml
I've not set any other customizing.
What can I check or do next?
regards,
Wim

Please learn from SAP Library (Link attached below)
http://help.sap.com/erp2005_ehp_01/helpdata/en/2d/830e405c538f5ce10000000a155106/frameset.htm
Regards,
Rajesh Banka

Similar Messages

  • Documenting GTS Configuration

    GTS Experts,
    What is the best practice for documenting the configuration settings in GTS?  Are there system reports available to control and report  this, or is it expected that this information is kept manually in spreadsheets?
    Also, what is best practice for system instance cutover, to ensure anyting not on a transport is put in the new system the same as the previous systm.  Is there a compare functionality to identify deltas between the instances that need to be addressed?
    Thank you!

    Hi,
    as far as i know there is not such report which would download all customizing settings/views into the excel file. Actually, that would be a quite useful mass function.
    For your second question, check transactions SCU0 and SCMP. Here you can compare settings between systems connected via RFC.
    http://www.sap-img.com/bc005.htm
    @Your RFC user would need S_TABU_RFC autorization.
    BR,
    Gabriel.

  • Unable to load new information from configuration file /var/ldap/ldap_clien

    Hi all,
    When I run the command "ldapclient init", I got the error message:
    # ldapclient init -a proxyDN=cn=proxyagent,ou=profile,dc=example,dc=ca -a domainName=example.ca -a profileName=UserProfile -a proxyPassword=pwd 10.1.10.50
    Unable to load new information from configuration file '/var/ldap/ldap_client_file' ('Unable to open filename '/var/ldap/ldap_client_file' for reading (errno=2).').
    Any idea?
    Thanks a lot for your help!

    Does the profile UserProfile exist on your LDAP server?
    Do the logs on your LDAP server show access problems?
    Try using -v to get more verbose output

  • New G/L Configuration material

    Hi Experts,
        Can any one help me with New G/L configuration material with screen shots.
    Regards,
    Nagaraju

    Dear nagu /neha,
    plese send me config and User Doc to me,
    MY mail id:-  <removed by moderator>
    Thanks in Advance
    regards
    syed

  • New documentation for Custom Panels in CS2

    Can anyone provide some new documentation on creating custom XMP templates in CS2? I'd like to find out what the capabilities of using the fbname attribute in Bridge are. It doesn't seem to recognize character limitations, bag containers, etc.
    Thanks
    -Tom
    The info here is from 2003
    http://www.adobe.com/products/xmp/custompanel.html

    Hi,
    Please follow www.apps2fusion.com or www.oraclearae51.com for any help on this.
    Please refer below link for video tutorial creating page on OAF http://oracle.anilpassi.com/oa-framework-tutorial-01.html.
    Let me know if you need further help.
    Regards,
    Reetesh Sharma

  • A self documenting DSC Configuration wich contains all Resources

    One funny thing with PowerShell is allways: It can document himself.
    Inspired by Steven Murawskis video on Desired State Configuration (DSC) I have done a full Blowen full self documenting DSC Configuration:
    Not perfect but it works for the first shot...
    This code:
    $ConfigOut = @"
    Configuration Name {
    param(
    [String]`$Parameter1
    # One can evaluate expression
    # E.g.: `$AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    $(
    Get-DscResource | ForEach {
    "`n`t`t# Call the '$($_.Name)' Resource the Provider`n"
    "`t`t$($_.Name) FriendlyName {`n`n"
    "`t`t`t# Possible Resource Options`n"
    $Ofs = "','"
    $_.Properties | ForEach {
    "`t`t`t$($_.Name) = '$($_.Values)' # Type:$($_.PropertyType) $(If($_.IsMandatory) {'is Mandatory!'})`n"
    $Ofs = ' '
    "`t`t}`n"
    } # end Node
    } # end Configuration
    $ConfigOut
    Produces this output on my Windows 8.1:
    Configuration Name {
    param(
    [String]$Parameter1
    # One can evaluate expression
    # E.g.: $AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    # Call the 'File' Resource the Provider
    File FriendlyName {
    # Possible Resource Options
    DestinationPath = '' # Type:[string] is Mandatory!
    Attributes = 'Archive','Hidden','ReadOnly','System' # Type:[string[]]
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    Contents = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    MatchSource = '' # Type:[bool]
    Recurse = '' # Type:[bool]
    SourcePath = '' # Type:[string]
    Type = 'Directory','File' # Type:[string]
    # Call the 'Archive' Resource the Provider
    Archive FriendlyName {
    # Possible Resource Options
    Destination = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Validate = '' # Type:[bool]
    # Call the 'Environment' Resource the Provider
    Environment FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Path = '' # Type:[bool]
    Value = '' # Type:[string]
    # Call the 'Group' Resource the Provider
    Group FriendlyName {
    # Possible Resource Options
    GroupName = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Ensure = 'Absent','Present' # Type:[string]
    Members = '' # Type:[string[]]
    MembersToExclude = '' # Type:[string[]]
    MembersToInclude = '' # Type:[string[]]
    # Call the 'Log' Resource the Provider
    Log FriendlyName {
    # Possible Resource Options
    Message = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    # Call the 'Package' Resource the Provider
    Package FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    ProductId = '' # Type:[string] is Mandatory!
    Arguments = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    LogPath = '' # Type:[string]
    ReturnCode = '' # Type:[UInt32[]]
    # Call the 'Registry' Resource the Provider
    Registry FriendlyName {
    # Possible Resource Options
    Key = '' # Type:[string] is Mandatory!
    ValueName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Hex = '' # Type:[bool]
    ValueData = '' # Type:[string[]]
    ValueType = 'Binary','Dword','ExpandString','MultiString','Qword','String' # Type:[string]
    # Call the 'Script' Resource the Provider
    Script FriendlyName {
    # Possible Resource Options
    GetScript = '' # Type:[string] is Mandatory!
    SetScript = '' # Type:[string] is Mandatory!
    TestScript = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    # Call the 'Service' Resource the Provider
    Service FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    BuiltInAccount = 'LocalService','LocalSystem','NetworkService' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    StartupType = 'Automatic','Disabled','Manual' # Type:[string]
    State = 'Running','Stopped' # Type:[string]
    # Call the 'User' Resource the Provider
    User FriendlyName {
    # Possible Resource Options
    UserName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Disabled = '' # Type:[bool]
    Ensure = 'Absent','Present' # Type:[string]
    FullName = '' # Type:[string]
    Password = '' # Type:[PSCredential]
    PasswordChangeNotAllowed = '' # Type:[bool]
    PasswordChangeRequired = '' # Type:[bool]
    PasswordNeverExpires = '' # Type:[bool]
    # Call the 'WindowsFeature' Resource the Provider
    WindowsFeature FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    IncludeAllSubFeature = '' # Type:[bool]
    LogPath = '' # Type:[string]
    Source = '' # Type:[string]
    # Call the 'WindowsProcess' Resource the Provider
    WindowsProcess FriendlyName {
    # Possible Resource Options
    Arguments = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    StandardErrorPath = '' # Type:[string]
    StandardInputPath = '' # Type:[string]
    StandardOutputPath = '' # Type:[string]
    WorkingDirectory = '' # Type:[string]
    } # end Node
    } # end Configuration
    Watch:
    Steven Murawskis and Joel Bennett: Video on Desired State Configuration (DSC)
    http://www.youtube.com/watch?v=EN8eJA9rpXw
    hope this helps....
    PowerShell Artikel, Buchtipps und kostenlose PowerShell Tutorials + E-Books
    auf der deutschsprachigen PowerShell Community
    Mein 21 Teiliger PowerShell Video Grundlehrgang
    Deutsche PowerShell Videos auf Youtube
    Folge mir auf:
    Twitter |
    Facebook |
    Google+

    One funny thing with PowerShell is allways: It can document himself.
    Inspired by Steven Murawskis video on Desired State Configuration (DSC) I have done a full Blowen full self documenting DSC Configuration:
    Not perfect but it works for the first shot...
    This code:
    $ConfigOut = @"
    Configuration Name {
    param(
    [String]`$Parameter1
    # One can evaluate expression
    # E.g.: `$AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    $(
    Get-DscResource | ForEach {
    "`n`t`t# Call the '$($_.Name)' Resource the Provider`n"
    "`t`t$($_.Name) FriendlyName {`n`n"
    "`t`t`t# Possible Resource Options`n"
    $Ofs = "','"
    $_.Properties | ForEach {
    "`t`t`t$($_.Name) = '$($_.Values)' # Type:$($_.PropertyType) $(If($_.IsMandatory) {'is Mandatory!'})`n"
    $Ofs = ' '
    "`t`t}`n"
    } # end Node
    } # end Configuration
    $ConfigOut
    Produces this output on my Windows 8.1:
    Configuration Name {
    param(
    [String]$Parameter1
    # One can evaluate expression
    # E.g.: $AllNodes.Where("Role -eq Web").NodeName
    Node ('Node1','Node2','Node3') {
    # Call the 'File' Resource the Provider
    File FriendlyName {
    # Possible Resource Options
    DestinationPath = '' # Type:[string] is Mandatory!
    Attributes = 'Archive','Hidden','ReadOnly','System' # Type:[string[]]
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    Contents = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    MatchSource = '' # Type:[bool]
    Recurse = '' # Type:[bool]
    SourcePath = '' # Type:[string]
    Type = 'Directory','File' # Type:[string]
    # Call the 'Archive' Resource the Provider
    Archive FriendlyName {
    # Possible Resource Options
    Destination = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Checksum = 'CreatedDate','ModifiedDate','SHA-1','SHA-256','SHA-512' # Type:[string]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Validate = '' # Type:[bool]
    # Call the 'Environment' Resource the Provider
    Environment FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Path = '' # Type:[bool]
    Value = '' # Type:[string]
    # Call the 'Group' Resource the Provider
    Group FriendlyName {
    # Possible Resource Options
    GroupName = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Ensure = 'Absent','Present' # Type:[string]
    Members = '' # Type:[string[]]
    MembersToExclude = '' # Type:[string[]]
    MembersToInclude = '' # Type:[string[]]
    # Call the 'Log' Resource the Provider
    Log FriendlyName {
    # Possible Resource Options
    Message = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    # Call the 'Package' Resource the Provider
    Package FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    ProductId = '' # Type:[string] is Mandatory!
    Arguments = '' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    LogPath = '' # Type:[string]
    ReturnCode = '' # Type:[UInt32[]]
    # Call the 'Registry' Resource the Provider
    Registry FriendlyName {
    # Possible Resource Options
    Key = '' # Type:[string] is Mandatory!
    ValueName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    Force = '' # Type:[bool]
    Hex = '' # Type:[bool]
    ValueData = '' # Type:[string[]]
    ValueType = 'Binary','Dword','ExpandString','MultiString','Qword','String' # Type:[string]
    # Call the 'Script' Resource the Provider
    Script FriendlyName {
    # Possible Resource Options
    GetScript = '' # Type:[string] is Mandatory!
    SetScript = '' # Type:[string] is Mandatory!
    TestScript = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    # Call the 'Service' Resource the Provider
    Service FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    BuiltInAccount = 'LocalService','LocalSystem','NetworkService' # Type:[string]
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    StartupType = 'Automatic','Disabled','Manual' # Type:[string]
    State = 'Running','Stopped' # Type:[string]
    # Call the 'User' Resource the Provider
    User FriendlyName {
    # Possible Resource Options
    UserName = '' # Type:[string] is Mandatory!
    DependsOn = '' # Type:[string[]]
    Description = '' # Type:[string]
    Disabled = '' # Type:[bool]
    Ensure = 'Absent','Present' # Type:[string]
    FullName = '' # Type:[string]
    Password = '' # Type:[PSCredential]
    PasswordChangeNotAllowed = '' # Type:[bool]
    PasswordChangeRequired = '' # Type:[bool]
    PasswordNeverExpires = '' # Type:[bool]
    # Call the 'WindowsFeature' Resource the Provider
    WindowsFeature FriendlyName {
    # Possible Resource Options
    Name = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    IncludeAllSubFeature = '' # Type:[bool]
    LogPath = '' # Type:[string]
    Source = '' # Type:[string]
    # Call the 'WindowsProcess' Resource the Provider
    WindowsProcess FriendlyName {
    # Possible Resource Options
    Arguments = '' # Type:[string] is Mandatory!
    Path = '' # Type:[string] is Mandatory!
    Credential = '' # Type:[PSCredential]
    DependsOn = '' # Type:[string[]]
    Ensure = 'Absent','Present' # Type:[string]
    StandardErrorPath = '' # Type:[string]
    StandardInputPath = '' # Type:[string]
    StandardOutputPath = '' # Type:[string]
    WorkingDirectory = '' # Type:[string]
    } # end Node
    } # end Configuration
    Watch:
    Steven Murawskis and Joel Bennett: Video on Desired State Configuration (DSC)
    http://www.youtube.com/watch?v=EN8eJA9rpXw
    hope this helps....
    PowerShell Artikel, Buchtipps und kostenlose PowerShell Tutorials + E-Books
    auf der deutschsprachigen PowerShell Community
    Mein 21 Teiliger PowerShell Video Grundlehrgang
    Deutsche PowerShell Videos auf Youtube
    Folge mir auf:
    Twitter |
    Facebook |
    Google+

  • Documentation and configuration settings

    Hi Experts,
    Can any one provide documentation and configuration settings  for the following areas.
    Planning and budget,
    PC Industrial,
    Standard Cost Calculation,
    Production Variance Analysis
    Regards
    Balu

    HI Madhu
    I have sent you the Io & Pctr documents to ur mail id. Plz assign points if its helpful.
    Regards
    Rajaram

  • Create New 802.1x Configuration?

    Hi all,
    Is there a command in the terminal to create a New 802.1x Configuration? I want to bypass the Internet Connect app so that I can automate this.
    Thanks,
    Matt

    Hello Sergio,
    You can read this document:
    http://www.microsoft.com/downloads/details.aspx?FamilyID=05951071-6b20-4cef-9939-47c397ffd3dd&displaylang=en
    This works im my case except VLAN assignment. :(
    But I'm occupied with this only for one day, so if I will success in VLAN assigment I will inform you.
    Mladen

  • Create new Documentation types for Template project

    Hi Expert,
    Can anyne tell me the process for creating new documentation types under projects standards tab under solar_project_admin for project?
    Thanks,
    Basis Admin

    Resolved !!!!!

  • After new weblogic domain configuration with oim 11g, not able to login

    After new weblogic domain configuration with oim 11g, not able to login for the frist time as xelsysadm.
    it says invalid sign in. and in logs it says password is invalid.
    Please help me in asap...

    Thanks Pallavi for the effort. I tried commenting out, its still the same. It do not throw exception this time. However, It tells me that the recon event is completed and linked to user. When I go to user's profile, I dont see the resource provisioned.
    Also,
    The Account ID in recon manager of Web Console and the Account ID that is stored in the tables, doesn't match.
    I wrote a custom code to fetch account and user details and here is the output,
    User Key : 13 -- has Login Id : USER_CS
    Account with account key : 49 is with user key : [USER_CS]
    Getting Account Data......
    {UD_TEST_1P_EMPLOYEENUMBER=1567, UD_TEST_1P_NAME=Kim1}
    However the Account Id in recon manager is : 91
    This seems fine.
    Doesn't this mean, the account is reconciled successfully?
    The problem is that, I am not able to see this resource in User's resource profile.
    Edited by: Shashi kiran on Apr 18, 2013 3:56 PM

  • There is no access key when I change the SRM configuration

    Dear ,Expert :
    I want to change the SRM Configuration .I do that as follows :
    1,se80 --edit object --web object --component configration
      2,I enter :/SAPSRM/WDCC_DODC_RFQ_H_BD_PUR and click the "start configurator "button
    3,change the object in IE
      then get the error message :There is no developer license and/or modification license registered for object R3TR WDCC/SAPSRM/WDCC_DODC_RFQ_H_BD_PUR 00 in this system for user*****
    you can get the screenshot in my attachment
    I get the access key from  SAP market But there is no place for entering the key .
    Bestregards
    Alex

    Hi Alex,
    Can you please share the solution?
    I am facing the same issue...
    Thanks,
    Anubhav

  • New in srm, i need some help

    Hy everyone, i'm new in srm, i need to learn how to create a new user in the system, i can copy an user, but if the user is external i cannot write in the table t77s0.
    Does someone has a tutorial?
    Thanks a lot, Julieta

    Hi Julieta,
    In table t77s0, you can set indicators for HR replication according to note 550055.
    After this, for users which were replicated from HR system, you should not modify it in SRM system, but only HR side and synchronize the changes.
    Regards,
    Ivy

  • SRM workflow documentation on configuration

    Dear SAP gurus,
    Can you please send me a document (config guide) with all the steps on configuring a SRM workflow?
    My email ID is [email protected]
    Full points will be rewarded.
    Thank you in advance.
    Best regards,
    Jean-Pierre

    Hi
    As promised, sent detailed documents on your e-mail id.. )
    Please confirm.. !!
    Regards
    - Atul

  • Is there any way to back up a preconfigured iPad and deploy to new iPads using Configurator??

    To clarify,  we have about 100 ipads deployed in our district and lots more on the way.  We had just used iTunes in the past to backup one master device with the apps and restored on the remaining sets of iPads.  Obviously we wanted a simpler way to manage this as we are getting a lot more iPads coming in for use in the different schools.  We got a MDM solution (Casper) and started using Configurator.
    We are running the latest of Configurator (1.4.2) and IOS (7.0.4).
    From what I have read (and a lot at that) I know that there are numerous issues with this setup (hopefully addressed very soon)
    Here is my question:
    Is it possible to take an already deployed device, loaded with apps (paid and free), back it up in Configurator, and deploy it to other iPads and still get all the apps to come down along with the restore?
    Apparently this was possible in the past, I am just wondering if I am missing something.  Any help or suggestions on how you are doing it would be very helpful
    Oh, and to clarify, we are using VPP for the apps, just not managing them any where at this time, haven't decided the best tool for that, maybe casper maybe configurator, but we are compliant, only using the same quantity of apps that we have purchased.
    Thanks
    Edit: spelling error

    I've heard if you contact your apple rep, Apple may restore your vpp codes so you can move to an MDM.
    Read the Google doc below and nsdjoey write up.
    IT Resources -- ios & OS X -- This is a fantastic web page.  I like the education site over the business site.
    View documentation, video tutorials, and web pages to help IT professionals develop and deploy education solutions.
        http://www.apple.com/education/ipad/resources/
        scroll down after all the pretty picture.  Click on the words "For It".
    Joe Rowe's Excellent guides
    IT managers who are new to configurator and managing a cart of ios devices:
          https://docs.google.com/document/d/1SMBgyzONxcx6_FswgkW9XYLpA4oCt_2y1uw9ceMZ9F4/ edit?pli=1
             [ original announcement  -- https://discussions.apple.com/thread/4256735?tstart=0 ]
    Quick help presentation for students:
         https://docs.google.com/presentation/d/18937JdleX2gymtSb8zfbDczV-76BdR2DIfCV9eJi yOE/edit#slide=id.g1b776944_0_224
    good tips for initial deployment:
    https://discussions.apple.com/message/18942350#18942350
    https://discussions.apple.com/thread/3804209?tstart=0
    See nsdjoey writeup.  See third post.
    https://discussions.apple.com/message/22286109#22286109
    "Deploying a great quantity of iOS devices means creating a great quantity of Apple IDs. This script allows automated Apple ID creation from a spreadsheet."
    http://www.enterpriseios.com/wiki/Apple_ID_Automation_Builder

  • AC 10.0 - New Documentation in BPX

    Hi everyone,
    We have been publishing a lot of guides this year in our BPX website (http://www.sdn.sap.com/irj/bpx/grc), I would like to share with you some of the new highlights of the last month:
    New version of the PC+AC Integration guide
    AC and NetWeaver ID Mgmt Integration
    Segregation of Duties Review
    Also as per previous posts since last week there is a new guide covering the configuration settings in 10.0, currently it is hosted in the Service Marketplace but will be available soon in BPX as well.
    Regards,
    Luis

    Hi Luis,
    Great documentation. I would like to see some technical in detailed documentation as well, for eg: Configuring SPM to send password instead of a link (as raised in one of the posts).
    Regards,
    Raghu

Maybe you are looking for