Delivery Method table in TEM ECC 6.0

Hi,
Does anyone know which table should be configured for the "Delivery Method" in Training & Event Management.
My customer is on ECC 6.0 & is not using LSO. But there is a requirement to update the standard delivered TEM table with some custom entries.
Please let me know if someone has handled this before.
Thanks.
Shivani

Hi,
At the first stage, tablespace should be created with compressed attribute, in order to set compressed attribute on newly created tables. If you are planning to compress the table with the data, it must be exported, first. Then, table should be created with compressed attribute and import the data into the table back.
Do not forget to create the statistics, after the respective import into the table.
Please note that if the table already contains the data before you alter it, only new records will be compressed.
Another point is, LONG RAW fields must be converted to LOB type.
Find the command, below;
brspace -u / -f tbreorg -a long2lob -o sap<sid> -s <src_tsp> -t allsel -n <new_tsp> -c ctablob -lc medium -SCT
Please read the note "1436352 - Oracle 11g Advanced Compression for SAP Systems" very carefully. Everything is explained very well in the note.
Best regards,
Orkun Gedik

Similar Messages

  • Shared Review Wizard: Change default delivery method?

    In step two of the Shared Review Wizard, user is prompted to decide how to send the PDF file. The default option is set to "Automatically send email invitation to reviewers" with the sub-option of "Attach the PDF file to the message & save a copy locally".
    Is there a way to change this to default to the 2nd sub-option of "Send a link ... "?
    Acrobat Professional 8.1.2

    Hi Sharadha,
    I am facing the same problem.
    But despite adding Infotype 5007 for Object Type D in table T777I, the Delivery Method option is not appearing for me.
    It was appearing as long as LSO was activated in the system.
    But since my customer is not using LSO, we deactivated it. My customer is using TEM stand-alone (ECC6.0).
    I suspect this functionality is available only while using LSO.
    Let me know if you are aware of this.
    Thanks.

  • Delivery method when creating course type

    Hi,
      I am not getting the 'Delivery method' option when creating course type..it takes 'Class room' training by default always..
    I was getting this option 2 days before..Do i have to change some configs for this?
    Regards,
    Sharadha

    Hi Sharadha,
    I am facing the same problem.
    But despite adding Infotype 5007 for Object Type D in table T777I, the Delivery Method option is not appearing for me.
    It was appearing as long as LSO was activated in the system.
    But since my customer is not using LSO, we deactivated it. My customer is using TEM stand-alone (ECC6.0).
    I suspect this functionality is available only while using LSO.
    Let me know if you are aware of this.
    Thanks.

  • Lso - Course - Delivery Method - Location

    Experts,
    where will be course(object E);  delivery method, Training Provider  & location will be stored in DB tables.
    Thaks..
    Ravi.
    Dear
    No Bold Letters
    Edited by: Sikindar on Sep 30, 2011 1:33 PM

    Delivery Mentod is stored in Infotype 5007(HRP5007-TFORM) against the Object Type 'D'-Course Type/Business Event Type.
    Location is stored in Infotype 1001(HRP1001 DB table). This is a relationship record between Object types 'F'-Location and 'E'-Course. The relationship is '024'-takes place in/is location of.
    Training Provider is stored in Infotype 1001(HRP1001 DB table). This is a relationship record between object types 'U'-Company or 'O'-Organizational Unit and 'E'-Course. The relationship is '036'-is organized by/ organizes.
    Thanks,
    Amit.

  • Delivery methods in Training and Events Management

    where do i go in IMG or SPRO to configure Delivery methods? to be used in Training and Event Management

    Hi,
    Follow SPRO>Training and Event Management>SAP Learning Solution>Training Management>Course Preparation>Delivery Methods
    Hope this helps.
    Donnie

  • Extracting Values of a Field from a Database Table in SAP ECC System

    Hi,
    I downloaded Extracting Values of a Field from a Database Table in SAP ECC System Using MII 12.0
    senario from sdn. I'm trying to do that senario in MII 12.05. But I have problem with section 6 in page 7 (you can supply senario from sdn)
    "6- Under the loop of Repeater, use action u2018Rowu2019 to append just the string part of the WA which will display only values for field u2018Batchu2019"
    I did not find WA elemen in Output element of Repeater_0
    How can I create WA element?
    Thanks.

    Cemil,
    Set up a SAP JCo Interface action block.  Use the RFC name RFC_READ_TABLE.
    In the link editor map the table to "MARA", set RowCount to something small (20 is good sample size) and create an xml transaction property named FIELDS and copy the following into it:
    <?xml version="1.0" encoding="UTF-8"?><FIELDS>
          <item>
            <FIELDNAME>MATNR</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>MTART</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>BSTME</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>XCHPF</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
          <item>
            <FIELDNAME>DATAB</FIELDNAME>
            <OFFSET/>
            <LENGTH/>
            <TYPE/>
            <FIELDTEXT/>
          </item>
        </FIELDS>
    Then link the Transaction.FIELDS to SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/TABLES/FIELDS}.  You may run into problems with two other fields and optionally they can be removed (set link type to remove xml).  I usually remove them initially for testing.  The two fields are:
    SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/NO_DATA}
    SAP_JCo_Interface_0.Request{/RFC_READ_TABLE/INPUT/DELIMITER} (or you can set this to something like a semicolon,";" or tilda,"~".  I find it easier to caclulate position by length, but that is my own idiosyncrasy.)
    Once you get this one working, we can explore how to do filtering on the dataset.  Your output should be something like this:
    <?xml version="1.0" encoding="utf-8"?>
    <RFC_READ_TABLE>
      <INPUT>
        <DELIMITER />
        <NO_DATA />
        <QUERY_TABLE>MARA</QUERY_TABLE>
        <ROWCOUNT>20</ROWCOUNT>
        <ROWSKIPS>0</ROWSKIPS>
      </INPUT>
      <TABLES>
        <DATA>
          <item>
            <WA>000000000000000023ROH 00000000</WA>
          </item>
          <item>
            <WA>000000000000000038HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000043HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000058HIBE 00000000</WA>
          </item>
          <item>
            <WA>000000000000000059HIBE 00000000</WA>
          </item>
          <item>
            <WA>000000000000000068FHMI 00000000</WA>
          </item>
          <item>
            <WA>000000000000000078DIEN 00000000</WA>
          </item>
          <item>
            <WA>000000000000000088FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000089FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000098HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000170NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000178NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000188NLAG 00000000</WA>
          </item>
          <item>
            <WA>000000000000000288HALB 00000000</WA>
          </item>
          <item>
            <WA>000000000000000358HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000359HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000521HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000578FERT 00000000</WA>
          </item>
          <item>
            <WA>000000000000000597HAWA 00000000</WA>
          </item>
          <item>
            <WA>000000000000000598VERP 00000000</WA>
          </item>
        </DATA>
        <FIELDS>
          <item>
            <FIELDNAME>MATNR</FIELDNAME>
            <OFFSET>000000</OFFSET>
            <LENGTH>000018</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Material Number</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>MTART</FIELDNAME>
            <OFFSET>000018</OFFSET>
            <LENGTH>000004</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Material Type</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>BSTME</FIELDNAME>
            <OFFSET>000022</OFFSET>
            <LENGTH>000003</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Purchase Order Unit of Measure</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>XCHPF</FIELDNAME>
            <OFFSET>000025</OFFSET>
            <LENGTH>000001</LENGTH>
            <TYPE>C</TYPE>
            <FIELDTEXT>Batch management requirement indicator</FIELDTEXT>
          </item>
          <item>
            <FIELDNAME>DATAB</FIELDNAME>
            <OFFSET>000026</OFFSET>
            <LENGTH>000008</LENGTH>
            <TYPE>D</TYPE>
            <FIELDTEXT>Valid-From Date</FIELDTEXT>
          </item>
        </FIELDS>
        <OPTIONS />
      </TABLES>
    </RFC_READ_TABLE>
    Add a repeater sourced on:
    SAP_JCo_Interface_0.Response{/RFC_READ_TABLE/TABLES/DATA/item}
    Link your repeater output to a tracer with this:
    Repeater_0.Output{/item/WA}
    What you will see in each tracer message is a single line of data with all the fields contents concatenated together.  You can look up what each field in the string represents by the length of the field as returned in the Response segment of the RFC_READ_TABLE rfc.  Then you can parse out the data you are interested in.
    Give this a try and let me know how you succeeded.
    By the way, I could not find the scenario you referred to.  Can you post a link?
    Regards,
    Mike
    Edited by: Michael Appleby on Jan 12, 2009 5:16 PM

  • Transfer z-table data from ECC to CRM via Middleware

    Hi,
    I need to transfer some z-table data from ECC to CRM using middleware. Does someone have any tip or reference link?
    André

    Hi,
    The following link shows the replication from CRM to ECC. The same can be followed for replication from ECC to CRM.
    Replication of Z table from CRM to R/3 - No mBDoc Created
    Regards,
    Susanta

  • How to make a checkbox checked by default in payment method table in APsuppliers

    I need to make the first checkbox in the payment method table(row name: check)  to be checked by default... Any suggestion are welcome...

    set value="something" in ur jsp
    then in 2 ways u can set default values
    1--- by setting that value in formbean
    2--- by using setProperty() method in ur action
    if that value matchs... then corresponding controll set defualt

  • Oracle BI delivery method/project management method

    Hello
    Does Oracle recommend a specific BI delivery method ? Or is there a method specific for Oracle tools ?
    Thanks in advance,

    Hi
    Look at OBIEE on OTN or in user guides;
    http://download.oracle.com/docs/cd/E10415_01/doc/nav/portal_booklist.htm
    Cheers
    David

  • Oracle BI delivery method

    Does Oracle recommend a specific BI delivery method ? Or is there a method specific for Oracle tools ?
    Thanks in advance,

    Hi
    Look at OBIEE on OTN or in user guides;
    http://download.oracle.com/docs/cd/E10415_01/doc/nav/portal_booklist.htm
    Cheers
    David

  • Learning Solution Delivery methods course type

    Dear,
    I'm searching for documentation/information on the different delivery methods (Course type -> SAP Learning Solution).
    I'm interested in:
    - virtual-classroom training
    - web-based training
    - on-line testing
    - static web-based training
    - class web-based training
    Can someone help me?
    Thanks,
    Françoise

    virtual-classroom training
    These trainings are are done using virtual classroom tools.Connection to the virtual classroom environment has to be setup. It is time-dependent but not location-dependent.
    web-based training
    This comprises of e-learning content which can be used in a self paced manner by the learner. The course content is stored on a content management server. At the course type level, the learning net id of this content is attached. It is not time- dependent and also not location-dependent
    on-line testing
    You use this for creating and designing a test that is stored in an internal content management system. It is not time-dependent and not location-dependent.
      static web-based training
    In this delivery method a static URL is provided to the learner that takes him to a web-page or some other similar source for learning. Not time-dpendent and not location-dependent as well.
      class web-based training
    It is same as e-learning but is delivered to learners is a classroom environment. It is both time-dependent and location-dependent.

  • LSO- Delivery Method

    Hi All,
    I created a new Delivery method as "Conf & Seminars" by copying the Class room Training Delivery Method(0001).
    But in the learning portal, under training activities its showing as "Classroom Training" tab instead of "Conf & Seminars".
    There are 2 tabs shown for classroom training.
    Please let me know to resolve the issue.
    Will appreciate a quick reply.
    Thanks,
    Deb

    Hi Deb!
    It will be really helpful if you could let us know how the problem was resolved.
    Regards,
    Ravi Sekhar

  • Delivery Method: Ship or Download?

    So I'm looking to purchase CS5 Design Premium, but am having difficulty deciding between the delivery method of downloading or having the discs shipped to me. Here are my thoughts:
    Download
    This option is great because of convenience, but I worry about situations where I have to reformat my computer or if my hard drive suddenly crashes.
    Will I be able to redownload just as long as I have the download link?
    How long does the download link stay active? I recall reading on the Adobe site that it stays active up to 3 years, but what happens after 3 years if I have to redownload?
    When I download, do I have the ability to backup the installer files on an external hard drive or a DVD?
    If there is an upgrade (let's say CS6 comes out), will the CS5 download links be kept on the Adobe servers?
    Shipping
    It's nice to have the actual tangible discs, but I worry about losing or damaging the discs.
    If I damage or lose the discs, can Adobe send replacement discs? Can I be sent a download link from Adobe support instead?
    Do I have the ability to backup the installer files from the shipped discs?
    I suppose my biggest concern with both options is the ability to have backup files.
    I've been on the fence, but hopefully some feedback from forum members will help me in my decision. Thanks in advance!

    In either case you can make backup disks to store in a safe place.
    FWIW you can save a few bucks by shopping at Amazon instead of going directly through Adobe.
    Full version will save you $164 http://amzn.to/97ITGx
    Upgrade from CS2/CS3 will save you $50: http://amzn.to/9QWnWo
    And from CS4 will save you about $20:http://amzn.to/aswawj
    Your choice, but whichever you choose don't forget to back it up.
    HTH,
    Bob

  • T&E Mgmt: must capture Delivery Method?

    Hi Experts,
    I dont have LSO activated, however, when I create a new Business Event Type, I cannot save until I have a value for Delivery Method. It prompts an information box saying "Enter the information Delivery Method". Is it possible to make this not mandatory??
    Based on some previous threads, it seems that Delivery Method should only be used for LSO (the configuration for it in SPRO is under LSO as well).
    Please help. Thanks!

    Hi,
    In Training and Evenat management Delivery method is describes, how the training session was conducted. For example class room training or Physical training etc. This can be configured through SPRO.
    Nandagopal C

  • Syncing UST10S and UST12 tables in SAP ECC 6.0

    Hi there,
    I am currently experiencing some discrepancies between the UST10S table containing authorizations assigned to profiles to the table UST12.
    I have heard that UST tables in SAP have been known to get out of sync and become inaccurate, and there is a way to sync them to the USR tables. Is there such a method for ECC 6.0?

    Start transaction SUIM_OLD. Wait about 5 to 60 seconds.Then the tables are synced. Then you can use SUIM.
    Inconsistencies should however seldom occur anymore.
    Cheers,
    Julius

Maybe you are looking for

  • Third Party Wall and Car Chargers for ZV

    Hi all. I was wondering if anyone has had any experience with the third-party wall and car chargers that are available on Ebay? I just purchased a Vision: M yesterday and was wondering if I should purchase a bundle pack off of Ebay with a case, charg

  • Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION in Report

    Hi All, This is the frequent problem we are facing in BW production. While executing the BW reports We are getting the below error. No Space left in Shared memory. Program error in class SAPMSSY1 method : UNCAUGHT_EXCEPTION in Report. An exception wi

  • OSB Adapter Config !

    Hi all, we are working on OSB to create connection with Oracle Apps using JCA adapter. We followed the following link to congfigure JCA adapter, http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/jcatransport/transport.html#wp1105150 We confi

  • E63 msn sign in problems - please help!

    Ok i just bought a new e63 and i installed the 'messenger' application i go to sign in on Messenger with my email address and password and it comes up with a box saying 'Connecting, please wait' thats for about 1 minute... than it comes up with a err

  • Safari running slow

    Since installing Leopard i have found Safari goes really slowly most of the time. If i do the same things through Internet Explorer on a PC it is normal speed so it is obviously not the line. Is there any know problem that causes this, does anyone kn