CUP - Issue regarding creation of New SAP ID in CUP.

System :  SAP GRC 5.3 SP 12..
We have requirement where in we need to design a workflow for creation of New SAP ID.
The Naming convention followed for SAP ID is FIRST LETTER of FIRST NAME and LAST NAME with maximum 8 characters.
For Eg
JOHN SMITH would have SAP ID as JSMITH
JERRY SMITH would  have SAP ID as  JSMITH01
The requirement here is when user fill the REQUEST FORM for NEW User ID there is field where in the requestor need to put the desired SAP ID,
Can a validation be set OR Logic be written so that user can put the SAP ID as per the naming convention..?
Also , any other solution as to how the situtation can be handled in CUP...
Regards.
Ajit

Hi Ajit,
Yes, you can maintain the user ID in the Active Directory. User id will be now auto populated in the request form, from Active Directory when  we data Source is LDAP -Actice directory. So when user login to end user form to create a request, It's all information( user details + manager details ) will fetched from Active Directory.
It is not possible to change userid in later stage of approval in the request.
You can have security as final stage and guide them to create user manually as per naming convention.
Make auto provisioning OFF in CUP
Kind Regards,
Srinivasan

Similar Messages

  • Issue in Creation of new Value Field in CO-PA

    Hi,
    I have a query in CO-PA Value Field Linking.
    In my Development Client,
    1. Created a New Value Field (No Transport Request Generated)
    2. Linked to the above to new Conditon type created in SD. (Tranport request was generated) i.e. in Flow of Actual Values->Transfer of Billing Documents->Assign Value Fields
    However then i try creating a new Value Field in my Production Client it throws a message 'You have no authorization to change Fields".
    Is this an issue with authorization or i need to transport the Value field too from Development to Production client.
    Please Advise.
    Thanks in Advance,
    Safi

    Thanks Phaneendra for the response.
    The creation of Value field did not create any tranportation request. Will this too be transported if i transport the Operating Concern.
    Please Advise.
    Thanks,
    Safi

  • Issue in creation of new line item in repair order-Reg

    Hi all,
    I have a query in Service Management Module of SAP while working in standard IDES System.
    I followed the procedure given in the IDES material.
    As per the standard system the fourth line item in the repair order should be automatically created, once the service order is technically confirmed and completed. In my case iam able to get the first three (Item Categories - IRRS,IRRE,IRRP) line items but even after completing the service order technically iam not gettin the fourth line item (IRAL). Only based on the Fourth line item we can create the Outbound delivery for the repaired item. After that the billing process need to be processed. My query is how to get the fourth line item automatically in the repair order after i technically complete the Service Order. 
    To brief you on the entire process that i have followed:
    1. The QM Check need to be activated for the material.
    2. Creating the Service Notification and the repair request.
    3. Posting the GR of a piece of equipment to be repaired.
    4. Processing the technical check.
    5. Displaying the repair request and the service order.
    6. Editing the Service Order.
    7. Processing and Confirming the Service Order.
    8. Technically Completing the Service Order.
    9. Delivering the Repaired Piece of Equipment.
    Then Comes the BILLING.....
    In the above, after the eighth Step the Fourth Line item will be created automatically created but it DOESNT....
    regards
    Venu

    Hi ,
    Review your repair procedure and copy controls defined for this stage...mya be some thing is missing over there causing this behaviour.
    As you told completion of Service order will determine the last item and enable us to delivery the item to customer...
    Thanks,
    sudhi

  • Regarding creation of new movement type

    Hi Friends,
         I have tried to create a new movement type for transfer posting from one sloc to another (311) with Z11...but it showing an error
      " Specify the key within the work area "...what is this ? where i can see the work area for this ? the messsage number is  SV033. kindly help me please
    Regards,
    Prasath

    Hi Prasanth,
    This following link will help you.
    Movement Type
    Regards,
    Nani.

  • Regarding creation of new Alert category

    Hi All
      When I am creating a new alert category using Tcode ALRTCATDEF and trying to save it .A prompt-message is displayed as “prompt for customizing request “  what should i do to create the new Alert category . and see it in the select Alert category box
    Regards,
    Aziz

    Hi Aneez,
    I have given u all the configuration steps with links also the different ways by which u can raise alert.
    I think u have not gone through my threads. Also u did not replied me whether u resolved the problem which is raised in thread.
    1) how can i send an email alert through RWB?
    RWB is used for raising Integration and Adapter engine related errors.
    Its depends upto u what kind of errors u want to send.
    2)what are the steps i need to configure using Tcode ALRTCATDEF.
    Already provided u in one of ur thread.
    3) is this possible using CCMS Alerts .
    U can use this is another way of raising errros.
    4)do i need SMTP to be configured to send an Email Alert ?
    GO to SU01 transaction and maintained email address where u need to send alert message. IN ALRTCATDEF u need to mentioned the use in the fixed receiver tab.
    Hope it clears to you.
    Thnx,
    Chirag

  • Issue with Creation of new entity and adding it to collection

    Hi Experts,
    LR_ENTITY_ACCT(Account details) is the parent node and that is populated using the query builder.
    From there, I am trying to get realtion of notes section 'BuilNotesRel'). If it is not present, I am creating a new entity of that relation through parent node, setting attributes and saving it. I have written the following code. While debugging, I can see the new entity created under parent LR_ENTITY_ACCT and set property is also working. But afer execution, if I check in genil_bol_browser transaction, there is no new entity created under BuilNotesRel. Please help.
    data:  LR_ENTITY_ACCT          TYPE REF TO CL_CRM_BOL_ENTITY,
               LR_COL_NOTES            TYPE REF TO IF_BOL_BO_COL,
                  LR_ENTITY_NOTES         TYPE REF TO CL_CRM_BOL_ENTITY.
            IF LR_ENTITY_ACCT IS BOUND.
              LR_COL_NOTES ?= LR_ENTITY_ACCT->GET_RELATED_ENTITIES( IV_RELATION_NAME = 'BuilNotesRel' ).
    IF  LR_COL_NOTES->SIZE( ) = 0.
        LR_ENTITY_ACCT->create_related_entity( iv_relation_name = 'BuilNotesRel').
        LR_CORE_3 = CL_CRM_BOL_CORE=>GET_INSTANCE( ).
                LR_CORE_3->MODIFY( ).
            LR_COL_NOTES ?= LR_ENTITY_ACCT->GET_RELATED_ENTITIES( IV_RELATION_NAME = 'BuilNotesRel' ).
              LR_ENTITY_NOTES ?= LR_COL_NOTES->GET_FIRST( ).
                  LR_ENTITY_NOTES->SET_PROPERTY( IV_ATTR_NAME = 'TEXT_ID'
                                               IV_VALUE     =  'ZCOM').
                LR_ENTITY_NOTES->SET_PROPERTY( IV_ATTR_NAME = 'TDLINE'
                                               IV_VALUE     =  LS_ACCOUNT_DETAILS-NOTES ).
    LR_CORE_3 = CL_CRM_BOL_CORE=>GET_INSTANCE( ).
                LR_CORE_3->MODIFY( ).
    endif.
    endif.
    Thanks,
    Ramya

    Hi Sumit,
    I have used a structure for notes which is of TYPE crmt_bupa_il_notes.
    ls_notes                TYPE crmt_bupa_il_notes.
    Then I create the entity, get properties, set the properties and do a core modify.
    LR_ENTITY_NOTES = LR_ENTITY_ACCT->create_related_entity( 'BuilNotesRel' ).
         LR_ENTITY_NOTES->get_properties( IMPORTING es_attributes = ls_notes ).
        ls_notes-task = 'M'.
        ls_notes-text_id = 'ZCOM'.
        ls_notes-langu = 'EN'.
        ls_notes-languiso = 'EN'.
        ls_notes-tdformat = '*'.
        ls_notes-tdline = LS_ACCOUNT_DETAILS-NOTES.
          LR_ENTITY_NOTES->set_properties( EXPORTING is_attributes = ls_notes ).
          LR_CORE_3 = CL_CRM_BOL_CORE=>GET_INSTANCE( ).
                LR_CORE_3->MODIFY( ).
    Thanks,
    Ramya

  • New sap user creation

    Hi All SAP experts,
    My company has implemented 2 Systems SAP Landscape with one development and one production server which are running on R/3 Enterprise 4.7 (Kernel Release 6.20) with Microsoft SQL 2000 as database server.
    I have the following questions regarding new sap user creation by using user copy function.
    1.When I request to create new SAP User by using user copy function ,should I just create the user acct in DEV and transport it to PROD System? If yes, how could I do that?
    2.When I request to create new SAP User by using user copy function, can I just create it on PROD System only? If yes, what is the impact?
    3.When using User copy function to create new user acct, should I select all parts (like adress ,defaults,reference user, user groups.....) of the existing user to be cloned to new user acct?
    Thanks.
    Leon

    Hi Leon,
    Answer to your questions in their respective order:
    1. You can create user in DEV and then make remote client copy to PRD system using scc9 t-code. Here you can choose user accounts and authorizations for the copy. ( Rem: Data will be overwritten in target system when copied).
    You can also use client export/import(scc8/scc7)
    But, When you do the client import from the exported files using STMS,you will have to select only one of the transport requests and then STMS automatically selects the other requests for you.
    Then it will show you the different transport requests that you have created during your export, the client copy profile and the target system and client. The customizing and application data is deleted in the target client before copying for all profiles except SAP_USER. This is technically unavoidable (and hence the data will be overwritten).
    So if you can afford overwritting of user data in target client , you can go with the above procedure.
    2. Using  user copy in su01, you can copy one user to another user only in that client and is confined to that system only. So yes, If you want 2 or more users to have same authorizations, profiles ,etc etc.. you can choose this in PROD system.
    3. It depends.. If you want user to be in same group, then you can choose user groups. If you want them to have same authorizations , you can choose roles and profiles... If you want them to have same company address and others,... you can select address.. and so on.
    Also below link provides required steps in case you choose local/ remote client copy:
    http://www.sap-basis-abap.com/bc/client-copy-by-using-scc8-and-scc7.htm
    Hope this helps...
    Thanks,
    Ajith
    Edited by: Ajith Kamath on Oct 20, 2009 8:28 AM

  • How deactivate SAP* after inital logon and creation of new users

    Pl help me to deactivate SAP* after inital logon and creation of new users.
    Regards
    Jyotirmoy

    Hi,
    log on (as sap* to the portal) and navigate to system administration --> system configuration --> user management configuration --> data sources.
    There you should find a dialog for (de-)activating sap*.
    note that the navigation path could be slightly different (my portal ist set to german, so I translated the path on my own).
    Regards,
    Dominik

  • Issue regarding Planning layout is not getting rendered and is dumping at : CL_RSDRC_TREX_QUERY_LAYER ~ _GET_PARTPROVS_WITH_TREX_PART in SAP TPM IP

    Gurus,
    I am facing an issue regarding SAP TPM IP ( HANA)
    I have 3 Infoproviders
    Planning infocube, Planning DSO1, Planning DSO2 and i created multiprovider and added these 3 infoproviders into it. I have created Aggregation level on multiprovider. Created Bex Input ready query on Aggregation level.
    Issue is  Planning layout is not getting rendered and is dumping at : CL_RSDRC_TREX_QUERY_LAYER ~ _GET_PARTPROVS_WITH_TREX_PART.
    I tried debugging it and found it is trying to read   i_r_pro -> n_ts_part. It is populated with only 3 values (i.e. 2DSOs and 1 Cube), whereas <l_partprov>-partprov is referring to Aggergation level, hence read statement isn't successful, it is dumping.
    The class CL_RSD_INFOPROV_CACHE->GET() method is trying to populate the N_TS_PART.N_TS_PART uses P_R_INFOPROV table which seems to be already populated.  So, I debugged all the below methods to find out how the P_R_INFOPROV but couldn't find any clue.
    Can any one help,it would be really help.
    Thanks
    Ashok

    Hello Gregor,
    On the launch of planning layout it throws an error message:
    Planning is not possible RSCRM_IMP_CORE008.
    When I debugged, i got to a point wherein
    particular Real Time Planning DSO is
    not getting retrieved under the MultiProivder in below class.
    Class: CL_RSCRM_IMP_ACTIONS_SERVICE, Method: GET_INFOPROV is not
    returning the real time Info-Provider Name(i.e. Planning DSO)
    underlyingthe Multiprovider.
    I've also tried to run the report mentioned by you for the Multiprovider but issue still exists.
    Let me know, if you have any pointers on this topic.
    Thanks,
    Jomy

  • SAP QM Issues regarding follow-up action after Usage Decision

    Dear Gurus -
    Kindly need your expertise to resolve these issues regarding follow-up action.
    1. After taking the UD i need to trigger the follow-up action to send an email with the long text to a group of people. As per standard SAP the email goes to the person taking the UD. Kindly can some one explain what & where do i need to make the changes. Also please let me know what is the customized Email ID table where mail ID's will be stored which fuction module can extract.
    2. Can i also use the same functionality for partial lots during inprocess inspection. I need to send an email to a group in case the valuation is rejected for that operation.
    Any response is highly appreciated.
    Thank You.
    Edited by: sunil t on Jan 6, 2010 7:03 PM

    Hi
    Please go through my recent thread
    Incomming Inspection Auto mail if Rejected
    Regards
    Sujit

  • Manual for creation of new Plant in SAP

    Hi Members,
    I need to test in quality finance related activities, creation of Profit center, Cost center, Standard Heirarchy, etc.. Does anyone help me with the manual for role of Finance guy in creation of new Plant..
    Rgrds,
    Ravi

    Hi Ravi,
    Please find the below link for steps to create plant with screens.
    http://www.saponlinetutorials.com/how-to-create-plant-in-sap-mm-define-plant/
    BR, Srinivas Salpala

  • Issue regarding Web Application Designer (WAD) in SP25 / SAP note 1558066

    Dear all,
    we recently applied SAP NetWeaver BI SP25. After the update we encountered severe issues in WAD and applied SAP note 1558066, this means I deleted from RSZWMDITEM all records having MDITEMNAME TARTITLE and afterwards updated metadata.
    The situation improved a lot, i.e. now I can open web templates or close WAD, but I still cannot drop Web Items in layout tab. I am able to include Web Items in overview tab, but again in layout tab I cannot change the sorting or remove Web Items.
    Did anyone come across similar issues and find a solution?
    Thanks for your input, best regards,
    Bjoern

    Hello Björn
    I've exactly the same problem. See
    Could you solve the problem and if yes, how did you do it?
    Thank's
    Patrick

  • One issue regarding PPDS OP.confirmation from Legal Non-SAP system

    Dear Experts
    we met a BAPI function issue regarding PPDS Operation.confirmation from Legal Non-SAP system.
    scenario is as following:
    we want to build the interface between PPDS and non-SAP system, regarding OP. and order confirmation inbound processing.
    now we input simulated inbound date and test using BAPI: BAPI_MOSRVAPS_CONFOPRMULTI
    but we find a problem, even we set different value for fields ‘ duration’ in function. after call BAPI, It didn't reflect the 'net duration' or 'remaining duration', these fields not changed through check in Tcode:/SAPAPO/RRP3 for single operation.
    In the meanwhile , but it works for fields 'confirmed Yield' and fields 'confirmed Scrap' for single operation.
    my questions is that: if we need to synchronize the operation confirmation( including confirmed yield,confirmation scrap, duration),do we use the correct BAPI for this or do we need an additional BAPI, please hints.
    Thanks a lot! any feedback would be welcome!
    Best Regards
    Kevin

    Hi Kevin,
    Yes you use the right BAPI.
    you have to use table OPERATION_CONFIRMATION.
    You cannot just set the duration. You have to trigger time event confirmations.
    The field duration according to the documentation currently not supported.
    You need to use CONFIRMATION_TYPE
    0100 Start of Setup
    0150 End of setup
    0200 Start of processing
    0300 Partially complete
    0350 Complete
    Not sure if all confirmation types are supported by the BAPI.
    You can also set start and end time but not sure either whether it is supported or not.
    Regards,
    Uli

  • Trx. MM41: Creation of new article data

    Hi togehter,
    I've a special question regarding tax data proposal in the area of SAP Retaill - Creation of new article data.
    We've distribution centers in different countries.
    If I create a new article masterdata for a sales organization assigned to Austria and a distribution center
    assigned to Italy I get the following tax data proposal (if I enter '1' in field MARA-TAKLV):
    IT     Italy     MWST     Output tax               1     Full tax    
    IT     Italy     LCIT        VAT license Italy      1    Full tax    ->     error: the category LCIT does not define classification 1 (only 0)
    I assume that the entry LCIT comes from table TSKM.(material taxes).
    Now my question.
    We don't need the entry LCIT. It is possible or it is the right way to delete the entry named before?
    Or should we create a new entry?
    Thanks in advance for your help/info.
    Best regards
    Frank

    Moved from SAP ERP SD Sales to SAP for Retail.  Please try to post in the right forum to get right direction to your requirement / issue.  Also go through the following blog which will help you.
    Find Topic Spaces on SCN (Forums)
    G. Lakshmipathi

  • Moved: Creation of new iViews not possible because templates missing

    Hello,
    sorry I moved this issue to "Portal Content Development"
    Creation of new iViews not possible because templates missing
    Regards
    Alex
    Message was edited by:
            Alexander Lepka

    Alex,
    I'd be curious to know what SAP says.  We have the same problem.  Not sure how/if we broke it, but we can no longer create iviews using the wizard.  I opened an OSS msg a while ago, but did not get much assistance. 
    We have recently upgraded to 2004s and it did not resolve the issue as I hoped it would. 
    If SAP provides a solution for you, please post it. 
    Thanks,
    Shelly

Maybe you are looking for