[LSO] - Standard list of instructors while creating sessions

Hi all,
At our customer we had the question if it is possible to maintain a standard list of people who can be selected as instructor in the resource selection screen.
I found an option where I can use the relationship D --> A026 --> P. If I add several of these, i get the persons in the resource selection screen while creating the session (E). The Resourcetype (R) which is called instructor is linked to the course type.
However, this list has to be maintained for each course type. Is there a STANDARD way to maintain this list at a central level so I don't have to adapt the list each time something changes for each course type ? For example at the level of the course group to which to are linked ?
Thx for your replies
Kr,
Jan

well, if it is really a "Have to" requirement for your customer that they do not want to maintain the relationship for all the course types one by one & its a day to day job for tme with too many instructors & course types to manage.
You can give them a custom program with user friendly selection screen & runs a simple ABAP update statement to create the relationships in the back ground instead of LSMW.

Similar Messages

  • Not able to get the list of cubes while creating connection in Universe

    Hi Experts ,
    While creating a new connection i am not able to see the list of info cubes in $INFOCUBE folder.however i am able to see the queries .
    I done this to trobleshoot -
    i run  SE37
    - enter the name of function module - BAPI_MDPROVIDER_GET_CUBES
    - Press F8
    - I got the new screen where i have three fields - cat_nam , cube_nam , cube_type and under table tab i see CUBES whose values is - 0 entries.
    - What should i do now ??
    Please Suggest me
    Thanks

    Hi,
    when you not enter anything and hit F8 on the keyboard - what happens ?
    Ingo

  • How to get list of FMs while creating Contact Person from User Admin Link

    Hi Experts,
    We are implementing SAP ECommerce for my SAP ERP. In one of our requirements, we need to develop MASS UPLOAD program which will take input as Contact Person's first name, last name, address and authorization details and create new Contact Person as it is done through User admin link.
    To develop above tool, I want to trace all the Function Modules which are called while creating new Contact Person from User admin link.
    Please provide your inputs on how I can get the trace of FMs.
    Thanks,
    Keya

    Hi Keya,
    For a B2C eCommerce solution, you are looking at FMs BAPI_CUSTOMER_CREATEFROMDATA1 and ISA_USER_CREATE and the table USAPPLREF which holds the reference to the customer and user.
    To get the FMs called, you would have to do a session trace during B2C user registration / B2B user creation from UME. You could search this forum on a 'how-to' for doing a session trace or lookup the development and extension guide that provides a lot of useful information.
    Cheers,
    Ashok.

  • How to set standard quantity for po while creating idoc

    hi..
    i have a requirement to create an outbound idoc for PO in which i need to set a standard quantity as '1000'... plz tell me where to set the quantity,so that  the PO quantity is 1000 by default while creating PO...
    Plz help me asap

    Hello,
    Your requirement is not clear, why you want to change PO item quantity? anyway, If you want to post an IDOc with changing the PO item quantity, go to Customer exit EXIT_SAPLEINM_002 in IDOC_OUTPUT_ORDERS and change the quantity(MENGE) for each segment (E1EDP01) and modify the IDoc data (INT_EDIDD).
    Remember to create a Poject using CMOD and add this customer exit and activate, otherwise your code doesn't get triggered.
    Thanks
    RK

  • SAP Standard Menu Text missing while Creating Role in PFCG

    All:
    I am having a weird issue to where the "SAP Standard Menu Text" is missing when creating a role in PFCG and using the "Copy Menu > From SAP Menu" function.
    When I click the button I get the following:
    1) Popup of the SAP standard menu tree
    2) The area for the folders where there should be text is missing
         - appears as the " [ ] " symbols
    3) "[ ]" symbols appears through entire menu tree for folders and transactions.
    Any ideas?
    - Thanks Matt

    Yes this is a bug....Please see note 1421375 for the solution

  • Urgent:Issue with HashMap while creating session in Java Embedding Activity

    Hi,
    I am unable to createsession() with the values from HashMap. following is the code in JEA
    IAgileSession m_session=null;
              IAdmin admin = null;
              IAgileClass cls = null;
              IAutoNumber[] numSources;
              String nextAutoNumber = null;
    try {
                   HashMap params = new HashMap();
                   params.put(AgileSessionFactory.USERNAME, "*********");
                   params.put(AgileSessionFactory.PASSWORD, "*******");
    int s= params.size();
    String y= (String)params.get(AgileSessionFactory.USERNAME);
    String z= (String)params.get(AgileSessionFactory.PASSWORD);
    addAuditTrailEntry("UserName " +y);  
    addAuditTrailEntry("Password " +z);  
    addAuditTrailEntry("Size is " +s);   
                   AgileSessionFactory instance = AgileSessionFactory.getInstance("******************************");
    addAuditTrailEntry("After instance object" +instance);
    m_session = instance.createSession(params);
    addAuditTrailEntry("" +m_session);
    addAuditTrailEntry("After instance object_Session");
                   admin = m_session.getAdminInstance();
                   cls = admin.getAgileClass( "ProblemReport" );
                   IServiceRequest psr = (IServiceRequest)m_session.createObject( "ProblemReport", "PR-9989909");     
              } catch (Exception e) {
                   e.printStackTrace();
              } finally {
                   m_session.close();
    In the above code it is working perfectly up to AgilSessionFactory instance, but after that when I am printing m_session ( i.e. addAuditTrailEntry("" +m_session);) it is returning null values instead of some session ID. I am also able to print AgilesessionFactoy instance ID correctly inside JEA, but only problem is with m_session. I tried with the same code in java client and it is working perfectly. Please some one help me in this issue.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hi,
    I am unable to createsession() with the values from HashMap. following is the code in JEA
    IAgileSession m_session=null;
              IAdmin admin = null;
              IAgileClass cls = null;
              IAutoNumber[] numSources;
              String nextAutoNumber = null;
    try {
                   HashMap params = new HashMap();
                   params.put(AgileSessionFactory.USERNAME, "*********");
                   params.put(AgileSessionFactory.PASSWORD, "*******");
    int s= params.size();
    String y= (String)params.get(AgileSessionFactory.USERNAME);
    String z= (String)params.get(AgileSessionFactory.PASSWORD);
    addAuditTrailEntry("UserName " +y);  
    addAuditTrailEntry("Password " +z);  
    addAuditTrailEntry("Size is " +s);   
                   AgileSessionFactory instance = AgileSessionFactory.getInstance("******************************");
    addAuditTrailEntry("After instance object" +instance);
    m_session = instance.createSession(params);
    addAuditTrailEntry("" +m_session);
    addAuditTrailEntry("After instance object_Session");
                   admin = m_session.getAdminInstance();
                   cls = admin.getAgileClass( "ProblemReport" );
                   IServiceRequest psr = (IServiceRequest)m_session.createObject( "ProblemReport", "PR-9989909");     
              } catch (Exception e) {
                   e.printStackTrace();
              } finally {
                   m_session.close();
    In the above code it is working perfectly up to AgilSessionFactory instance, but after that when I am printing m_session ( i.e. addAuditTrailEntry("" +m_session);) it is returning null values instead of some session ID. I am also able to print AgilesessionFactoy instance ID correctly inside JEA, but only problem is with m_session. I tried with the same code in java client and it is working perfectly. Please some one help me in this issue.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Missing part list is incomplete while creating Production Order and 2 components are not shown in the list.

    Hi Team,
    We are facing issue for availability check. During creation of Production order, the missing part list is not complete and it should show componenet A in the Missing part list. Below is the details:
    Production Order quantity: 100 kg
    Componenet A required quantity: 100 kg
    MMBE Unrestricted qty: 1000 kg
    MMBE Reserved Quantity: 2000 kg
    So as per above figures component A should come as missing part during availability check. But it is not coming as missing part. Please check and give your inputs.

    Hello
    The results of availability check should NEVER be compared with MMBE. As already mentioned, transaction CO09 is more appropriate.
    Also, this issue has been already discussed on hundreds of threads in the past. See some examples below:
    Problem with missing parts list during production order creation
    issue in committing material for production order
    Material Availibility check in Production orders
    availability check
    order is not released
    As it is stated on the The SCN Rules of Engagement you should do some research before opening a thread. Therefore, please use the search tool or even google to search for similar problems before opening a thread.
    BR
    Caetano

  • Unable to see web service listed  while  creating the form on webservice

    Hi All,
    i created a web service reference and tested it and i m even getting the response of it .
    but i m unable to see the webservice being listed ...while creating a form on webservice .
    whereas if i create a process on webservice .. i can find webservices in the webservice list .(.the webservice which i created in the shared component)
    can anyone help me ...
    Thanks & Regards,
    Nandini Thakur.

    that should be an easy one. you might not have the GP roles needed. give to your user the caf roles in the UME

  • Error while creating search help

    Hi,
    I am getting an error "Elementary search help without hit list is meaningless" while creating a search help,.what could be the problem?
    Thanks,
    Rakesh.

    Elementary search help without hit list is meaningless
    Diagnosis
    The flag that they should appear in the hit list is not set for any of the parameters in the elementary search help in question. An elementary search help without a hit list is meaningless because it is not possible to select a value from the set of possible values in the input help process which it describes.
    System Response
    The action is terminated abnormally.
    Procedure
    In the maintenance screen for the search help, assign at least one parameter a position in the hit list.

  • How to customize Category and Category items list while creating New Model

    Hi,
    what the most convenient way to customize the Category and Category items list while creating New Model?
    This is standard:
    Now, what we want to achieve, is to customize this menu, to:
    1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    2. In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available. Additionally, it should behave like a hierarchy ... meaning you can create the second diagram, only as child (related diagram) of the first diagram etc.
    I know, excluding the particular diagrams/diagram elements can be configured using the right/profile settings, but how to:
    1. Customize the standard New Model menu window
    2. Create copies of City Planning Diagrams with different set-ups
    3. Set the relationship between diagrams
    Is such a configuration change possible?
    Thanks a lot for your help!
    Regards,
    Rafal

    Now, what we want to achieve, is to customize this menu, to:
    Question #1. Display in the Category window only f.e. two categories:
    - EA Diagrams
    - BPM Diagrams
    Click on Tools => General Options=> Model Creation
    Click on Properties => at right of Default category set
    Note : Model template does not work as Category. We can't set. An enchancement request has been open to SAP
    In the following example I defined a new default (MyNewDefault.mcc). As you can see only BPMN models are available.
    To create a new category set with BPMN choice
    a) Copy default.mcc in MyNewDefault.mcc file.
        Go to Tools=>General Options=>Model Creation : Select your new category
        Go to Tools=>General Options=>Model Creation : Edit properties and remove all things you does not want keep
    or
    b) Go to Tools=>General options=>Model Creation : Edit properties and click on Save as button and specify the file name "MyNewDefault".
        Quit the window.
        Select you new category : Go to Tools=>General Options=>Model Creation : "MyNewDefault"
        Edit properties and remove all things you does not want keep.
        Save you new category
    Question #2. How to define copies/replicas of existing diagrams
         Wrote an extension
    Question #3. How to make sure, particular diagrams can be used (created) only on predefined "levels" and how to set the parent-child relationship, so that PD enforced it directly when creating a new diagram.
         Specify yours conditons in your extension attached to your model
         Example : When the user want create a child diagram :  You can display a list of Parent Diagrams to select from.
         You can set in your extension by VBScript parent-child relationship
    Question #4 In the EA Diagrams, we want to have f.e. four copies of City Planning diagram, each of them should have different elements available, f.e. in the first copy, only Architecture Areas shall be made available, in the second one Architecture Areas and Business Functions, in the third on f.e. only Business Functions shall be made available.
    If I understand well your question. I suggest to take a look in
    Repository=>Administration=>Objects Permission Profile
    You can specify objects to show, mask, deactivate at model level.
    You can specifiy your own metadata.
    But I'm not sure you can mask, deactivate functions following diagram selection. It seem to specific.
    Message was edited by: Benoit Le Nabec

  • Material Listing Error while creating the sales order

    Hi Guru's
    I have mantained a material in the lisitng for A002 combiantion for SO/DC/Pric. ref. material
    While creating the sales order is throwing an error as material is not listed so the transaction is not possible.
    I have done the basic invetingation on the folowing aspects
    1)checking the material in the listing
    2)Validity periods
    3)Material not blcoked
    4)Mateial is extened for the respective sales org
    Kindly help ASAP.
    Thanks & Regards
    Tarakaram

    Dear SAP SD 007
    I can confidently tell that an enhancement or an user exit has been applied in your scenario
    You have to check that
    Normally when creating a sales order with respect or referring billing documents the qty will be in editable mode and it is standard problem
    Your people has solved the standard problem by enhancement
    Usually OR--LF-PGI----F2 (SAY THE QTY IS 25 UNITS)
    Now you are creating returns order with reference to F2 in the return order type Re there is a standard issue that user can edit the qty to 30 from the original 25
    To solve this only your people have used userexit
    Line items and qty greyed out means definately there is some enhancement or user exit applied
    You have to check that
    Regards
    Raja

  • Error while creating sales order : Materail not listed !!!

    Dear All,
    While creating a Sales Order, I am getting this message. please let me know. what is listing means.
    How to check it.
    error message
    Material XYYXY  is not listed and therefore not allowed
    Message no. V1118
    Diagnosis
    The material entered is not allowed for the transaction because the listing is missing.
    Procedure
    Check your entries. If they are correct, check whether the listing is complete.
    end of errror message.
    Thank You.
    Regards
    Venkat.
    Will award points for useful replies.

    Hi,
    Hope this will make your fundamentals about listing clearer.
    Material listing (and exclusion) lets you control which materials specific customers may (or may not) buy. For example, if you create a material listing for a specific customer, the customer can only order products from that list. You can also create a master record for material exclusion for a particular customer. Then the customer can not order excluded materials from you.
    Material listing applies to two partner functions in Sales & Distribution: the sold-to party and the payer.
    In the standard version of the SAP System, when the sold-to party and payer are different, the material listing check is as follows:
    ·        If the sold-to party has a material listing, the system only checks this listing (no other check takes place).
    If there is no listing for the sold-to party, but a listing has been created for the payer, the system automatically checks the payer’s listing.
    ·        If no material listing data exists for either the sold-to party or payer, then the customer may order any material.
    Regards
    SD

  • Error while creating request list Unable to detect the SAP system directory

    We are upgrading SAP BW (NW 7.0 EHP1) to SAP BW (NW 7.3)
    source OS: Windows 2008 R2,  source DB: MSSQL server 2008 R2 SP1 CU3
    I had started the upgrade by running: STARTUP.BAT
    I had started the DSUGui on the server (CI / DB on the same server) from: D:\usr\sap\BP1\upg\sdt\exe\DSUGui.bat
    I ran both programs (run as administrators).
    Once SAP Gui connects and was able to create userid/ password and when ready to start the initialization phase (click next)
    gives me the error
    Error while creating request list - see preceeding messages. Unable to detect the SAP system directory on the local host
    I had tried STARTUP.BAT "jce_policy_zip=Z:\export-import\downloads\jce_policy-6'  and still the same error.
    I had started DSUGui.bat with trace and the trace file contents are
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[2.0.7.1006]/>
    <!NAME[D:
    usr
    sap
    bp1
    upg
    sdt
    trc
    server.trc]/>
    <!PATTERN[server.trc]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter(%d [%s]: %-100l [%t]: %m)]/>
    <!ENCODING[UTF8]/>
    <!LOGHEADER[END]/>
    Jan 11, 2012 10:14:58 AM [Error]:                          com.sap.sdt.engine.core.communication.AbstractCmd.log(AbstractCmd.java:102) [Thread[ExecuteWorker,5,main]]: Execution of command com.sap.sdt.engine.core.communication.CmdActionEvent@376433e4 failed: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
    Jan 11, 2012 10:14:58 AM [Error]:                          com.sap.sdt.engine.core.communication.AbstractCmd.log(AbstractCmd.java:103) [Thread[ExecuteWorker,5,main]]: java.lang.NullPointerException: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
    Jan 11, 2012 10:14:58 AM [Error]:                          com.sap.sdt.engine.core.communication.AbstractCmd.log(AbstractCmd.java:103) [Thread[ExecuteWorker,5,main]]: java.lang.NullPointerException: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
    Jan 11, 2012 10:14:58 AM [Error]:                                                 com.sap.sdt.engine.core.communication.CmdActionEvent [Thread[ExecuteWorker,5,main]]: java.lang.NullPointerException: while trying to invoke the method java.io.File.getAbsolutePath() of an object returned from com.sap.sdt.dsu.service.req.DSURequestListBuilder.getSystemDir()
         at com.sap.sdt.dsu.service.req.DSURequestListBuilder.persistSystemInfo(DSURequestListBuilder.java:277)
         at com.sap.sdt.dsu.service.DSUService.createRequestList(DSUService.java:338)
         at com.sap.sdt.dsu.service.controls.DSUListener.actionNext(DSUListener.java:144)
         at com.sap.sdt.dsu.service.controls.DSUListener.actionPerformed(DSUListener.java:67)
         at com.sap.sdt.server.core.controls.SDTActionListener$Listener.actionPerformed(SDTActionListener.java:46)
         at com.sap.sdt.engine.core.communication.CmdActionEvent.actOnEvent(CmdActionEvent.java:43)
         at com.sap.sdt.engine.core.communication.CmdEvent.execute(CmdEvent.java:69)
         at com.sap.sdt.engine.core.communication.ExecWorker.handleCmd(ExecWorker.java:36)
         at com.sap.sdt.engine.core.communication.AbstractWorker.run(AbstractWorker.java:93)
    I could not get Upgrade started.  Any help is appreciated
    Thanks
    Prathap

    Did you get this solved?
    I have the same problem

  • Missing Parts List While creating Prd. Order

    Hi Friends,
    My client is creating production Orders Manually thru CO01and While Creating & Saving The Production Order System Is Not Supporting In Giving  Missing Parts list In spite Of Deficit of Un Restricted stock inStorage Location For BOM components used in that Order.
    To my surprise when the defisit is for all the BOM components only one component is showing as missing part in missing parts list.
    But While confirming the order The system is showing missing parts for all the components which are defisit for order confirmation.
    I Tried To Get This From the Following Method
    Checked For Define checking control In OPJK.
    Selected plant, Order type & selected the business function 1 for create or 2 for release. And Maintained These Settings
    a) Removed tick mark in No Availability check.
    b) Type of component check Given as - ATP check.
    c) Material release - 1. User decides on release if parts are missing.
    d) PP Checking rule (Which Is same As with plant parameter OPPQ)
    e) In Define scope of check (OPJJ) made a tick mark in check w/o RLT.
    Then Assigned the availability checking group at Mrp View of Header material.
    In spite Of All These Settings Still At The Time Of Order Release/Save A Warning Massage Or A Informative Massage Is Not Appearing
    *Please Suggestu2026u2026u2026u2026*
    hari

    Hi,
    Please check same checking rule use in Material master and with order type and plant?
    Check the cheking group in material master MRP3 view for all material.
    Go to Transection OPJJ - Maintain scope of check,
    Select your Checking rule which you have assing to your order type and tick INLCUDE RESERVATION.
    (1). CO24- Missing Parts Information System
    Under this transaction you choose Selection from Reservations and then select Plant & Material then you can get Missing Parts List for your respective material without production / planned order also.
    (2). COOIS : Production Order Information System
    Under this transaction you need to Select in List option as Components and then go on Selection Tab.
    For collective availability check use
    COHV - Excute the roport w ith collective avaliabilty check.
    COMAC.
    Hope this help.
    Regards,
    R.Brahmankar

  • Error while creating standard sales order

    Hi
    While creating a standard sales order , I am getting a problem  in the incompleteness log asking for the internal sales order no. in the 'accounting' tab of my order. It is related to cost assignment and profitability segment no.I am not able to to find the order no. for dat.
    What settings should i make in spro so that this incompletion  does not comes again while saving the order ? Shud i make changes at the item category level or  the sales document type level or at the material master data ???

    Hi Gurulos,
                       Go to transaction "KO01" and create an Internal order by taking a reference order .If you know your controlling area just press "F4" at the Reference order tab and you will find the reference orders. Take one of them and create a new one and assign the same to your order. Kindly please let me know If you need any more information on this.
    Regards
    Ram Pedarla

Maybe you are looking for

  • Dump While filling setup table

    Hi Frineds, We have moved some fields from Cimmunication structute to Extract structure at LBWE. We deleted data at setup table and also at RSA7. While filling the setup tables it is giving the below Dump. Please provide me solution. Runtime Errors  

  • ITunes will play some videos, but not others?

    Hello, I use my MacBook Pro at home with Apple TV to home share videos and music. I have also recently upgraded to mavericks. When I play videos on my tv at home they work fine, but I am traveling and now videos will not play. They just show 0:00 wit

  • After working for a while an SQLCLR assembly wont load

    I have a user defined aggregate function in an assembly called Watchdog. I use that function in a stored procedure. All the sudden after running just fine for a day it throws an error as soon as I try to execute the stored procedure with this error:

  • Need info on eligibility for SAP teched 07

    Hi, My company is in the process of getting SAP implementation partnership. I would to know if we are eligible for teched 07.Is it possible to apply now and keep the option open as we are expecting the implementation partnership soon. Thanks, Sriram

  • Rounding at Item Level

    Hi SD expert, <b>1st Issue: Price different in Billing compare to manual calculation</b> Scenario: Billing items quantity based on batch item quantity which client complaint manual calculation is different in billing. For example: <u>Price Manual cal