Loyalty points are stored in which entity?

Hi,
I need to integrate Siebel's loyalty management with ATG and for That I need to know What is the data that flows from Siebel to ATG for loyalty functionality.
So I need to know below things-
In which entity loyalty/reward points are stored in Siebel or Where exactly is the loyalty points in Siebel?
Regards,
Prateek

There are several tables that hold variant info .. you can find these in SE11 / SE16 looking for VARI*  e.g. VARID Variant directory, VARIT Variant texts -> but most of the time you should go through SAP function modules to read the contents of these e.g. RS_VARIANT_CONTENTS, as some of the data is held in INDX-type tables that you won't want to decode yourself...
Jonathan

Similar Messages

  • Tables report are stored in which db table

    tables report are stored in which db table ?and can we do remote comparision between this in dev and prd

    Hi,
    Goto your report.
    Display the source code.
    Goto Utilities-----> versions--
    > versions management
    Click on remote comparision button.
    On the pop-up which appears subsequently, enter the sys name with which u want to compare ur code.
    <b>Reward if helpful</b>
    Regards.
    Pritha.

  • Error messages in ABAP program are stored in which table

    hi all,
    Can anyone tell
    error messages in ABAP program are stored in which table??

    Hi Sir ,
    Please have a look below .Hope it is suitable and simpler solution for your question.
    Please do reward if useful.
    Thankx.
    Fuction module for storing error messages  ->'format_message'
    for example...
    data : v_message(100) type c.
    call transaction NNNN mode A update S messages into it_messages.
    loop at it_messages where msgty = 'E'.
    call function 'format_message'
    exporting
    *it_messages details
    importing
    v_message.
    write :/ v_message.
    clear v_message.
    endloop.
    Anothe method - ->
    Here is a sample of the program code for that:
    LOOP AT it_messtab.
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
    id = it_messtab-msgid
    lang = it_messtab-msgspra
    no = it_messtab-msgnr
    v1 = it_messtab-msgv1
    v2 = it_messtab-msgv2
    IMPORTING
    msg = g_msg
    EXCEPTIONS
    OTHERS = 0.
    IF it_messtab-msgtyp = 'S'.
    it_sucess-sucess_rec = g_msg.
    it_sucess-lifnr = it_header-lifnr." Based on your field
    it_sucess-tabix = v_lines.
    APPEND it_sucess.
    ELSEIF it_messtab-msgtyp = 'E'.
    it_error-error_rec = g_msg.
    it_error-lifnr = it_header-lifnr.
    it_error-tabix = v_lines.
    APPEND it_error.
    ELSE.
    it_info-info_rec = g_msg.
    it_info-lifnr = it_header-lifnr.
    it_info-tabix = v_lines.
    APPEND it_info.
    ENDIF.
    ENDLOOP.

  • Notification Comments are storing in which database table?

    Hi All,
    Can anyone help me to find the table name in which notification comments are storing (like checklist notification or Leave approval notification)

    Hi All,
    Can anyone help me to find the table name in which notification comments are storing (like checklist notification or Leave approval notification)

  • Identify which disk recovery points are stored on?

    We have 3 disks in DPM, one of which is flaky and keeps going missing from DPM.  We started by migrating our most important datasources to another disk (on a temporary basis) while we ordered a new SAN with the view to moving everything onto the new
    SAN.  This has worked for most datasources but I have a problem with one.
    For the purpose of this thread we have:
    Disk 1 - old, flacky disk
    Disk 2 - temporary disk
    Disk 3 - new SAN
    I am trying to move a datasource from disk 2 to disk 3 but am getting the following error:
    Set-ProtectionGroup : D:\ has recently been migrated. You cannot migrate D:\ again until the recovery points on the previous replica volume are available.
    (ID: 31224)
    At C:\Program Files\Microsoft System Center 2012\DPM\DPM\bin\MigrateDatasourceDataFromDPM.ps1:129 char:4
    +             Set-ProtectionGroup $mpg
    +             ~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Set-DPMProtectionGroup], DlsException
        + FullyQualifiedErrorId : ChainedMigrationError,Microsoft.Internal.EnterpriseStorage.Dls.UI.Cmdlet.ProtectionCmdLets.CommitProtectionGroup
    Prior to attempting this, I removed (using remove-recoverypoint) the old recovery points I believed to be on Disk 1 rather than waiting for them to expire on their own.  This worked for other datasources but doesn't work for this.
    I found an SQL query on another fourm post and ran it:
    use DPMDB  
    select dsk.NTDiskNumber,vol.MountPointPath,ag.NetbiosName, ds.DataSourceName,  vol.Usage as "1=REPLvol 2=RPvol", vol.VolumeSize,lr.lastbackuptime
    from tbl_IM_DataSource as ds
    join tbl_PRM_LogicalReplica as lr
    on ds.DataSourceId=lr.DataSourceId
    join tbl_AM_Server as ag
    on ds.ServerId=ag.ServerId
    join tbl_SPM_Volume as vol
    on lr.PhysicalReplicaId=vol.VolumeSetID
    and vol.Usage in (1,2)
    join tbl_SPM_Extent as ext
    on vol.guidname=ext.guidname
    join tbl_SPM_Disk as dsk
    on ext.diskid=dsk.diskid
    where ntdisknumber=4 and lastbackuptime < getdate()-7 and NetbiosName='FILESERVER1'
    order by lastbackuptime
    and the output is:
    NTDiskNumber MountPointPath
    NetbiosName DataSourceName
    1=REPLvol 2=RPvol VolumeSize
    lastbackuptime
    4 File System\vol_783bc0f9-8382-4df5-8f72-819ba012f68f
    FILESERVER1 D:\
    2 359766425600
    2014-05-13 08:01:08.000
    4 File System\vol_783bc0f9-8382-4df5-8f72-819ba012f68f
    FILESERVER1 D:\
    1 2238049157120
    2014-05-13 08:01:08.000
    Is that DPM telling me there are still recovery points on that disk?  If not, is there a way to tell which recovery points pertaining to this datasource are still on Disk 1?

    That message sounds like it expects data to be on the old disk but it may be having issues.  These are all dynamic volumes so taking the disk offline and then back online usually fixes dynamic disk errors.  Then do a rescan in DPM.
    I usually find the volume on the disk by using disk manager. 
    Go to the protected item (e.g. VM, volume, etc.) in the Protection view
    In the bottom pane, choose the Click to view details link to get the path
    Right-click on the path and copy it.
    Paste the path into Notepad or similar so you can see it
    In the path, there will be a GUID prefixed by "vol_"
    Open Disk Manager (diskmgmt.msc)
    Look for the volume that has DPM-vol_GUID where GUID is from step 6.  Click on it and that will highlight the partition in the display at the bottom of disk manager.  That is the disk that holds all the data for that protection item.
    Sometimes it can be hard to tell which partition is highlighted on the disk and I'm sure there is a simpler, more elegant way. 
    After you find the partition, you could clone it onto a new disk.
    You may have to end up just replacing the disk and recreating the replica.  You can do that by following the information in this post (http://social.technet.microsoft.com/Forums/en-US/fa0402d3-67d4-4fe5-8ed1-5666fd6b0ff6/dpm-disk-failure?forum=dpmstorage). 
    Replace the bad drive and then run DPMSYNC -Reallocatereplica.
    Not sure if this helps...
    Rob

  • Ztable and Zfucntion module are stored in which SAP table

    Hi Guys,
    We use to create Ztable and Zfunction module in SAP, In which table are the table and function module name would store?
    Thanks,
    Gourisankar.

    Hi Gowri,
                 Tables stored based on the Package that is how you save if you save under any package it will saved under that package. similarly Function module are saved with respect to Function Group.
    Regards,
    Sathish

  • Tables where Charateristics related to DIR are Stored

    Hi Friends
    I have one Query.
    You assign Class to a Document type in SPRO.To This Class we assign some Charateristics.
    When we Create a DIR , we assign charaterictics value in Additional Data Tab Page.My question is where these values specific to DIR are stored in which table.Me and my ABAP consulatant are looking but not able to find out.Request your help.
    With Regards
    Mangesh Pande

    Dear Mangesh,
                         The table TDWA contain the information about document types which also store the information about clas which has assigned to the document type.
    Regards
    Bhuwan C Tiwari

  • Performance Management Objectives are stored Table?

    Hi Friends,
    When i click on Add Objective using Performance Management page i.e the SSHR page
    I am getting the following fields:
    Objective Name
    Created By
    Start Date
    Target Date
    Next Review Date
    Group (Has a list of departments)
    Priority
    Weighting Scale
    Complete (%)
    Achievement Date
    I would like to know if these fields are stored in which table immediately.
    but after transfer the objects to manager, the manager Review worker changes then PER_OBJECTIVES table populated.
    but i want to before which table these objective are stored.
    Please help

    Hi avajain,
    per_performance_tatings fine.
    but i want to objective status informantion.
    means manager created objective send to employee that time status is WKR, Then employee changes and send to manger that time status APPROVAL like way..
    these objective status which table stored.
    can u help me any body
    thanks and regards
    rkrao.

  • In which table scripts and smartforms are stored

    in which tables scripts and smartforms are stored
    eg scripts in tadir.

    Hi this may be of some help.
    SD
    SALES ORDER/ENQUIRY/QUOTATION
    Output type         : BA00
    ScriptForm Name     : RVORDER01
    Driver Program Name : RVADOR01
    smartform name
    DELIVERY NOTE
    Output type         : LD00
    ScriptForm Name     : RVDELNOTE
    Driver Program Name : RVADDN01
    smartform name      : LE_SHP_DELNOTE
    Smartform Driver Pgm: RLE_DELNOTE
    INVOICE
    Output type         : RD00
    ScriptForm Name     : RVINVOICE01
    Driver Program Name : RVADIN01
    smartform name      : LB_BIL_INVOICE
    Smartform Driver Pgm: RLB_INVOICE
    MM
    PUCHASE ORDER/RFQ/CONTRACT
    Output type         : NEU
    ScriptForm Name     : MEDRUCK
    Driver Program Name : SAPMF06P
    smartform name      : /SMB40/MMPO_L
    smartform driver program: /SMB40/FM06P
    GOODS RECEIPT
    Output type         : WE01
    ScriptForm Name     : WESCHEINVERS1
    smartform name      : /SMB40/MMGR1_A
    smartform driver program: /SMB40/M07DR
    GOODS ISSUE
    Output type         : WA01
    ScriptForm Name     : WA_SCHEINVERS1
    smartform name      : /SMB40/MMGI1_A
    smartform driver program: /SMB40/M07DR
    FI Forms
    Account Statement   : F140_ACC_STAT_01
    Cheque Printing     : F110_PRENUM_CHEK
    Balance Confirmation: F130_confirm_01
    Dunning Form:         F150_DUNN_01
    check the link below it provides steps to convert sap scripts to smartforms
    http://www.ficoexpertonline.com/downloads/Iyer_SmartForms.pdf
    SMARTFORMS -Driver Program
    PO: /SMB40/FM06P
    SO: /SMB40/RVADOR01
    GR: /SMB40/M07DR
    with regards,
    Hema Sundara.
    pls give points if u find this helpful.

  • BSEC: in which case the financial documents are stored in it?

    Hi All,
    colud anyone in which case the financial documents are stored in the table BSEC?
    Thanks

    HI Rossi,
    In account Group Creation once check box is there, you need to tick that check box. then only it becomes one time vendor account group, it means that one time vendors are account group specific.
    Please award the point if it is help full.
    Regards,
    Sam.

  • How to access the e-mails which are stored in different folders via Mac

    Hi guys, I am new to Mac. My problem is about the setting of Mac Mail.
    There are 8 folders with my hotmail account in order to automatically sort e-mail into folders. I only can get the e-mails of inbox folder via Mac Mail software. I am wondering how to access the other e-mails which are stored in other folders.
    Thanks a lot!

    I don't think that things have changed going from 10.5 Mail to 10.6 Mail in this regard (I need to log on to my laptop more often). So, assuming that my premise is correct, in the left hand column of the mail window, underneath your inbox, drafts, sent, trash, and junk mailboxes, there should be the descriptive name of your mail account, written in gray capital letters, with a gray triangle to the left of that name. If the gray triangle is pointing to the right, click on it so that it points downward. That will expand the account view of mailboxes on the server. You should be able to see all of the other folders.

  • How can I get INSTID_B for the documents which are stored using Store Business Document functionality

    Dear experts,
    I had activated the functionality of Store Business document and successfully stored documents in external server.
    My client have a custom function module which is used to send emails.In that FM they used SO_DOCUMENT_READ_API1, SO_DOCUMENT_SEND_API1 function modules.They passed Instance Ident(SRGBTBREL->INSTID_B)(eg: FOL33000000000004EXT39000000000026) as export parameter to the FM 'SO_DOCUMENT_READ_API1' and get the attachment details and content.
    Here my problem is I do not have entries in the table SRGBTBREL for the documents which are stored using the Store Business Document functionality and without INSTID_B I am unable to use the FM 'SO_DOCUMENT_READ_API1' to get the document details and content. Please help me to find INSTID_B for documents which are stored using Store Business Document functionality or please let me know if there is any other way to use FM 'SO_DOCUMENT_READ_API1' for documents which are stored using Store Business Document.
    Thanks in advance.
    Regards,
    Kiran

    Hi Kiran,
    You can use the following method to get the information. For example if you want to get BO documents for a customer
    CALL METHOD cl_binary_relation=>read_links
       EXPORTING
         is_object           = ls_lpor
         it_relation_options = lt_relat
       IMPORTING
         et_links            = lt_links.
    then fill  ls_por-instid with a customer number (KUNNR), ls_por-typeid = 'KNA1' and ls_por-catid = 'BO'.
    Table  lt_relat should contain a line option  for each document type (for example 'I' 'EQ' 'NOTE', 'I' EQ 'ATTA', 'I' EQ 'URL', ...
    In table lt_links you will get your information.
    Maybe some other methods of class CL_BINARY_RELATION may also solve your issue.
    Regards,
    Klaus

  • Which table are Demand Management data (MD61) are stored?

    Hello guys.
    I need to know in which table demand management data from (MD61, 62 and 63) are stored?
    Also I need to know if there is some tips/rules to prepare a load from a file to come from Excel spreadsheet?
    Is there any BADI or BAPI to load these information directly into the table?
    Just for information: My current client doesn't use SAP yet. It's being planned to make the implementation in the middle of the next year...besides they use SAP in other plants around the world...
    The main idea is to use MRP from SAP to get the suggestion for purchase requisitions and also planned orders and proceed the production and purchase activities in the legacy....
    Please give me some instructions.
    Thanks in advance.
    Harlen Pinheiro
    SAP PP
    Brazil

    Hello Harlen
    This information is stored on tables PBED and PBIM.
    You can use BAPI BAPI_REQUIREMENTS_CREATE to load data to demand management.
    Please also take a look on the following document before opening this kind of thread:
    Landing page for new users in SAP PP - ERP Manufacturing - Production Planning
    BR
    Caetano

  • Table in which deleted operations are stored.

    Hi,
         We are writing a report and for that i need the value of work hrs , so i would like to know in which table deleted operations of Maintenance order are stored ....
    regrds
    pm

    Hi,
    All the operations time values are found in AFVV, this includes the deleted operations. Also read AFVC for operation number, etc. The key to both these tables is AUFPL field (available in AFKO via order number).
    To decide if a particular AFVV record is deleted or not it is necessary to look at the JEST table. JEST can be accessed via Object Number, this has the format OV + AUFPL + APLZL. If the entry with status I0013 is active (no inactive flag) then this operation is deleted.
    -Paul

  • In Which Table Program codes are Stored

    Hi Gurus,
    I would like to know in which table the Program/Report Codes are stored.
    I have read the code for a Particular Program and I have to execute dynamically based of conditions.
    Please, Could anyone throw some lights....
    Regards,
    Anbalagan.V

    Hi!
    You can read source code with 'read report' and you can call programs with 'submit report'. Have a look at the documentation of the ABAP statements for details of the syntax.
    Regards,
    Christian

Maybe you are looking for

  • Aperture vs. iPhoto library size

    I imported my 41GB iPhoto Library into Aperture 3. The resulting Aperture Library is 53GB. Any idea why such an difference? Thanks.

  • Digital Signature by ABAP-Means

    Hello everybody, I'm trying to write an interface from our SAP-System (640) to an external XML-gateway. The external gateway requires SSL-communication via HTTP. I stored the necessary certificate successfully in STRUST. My problem is now, that the e

  • Advantages to ADE 3??

    Are there any advantages to installing ADE 3 for the user?  I am currently using ADE 1.72 as ADE 2 wouldn't install on an older AMD machine.

  • Setting default value using pl/sql

    I am having trouble writing the correct syntax for either a pl/sql expression or function on the default value section for a checkbox item. I share the same form for showing data in edit mode and creating new records. When the instance is a new recor

  • How to type the symbol ^?

    How to type the symbol ^ on a MB Pro 13' AZERTY keyboard ? Thanks.