Delta Specific Field for LTAP

Hi guys,
    I tried using Field EDATU – Date of Pick Confirmation (First Step) as Delta - Specific Field for one of my View Datasource on Table LTAP.
    However no DELTA's recieved for the past one month
    Can someone suggest another field in table LTAP that I can use.
    Thanks

Hi Chris
I have the same issue and have not found a suitable field. Now I am doing a full load with a routine selection on a combination of QDATU and EDATU into an DSO and have a delta from the DSO to the cube. If you get sorted with teh delta, please post the solution...
Cheers
L.

Similar Messages

  • Delta-Specific Field for Generic DataSource

    Hi,
    I have defined a Generic DataSource for Transaction data on R/3-Side.
    This DataSource is based on View/Table EKKO (Purchasing Document Header) for some specific customer requirements. Delta-Specific Field is AEDAT (Calend. Day). Safety Interval Upper Limit is set 1 Cal. Days. No Safety Interval Lower Limit has been defined. "New Status for Changed Records" has been marked.
    When we see this DataSource in Extractor Checker (RSA3), this data source
    Extracted all delta data where AEDAT is not blank.
    When I see the content of table EKKO, I can find few records where AEDAT is blank.
    These records are missing in Extractor Checker.
    How I can solve this problem? Which delta-specific field can be used in
    this generic Datasource? Should I define an additional Generic DataSource with
    Delta-Specific Field BEDAT (as BEDAT is filled when AEDAT is blank in table EKKO)?
    Thanks for the answer.

    Delta based  on calday wont pick all the records  which are recently posted and you can not run the delta more than one time in a day ,end of the day only you can run the delta.
    Set the delta as Tme Stamp and specify the Upper  limit to 5 minuts.
    We can run the delta no. times and pick the documents posted in short interval of time.
    With Regards,
    Kishore.

  • IMPORTANCE OF DELTA SPECIFIC FIELD

    respected all
    WHAT IS THE SIGNIFICANCE OF THE FIELD"Field Nm" in the delta specific field in rso2. is this the key field for running the delta??
    pls give me detaild answer as my delta is not working
    thanks
    abhay

    Dear Mahadaya,
    Here u are requesting for Generic delta
    Case: the deleta filed
    For example u are created one docuemnt based on created date u are getting data,if u r chenged that document when u r extracting the changed values will not be updated
    if you go with (AEDAT) means document changed date automatically along with delts based on the the document change date which ever the changes are there for that document it will be reflectd
      I think you under stood the concept.
    It is purely based on the datasource andfunctionality which is the latest character will be updated with taht datasource that can be used.in delta update reference field.
    Thanks &Regards,
    Sathish

  • Dillema in selecting Delta Specific Field

    Hi Gurus,
    I have stuck in a situation and would heavily appreciate your help.
    I have created a Generic datasource ZAFRU which extracting data from AFRU table.
    I used Last Changed On (LAEDA) as delta specific field but later i found it is not working because more than 50% of records dont have last changed on date (LAEDA) in it.
    So, later i used Posting Date (BUDAT) as delta specific field but still facing a problem. Like, suppose there is a service order which is posted three months ago but changed 5 days ago so delta will not capture the changed record as posting date (BUDAT) is not changed but only Last Changed On date (LAEDA) is changed.
    In this way i am not able to use either fields as delta specific fields.
    Also, can't use timestamp for delta specific field as it is not present in AFRU table and Document number also as it is blank for all the records.
    Please suggest what should i use in delta specific field so that i should not miss any record in BI.
    Thanks,
    Saurabh

    Hi Saurabh,
    First enable selections for ERSDA,LAEDA,BUDAT for the datasource on this table.  Create three infopackages and write below routines on ERSDA,LAEDA and use these to the DSO. Even they are repeated it won't be a problem.
    Once you write below code for an infopackage on say field ERSDA so what all the confirmations created from today to past 7 days will be coming into DSO.
    Similarly for  LAEDA and BUDAT.... also we create another two infopackages and load similarly every time to DSO which makes that no record to be missed.
    data: l_idx like sy-tabix,
          l_sdate type SCAL-DATE,
          l_edate type SCAL-DATE.
    read table l_t_range with key
         fieldname = 'ERSDA'.
       l_edate = sy-datum.
       l_sdate = l_edate - '7'.
            l_t_range-low = l_sdate.
            l_t_range-high = l_edate.
            l_t_range-sign = 'I'.
            l_t_range-option = 'BT'.
    l_idx = sy-tabix.
    modify l_t_range index l_idx.
    p_subrc = 0.
    Regards
    vamsi
    Edited by: vamsi talluri on Jul 13, 2011 7:43 PM

  • Version Specific fields For Product

    Hi SCM experts,
    I have a requirement where in i need maintain Product description as a version specific field . But as a standard , it is not. What i actually need is, I should be able to maintain different descriptions for different versions of a Product.
    Is this possible through any customization or any user exits exist for the same. Please do let me know if this is possible or not.
    Thanks a lot for all your help.
    Regards,
    Deepthi lakshmi.A.

    Hi
    1.First create a Change Note number using T code CC01,without release key and give the Change note number Description(Different Version for a single product) and give the valid from date as System's date,change no status as 1,and press enter and put tick marks in the first nd third column against material row.Press Save
    2.Use the above created Change note number and do some changes for a material,i.e include some revision level.in Basic Data 1screen of the material.
    3.You cannot use the same change note number for more than one revision level.For Eg.Using a change no 500000000112 you have inluded revision level A,and saved it.Now again using the same Change note no u cant include revision level B for the same material.
    4.In this way you be in need of different change note numbers to include new revison levels for the same material,and u can give the description while creating the change note number.
    Please give me a feedback whether it works properly or not.
    I hope this will help u.If useful plz reward your points.
    If i'm wrong experts please correct me.
    Regards
    Karthik
    Message was edited by:
            Karthikraj
    Message was edited by:
            Karthikraj

  • Issue with creation of a specific field for a java program.

    Hey everyone,
    This is homework which is end of chapter "challenges" to practice what we've learnt.
    The chapter covers inheritance (super class and all things related)
    I'm having quite an annoying issue with the very beginning of the instructions, where it tells me to make the following fields:
    - Employee name
    - Employee number in the format XXX-L , where each X is a digit within the range 0-9 and the L is a letter within the range A-M.
    - Hire date
    This is what I wrote for code so far
    private String name;
    //private WTF
    private String date;I really have no idea what to do for the second field, how to even constrain integers and letters in the same field with a rule for number range and letter range, and that for each character independently, for what I understand.
    Any advice with this? It's blocking me from continuing -_-, because I can't make accessors and mutators and constructors, etc, if i'm still unsure of how the fields unfold.
    Thanks in advance.

    You can create a HireDate class.
    public class HireDate{
       private final int day;
       private final String month;
       private final int year;
       public HireDate(int day, String month, int year){
          this.day = day;
          this.month = month;
          this.year = year;
    }In the HireDate Constructor you could put if statements to ensure that only correct information is present. The fields are final because the hire date will not change. Override the toString() method so that when you print it out it will be in the correct format. Create some getter methods to get the private fields.
    Then in your other class just do this
    HireDate hired = new HireDate(10, July, 1991);Now you have an object that stores all 3 fields for you. You can use the object as you like and when it prints it will be in the format you want.
    Or you could just make hireDate a String variable. That is what I always did and I never lost marks for it. The reason I suggest this way is because you mentioned rules and constraints.

  • Dont have a delta specific field

    Experts,
    We dont have a single char to mention in "Field Nm".We are using a table for Generic Datasource.Can we create a new field in the table and use it in "Filed Nm".
    If you have any suggestion.Plz tell me the navigation steps also or provide me the doc.
    Points will be assigned.

    Dear K V,
    Kindly mention the BI version on which you are currently working.
    Timestamp or date in delta is meant towards the delta management and need not relevant for Business reporting. delta related date or time are basically to check latency of data.  I guess here yoyu are getting confused a little bit.
    Reporting relevant dates are not usually a basis for delta management. Let me put an example in case of purchasing, there used to be document date. posting date, schedule delivery dates etc, all these dates are also stored normally in a single database table. These dates are either a current dates or historical or in future based on their business pespective, so used for business reporting. This information is stored in the database at different field in the record. This record has its metadata, which mentions information about himself, this information consists of created by, created on, changed by, changed on.
    My dear friend, Out of this metadata, date residing in changed on is relevant for us. so please check in your z table about where this record changed on date is populated, and use for your delta build up.
    So now search for the information I told to you.
    Despite this, if u did not get any date directly then pick up date part from timestamp into the variable (type date) and then make this field as a basis for your delta.
    hope this will show u path to get it done.

  • How to find Delta Field for 0MATERIAL?

    Hi,
    In general when we create Generic Data Sources with Delta Updating we give a Delta specific field name,like that how to find which is the field that is used for 0MATERIAL OR 0MAT_SALES,i am not able to find this information using RSA7 transaction.Suggestions to this would be helpful.
    Thanks in advance.
    Monica.

    Hi Monica,
    You can find the field that tracks the changes to the master data lets say some time stamp or changed date..etc.
    Thanks,
    Krish

  • Customer specific field.........

    hi,
    1- How can i  create customer specific fields for PROJ DEF. & WBS.
    2- how it will come on the PS WBS or Proj. Def. Screen

    Hi,
    You can create Customer Specifc field through Enhancement of Configuration. You need to go to transaction CMOD & define the enhancement. ABAPer will be required for this purpose.
    Hope this will help you.
    Regards,
    Rakesh Pradhan

  • How to attach questionnaire to initiative/item against a specific field?

    Hi All,
    How to attach a questionnaire for a specific field for an intiative/item in contxt to xRPM
    Regards
    srikanth

    Hi,
      If you have completed the activity 'Define Questionnaires' under SAP xRPM -> Global Customizing -> Process and Service Settings, you should have the questionnaires displayed in the portal. If not, do the following.
    1) Check that you have attached the questionnaire for the correct object type in the 'Define Questionnaires' activity.
    2) In the previous activity, 'Define Services', check that the questionnaire service is linked to an object type correctly.
      If these 2 activities have the correct configuration, then you should be able to see the questionnaires in the drop down.
    Best Regards,
    Prashanth

  • Specific field

    Hi,
    How to know which tables from a database contain a specific field (for example ID).
    Thank you,
    Mihaela

    The docs Sybrand referred to is the [url http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm]Oracle® Database Reference guide - and I echo his sentiments. You need to make the manuals your best friend.

  • Define read-only authorization for specific field(s) on a form for 11.5.9

    Dear all,
    Can you pls let me know how is it possible to define read-only authorization access for specific field(s) per responsibility / user on a form in 11.5.9?
    For example I want to protect the item master file by assigning for example to users with responsibility buyer authorization to modify the buyer information but to have read-only only authorization on other sensitive fields such as make/buy flag, expense accounts, etc
    Through UI Modeller I have only managed to make specific fields on specific forms invisible, or whole tabs invisible, to specific responsibilities but this does not cover my needs as I want them to be able to view the data of the fields but to not be able to update them

    Arun,
    Almost but not quite.. The example you've given has the person VO at the top level which includes all the id's (City, State etc). My use case is slightly different.
    query 1
         select org_id, OrgName from x;
    query 2
         select emp_id, emp_name from y where org_id = x.org_id
    query 3
         multi-table join (approx 9 tables) to retrieve depts associated to employee
         where org_id = x.org_id
         and emp_id = y.emp_id
    Rather than using LOV's would it be better to create VO's and pass in the bind parameters at run time?

  • JSF Table StyleClass issue for a specific Field inside the Table

    Hi There,
    Am having an issue of dynamically setting the styleClass for a specific field inside a DataTable. Here is how the JSF code is ..
    <h:column>
    <h:panelGrid id="column4" columns="1" cellpadding="0" cellspacing="0">
    <h:inputText id="numberOfApps" value="#{row.submitNumber}" styleClass="#{row.customStyleClass}" maxlength="6" converter="MyNumberConverter" />
    </h:panelGrid>
    </h:column>
    This Table has a specific column which has a input Text Box where user enter's data. This data will be validated in the bean where in after the validation if its exceeding a limit we should throw an error message and also highlight the field with a specific styleClass.
    I am setting the StyleClass dynamically based on the User Input, so that I can display a highlited Error Field on the screen. Strangely enough, styleclass is getting set as expected for the first submit but doesnt show any styles for further submits. Even the existing style is getting removed from the second submit onwards. I am setting this "customStleClass" dynamic parameter as a Bean Property. Am sure these values are properly set coz to make sure I have put an h:output tag inside that table to display the customStyleClass values and they are getting set as expected but I see blank value for the class="" in the source of the Page.
    Any help would be appreciated.
    Thanks
    Edited by: Lalith on Jan 14, 2008 10:23 AM

    One option is you find the data element of that field GUID.
    Now go to SE11 transaction and in data type put that data element and press where used list. In that select tables.
    This will give you a list of tables where that field is used.
    But again if there are lots of them it will be difficult to find.
    The only option in that case is debug the extractor and find out.

  • How can I know the delta field for CO-PA datasource?

    Hi,folks:
        How can I know which is the field assigned as the delta field for CO-PA datasource,as is noticed in the note that after PI2004 the logic has been turned to general datasource,but I can't find the datasource through RSO2.
        Full points will be given to u.
    Martin Xie

    Dear Martin,
    The CO-PA DataSources generated use a separate time stamp method for the delta procedure. This procedure means that client-independent DataSources in CO-PA are normally restricted to the clients in which they were generated.
    See this link...
    http://help.sap.com/saphelp_erp2005vp/helpdata/en/97/6f4d40cef71059e10000000a155106/frameset.htm
    Also check ROOSOURCE in R3, asmentioned by Dinesh.
    Hope it helps.

  • Searching for values in a specific field using REST Search

    To conduct a Search using REST...you only have the querytext parameter which searches all fields. How can I search within a specific field using REST?
    Brian

    You can use the following code as an example to post a query. The example shows how to search against the title managed property. It also shows you how to bring back certain properties for viewing and refiners. You can also do the same with a GET.
    function executeRESTSearch() {
    var appweburl = _spPageContextInfo.webAbsoluteUrl;
    $.ajax(
    'url': appweburl + "/_api/search/postquery",
    'method': 'POST',
    'data': JSON.stringify({
    'request': {
    '__metadata': {
    'type': 'Microsoft.Office.Server.Search.REST.SearchRequest'
    'Querytext': 'title:whatever',
    'Refiners': 'title,created',
    'SelectProperties': { 'results': ['created','path'] },
    'SortList': {
    'results': [{
    '__metadata': {
    'type': 'Microsoft.SharePoint.Client.Search.Query.Sort'
    'Direction': 1,
    'Property': 'created'
    'headers': {
    'accept': 'application/json;odata=verbose',
    'content-type': 'application/json;odata=verbose',
    'X-RequestDigest': $('#__REQUESTDIGEST').val()
    'success': function (data) {
    var d = data.d.postquery.PrimaryQueryResult.RefinementResults.Refiners.results[0].Entries.results[0].RefinementValue;
    'error': function (err) {
    alert(JSON.stringify(err));
    http://msdn.microsoft.com/en-us/library/office/jj163876(v=office.15).aspx
    Blog | SharePoint Field Notes Dev Tools |
    SPFastDeploy | SPRemoteAPIExplorer

Maybe you are looking for

  • Error while importing ESS.sca file in Development tab.

    Hi, we are importing the ESS.sca file development tab. we are getting the below error. Fatal   Exception:com.sap.cms.tcs.interfaces.exceptions.TCSCommunicationException: communication error: VcmFailureException received: HTTP protocol error [cause: P

  • How to start with netweaver administration

    Hello i am new to sap netweaver administration,  can anyone advise me how to kick start with sap netweaver administration.  My background is webdynpro java. Nageen

  • How to create box in the sap script.

    I have a address like SAP America, Pala alto,Ca USA I want to put the above address in the box in sap scritp. How to do it . Please let me know. Any help would be highly appreciated. Thanks Edited by: mark_yellow mark on Jul 8, 2008 1:54 AM

  • Cisco 4682DBV username and password?

    Hello dear friends, i would like to have access to my D3 CISCO 4682DBV unit's setup, but i don't know username and password when i try to connect to it via 192.168.100.1. I tried leaving fields blank, admin:admin, blank:admin, admin:blank, admin:w240

  • Can i downgrade my Iphone 4 to ios 6?

    After i upgrade my iphone from ios 6 to 7 my phone became useless,what is solution?