Non existing value EC for M_BEST_BSA / BSART used in rule set

Hello,
while implementing the 2010 rule set updates into our system, we realized that there is a value used that is not existing in the system.
It is for object M_BEST_BSA, field BSART. The value is EC.
In the rule update document from Q2 2010, there is the following comment:
5. PR02 u2013 Maintain Purchase Order u2013 Upon review of this function with the rules mini-council, the decision was made to remove document type from the rules.  Previously, we delivered document types EC, FO and NB with our rules.  However, the majority of customers create custom document types for purchasing.  Many customers did not customize the rules, which results in only those users that had the standard EC, FO and NB document types being reported as having a risk.  Users who had the custom document types would not be reported, which results in false negative reporting.  Therefore, the decision was made to remove document type from our delivered rules.  This will force each customer to review their document types and edit this function to include all relevant document types so all users who have a risk are shown.
However the value is still enabled in function PR04, even though it is not a valid value for field BSART. It is not existin in table T161, which holds the PO document types. It does not seem to exist since at least release 4.6C
The value is inherited from the transactions ME28 and ME29N
Does anyone know what it is about and why the value still is considered a standard value?
I know this does not give me false conflicts, as the BSART values are used in condition OR.
Why is the value not just removed, if it is not a valid value at all?
edit:
Sorry, forgot to mention, we use CC4.0 in an ECC6.0 system
end of edit:
Regards,
Thomas Schaeflein
IBM
Edited by: Thomas Schaeflein on Jan 26, 2011 4:14 PM

Start by saying bump.
I've still no word from Adobe if they are doing anything with
this problem. Any one had any replys from Adobe on it? Any one
found a work around with recoding queries?

Similar Messages

  • Application hangs for non existing value

    Hi,
    At the DB level I tried to query non existing value from the table, query came out with "no rows selected" . But when I try to do the same from front end, application hangs! I just checked in the statspack report it shows like query is taking more cpu time to execute. what could be the reason for this?
    when I join the v$session,v$sql to get the currently running query on database, it shows the query which try to execute from the application as active.
    why it is hanging in application and why not in DB?
    can any one brief me on this regard? why does application hangs for non exsting value?
    With Regards
    Boo

    Hi,
    At the DB level I tried to query non existing value from the table, query came out with "no rows selected" . But when I try to do the same from front end, application hangs! I just checked in the statspack report it shows like query is taking more cpu time to execute. what could be the reason for this?
    when I join the v$session,v$sql to get the currently running query on database, it shows the query which try to execute from the application as active.
    why it is hanging in application and why not in DB?
    can any one brief me on this regard? why does application hangs for non exsting value?
    With Regards
    Boo

  • How to get the Benefits Rate multiplier value in HCM extract ? used Extract rule type Fastfomula, but returns null.

    how to get the Benefits Rate multiplier value in HCM extract ? used Extract rule type Fastfomula, but returns null.
    Formula:
    DEFAULT FOR BEN_ABR_NAME IS 'NA'
    DEFAULT FOR l_rate_multiplier IS 'X'
    L_BG_ID = GET_CONTEXT(BUSINESS_GROUP_ID, 1)
    L_EFF_DATE = GET_CONTEXT(EFFECTIVE_DATE, to_date('1951/01/01 00:00:00'))
    L_ABRT_ID = GET_CONTEXT(ACTY_BASE_RT_ID, 9999)
    CHANGE_CONTEXTS(EFFECTIVE_DATE = L_EFF_DATE, BUSINESS_GROUP_ID = L_BG_ID, ACTY_BASE_RT_ID = L_ABRT_ID )
    l_rate_multiplier = BEN_ABR_NAME
    RETURN l_rate_multiplier

    I used DBI - BEN_ABR_NAME.
    What is back end query ? can we use query to extract the value in Extracts ?

  • SQL Challenge - Returning count=0 for non-existing values

    Hello there,
    I have a question about our requirement and an SQL query. I have posted this to some email groups but got no answer yet.
    Here is the test case:
    SQL> conn ...
    Connected.
    -- create the pattern table and populate
    SQL> create table pattern(id number, keydescription varchar2(50));
    Table created.
    SQL> insert into pattern values(1,'hata1');
    1 row created.
    SQL> insert into pattern values(2,'hata2');
    1 row created.
    SQL> insert into pattern values(3,'hata3');
    1 row created.
    SQL> insert into pattern values(4,'hata4');
    1 row created.
    SQL> insert into pattern values(5,'hata5');
    1 row created.
    SQL> select * from pattern;
    ID KEYDESCRIPTION
    1 hata1
    2 hata2
    3 hata3
    4 hata4
    5 hata5
    SQL> commit;
    Commit complete.
    -- create the messagetrack and populate
    SQL> create table messagetrack(pattern_id number, realdate date);
    Table created.
    SQL> insert into messagetrack values(1,to_date('26/08/2007 13:00:00','dd/mm/yyyy hh24:MI:ss'));
    1 row created.
    SQL> insert into messagetrack values(1,to_date('26/08/2007 13:05:00','dd/mm/yyyy hh24:MI:ss'));
    1 row created.
    SQL> insert into messagetrack values(2,to_date('26/08/2007 13:15:00','dd/mm/yyyy hh24:MI:ss'));
    1 row created.
    SQL> insert into messagetrack values(3,to_date('26/08/2007 14:15:00','dd/mm/yyyy hh24:MI:ss'));
    1 row created.
    SQL> insert into messagetrack values(4,to_date('26/08/2007 15:15:00','dd/mm/yyyy hh24:MI:ss'));
    1 row created.
    SQL> insert into messagetrack values(1,to_date('26/08/2007 15:15:00','dd/mm/yyyy hh24:MI:ss'));
    1 row created.
    SQL> commit;
    Commit complete.
    SQL> select * from messagetrack;
    PATTERN_ID REALDATE
    1 26-AUG-07
    1 26-AUG-07
    2 26-AUG-07
    3 26-AUG-07
    4 26-AUG-07
    1 26-AUG-07
    6 rows selected.
    Now, we have this simple query:
    SQL> select p.KeyDescription as rptBase , to_char( mt.realdate,'dd') as P1 , to_char(mt.realdate,'HH24') as P2, count(*) as countX
    2 from messageTrack mt, Pattern p
    3 Where mt.realDate >= to_date('26/08/2007 13:00:00','dd/MM/yyyy hh24:MI:ss')
    4 and mt.realDate <= to_date('27/08/2007 20:00:00','dd/MM/yyyy hh24:MI:ss')
    5 and mt.pattern_id=p.id
    6 group by p.KeyDescription, to_char(mt.realdate,'dd'), to_char( mt.realdate,'HH24')
    7 order by p.KeyDescription, to_char(mt.realdate,'dd'), to_char(mt.realdate,'HH24');
    RPTBASE P1 P2 COUNTX
    hata1 26 13 2
    hata1 26 15 1
    hata2 26 13 1
    hata3 26 14 1
    hata4 26 15 1
    But the result we need should contain the pattern values(hata1, hata2, hata3 and hata4) for each time interval(hour) although there are might be no records of some patterns for some hours.
    The result for our test case should look like this:
    RPTBASE P1 P2 COUNTX
    hata1 26 13 2
    hata1 26 14 0
    hata1 26 15 0
    hata2 26 13 1
    hata2 26 14 0
    hata2 26 15 0
    hata3 26 13 0
    hata3 26 14 1
    hata3 26 15 0
    hata4 26 13 0
    hata4 26 14 0
    hata4 26 15 1
    Our version is 10.2.0.2
    On my discussions some said model clause may be used, but i don't know model clause much and can't imagine how to use.
    You can download the test case code above to reproduce from:
    http://www.bhatipoglu.com/files/query1.txt
    You can see the output above more clearly(monospace font) on:
    http://www.bhatipoglu.com/files/query1_output.txt
    Additionally, I want to state that, in the resulting table, we don't want all the patterns(hata1, hata2, hata3, hata4 and hata5). We just want the ones that exists on messageTrack table(hata1, hata2, hata3 and hata4) as you see on the result.
    Thanks in advance.

    Here is an attempt with the Model Clause:
    Edit: I should mention that I created a view out of your original query.
    SELECT rptbase
          ,day
          ,hour
          ,countx
    FROM demoV
      MODEL
        DIMENSION BY (rptbase, day, hour)
        MEASURES (countx)
          RULES(countx[
                        FOR rptbase IN (SELECT rptbase
                                        FROM demoV)
                        ,FOR day IN   (SELECT day
                                        FROM demoV)
                        ,FOR hour FROM 13 to 15 INCREMENT 1
                        ] =
                        NVL(countx[CV(rptbase),CV(day),CV(hour)],0)
                order by 1,2,3;Which produces the following
    RPTBASE                                    DAY                 HOUR               COUNTX                
    hata1                                              26                     13                     2                     
    hata1                                              26                     14                     0                     
    hata1                                              26                     15                     1                     
    hata2                                              26                     13                     1                     
    hata2                                              26                     14                     0                     
    hata2                                              26                     15                     0                     
    hata3                                              26                     13                     0                     
    hata3                                              26                     14                     1                     
    hata3                                              26                     15                     0                     
    hata4                                              26                     13                     0                     
    hata4                                              26                     14                     0                     
    hata4                                              26                     15                     1               Note my Hata1 26 15 has a countx of 1 (I believe that this is correct and that your sample result is incorrect, if this is not the case, please explain why it should be 0)
    Message was edited by:
    JS1

  • How to output only non-existing values

    If I have a table say Employee and has values for EmployeeNum as 1111, 2222, 3333 and I have a query like this. SELECT EMPLOYEENUM FROM EMPLOYEE WHERE EMPLOYEENUM IN (4444, 66666, 1111)
    Now, this will only return 1111. But, I want to find out values that are not in the table. So, I want to output 4444, 66666.
    How can this be done. Please suggest?

    This is called anti join...
    SELECT *
       FROM TABLE(sys.odcivarchar2list(4444, 66666, 1111)) t
      WHERE NOT EXISTS
      ( SELECT 1 FROM EMPLOYEE d WHERE d.EMPLOYEENUM = t.column_value
      )Ravi Kumar

  • Does it exist a manual for learning to use Oracle Forms?

    What I'm looking for is a manual or tutorial for using Oracle Forms.
    Looking at Oracle Documentation link http://www.oracle.com/technetwork/developer-tools/forms/documentation/10g-forms-091309.html I haven't found an user or developer guide.
    On the web I've found something like this https://sites.google.com/site/craigsoraclestuff/oracle-forms---how-to-s but I'd like to know whether it exists something official by Oracle explaining like creating a form and things like that.
    Thanks in advance!

    If you want Oracle official material for learning any product, you will need to refer to Oracle University:
    http://education.oracle.com/pls/web_prod-plq-dad/ou_product_category.getFamilyPage?p_family_id=33
    That said, in most cases, whether you have a "Where do I find..." or "How to...." question, your answers are most often one search away. For example, a simple search in this Forum and you will find that your question has been asked and answered countless times:
    https://forums.oracle.com/forums/search.jspa?q=learn+and+forms&objID=f82&dateRange=lastyear&rankBy=10001
    Other search engines will offer similar third party solutions. Try google.com, yahoo.com, ask.com, and countless others.

  • Non-Existent Customer Service for English Speakers in China

    Well folks I need some help.
    I am a native English speaker living in Southern China.  We do not have an Apple Store in our city.  As a result we have to go to an authorized service center.  So my story is real long and let me give you the short version.  My iphone 5 has a broken screen and a recall for the broken power button.  Its currently been sitting at the service center for four days. I have called the Applecare China number and have been selecting English service.  This bounces me to either Singapore or Australia. So a senior customer relations advisor granted an exception for the cracked glass. Problem is the service center has no one that reads a lick of English.  This to me is fine being that it is a small city in China.  So the situation is that the service center does not know how to process my phone even though there is an exception for the screen and a recall for the power button.  I have been calling once a day to the Applecare number asking for an update.  Each day I get transferred to the senior customer relations advisor that promise to research the situation and call me back with an update or resolution.  Sadly I am on day four and after speaking to a total of 10 regular agents and 6 senior advisors and not a single person has called me back nor has my phone been repaired.  I am growing increasingly frustrated at the lack of movement on the repair of my phone.  I have gone into the service center 5 times and they are waiting for instructions from Applecare China.  The first time I went in they wanted all my original receipts and passport.  As an American that has taken defective items back to Apples Stores around America I have never met this level of scrutiny.  The phone clearly has a serial number and EMEI number.  So I am confused why China consumers are subjected to this scrutiny. There seems to be a major communication gap between the Australia/Singapore and China operations. Supposedly my case is filled with English and Chinese comments.  Sadly there has been no one that can read both English and Chinese looking at this case file.  As soon as I select English I am bounced out of the China Applecare world.
    After a total of 6 hours on the phone I am no closer to getting my phone back.  Does anyone have any suggestions on how to approach this?  I have the emails of 3 senior customer relations of people that I have been dealing with. Sadly none of them seem willing or able to assist me?

    tfong010veryunhappy wrote:
    duh. I thought it was pretty evident in my previous posting. I apologize as I was under the impression that most of the users on this board are native English speakers.
    Yes, a large number are. However, that doesn't change the fact that you don't appear to have asked a technical support question that can be answered by fellow users.
    I will break it down in more simple terms. How do I get my phone back from Apple?
    Your post indicates that it is not Apple that has your phone but rather an Authorized Service Center. What happens when you ask them to give it back to you? Are they refusing to return it to you?

  • 11.1.2.1 - Overwrite Existing Values - Not Working

    Hi,
    Client has ASO Essbase application. They have duplicate rows of data apparently. I have the 'Overwrite existing values' box checked on the 'Data Load Settings'. I also select the 'Overwrite Existing Values' selection in the 'Data Load' window. Not sure why this is even there as it seems new or is a ASO specific functionality or something. Anyways, I created a simple file with two duplicate rows. When I load it using the rule, it doubles everything up. Then I load just a single row file with same rule and it successfully overwrites the values and loads properly.
    Is there a know issue with duplicate rows within the same file that causes it to double the values during the load? Or am I fundamentally missing something on how to correctly 'Overwrite Existing Values'?

    Found below out there in the documentation but trying to decipher it. If I understand the 'Buffer' will combine like rows withing a datasource automatically? But I can't figure out if that's in different source files only or within the same file?'
    Rules File Differences for Aggregate Storage Data Loads
    Rules file specifications for loading values to aggregate storage databases reflect the aggregate
    storage data load process.
    For block storage data loads, through the rules file, you choose for each data source whether to
    overwrite existing values, add values in the data source to existing values, or subtract them from
    existing values.
    For aggregate storage data loads using the aggregate storage data load buffer, you make this
    choice for all data load sources that are gathered into the data load buffer before they are loaded to the database.
    To use a rules file that was defined for a block storage outline with an aggregate storage outline, first associate the rules file with the aggregate storage outline. See “Associating an Outline with an Editor” in the Oracle Essbase Administration Services Online Help.
    For aggregate storage databases only:
    •     If you are loading data and values exist in the database, select an option from the Data load values drop-down list for overwriting existing values, adding to existing values, subtracting from existing values, or replacing the contents of the database.
    •     Select whether to ignore missing values and zero values in the data source.
    •     Select whether to load the data as a new slice in the database.

  • Non-Cumulative value Infoset will not work

    Why doesn't an Infoset work with non-cumaltive values? Can I just use a multiprovider to get around this issue?

    Hi,
       Non cumulative values are not stored anywhere in the database. These are just definitions which are calculated at runtime. Consider the Stock cube. It has 2 key figures. Received stock and issued stock. It also has a Non cumulative Kf total stock which is defined as inflow : Received stock and outflow : issued stock.
    At Query runtime, the total stock is calculated as inflow - outflow. No data is physically stored in your database.
    Since an infoset joins values stored in a database, you will not be able to use it for Non cumulative values.
    What you can do is find your Non cumulative KF definition, and map the input fields for this KF. You can then try and use these fields to calculate the value as a formula.
    Hope this helps.
    Regards.

  • Icloud stucked on verifying of non-existing account

    HI
    I am pretty amazed how can icloud be stucked like this.
    My nephew, 16 years girl, by mistake have entered wrong non-existing
    email adress for icloud-apple id.
    instead ......@gmail, she entered [email protected]
    ANd icloud some how have accepted and start to ask all the time
    PAssword and verifying account with pop up window on every 3 second, not letimg you
    TO work anything else and so annoying.
    WE have try to erase account in icloud settings, but find my iphone was already on
    and was keep asking password for not existing and not verifyed account.
    For the story, to be more stucked, we have made Erase all settings and data, but after initial
    start up screen have stucked on asking user and password for non existing account.
    I really dont know how to solve this problem, please help me....

    Sounds like 3 issues you have
    1)You do not want users to check content into accounts which they have named? Can you use only predefined accounts and turn the accounts field into being a select not select and edit?
    2)Account permissions are hierarchical so if you have RWD to account 'documents' then you will have at least those permissions in documents/tim documents/sam documents/<whatever>. Also do you have permissions assigned to 'all accounts'
    3)You do not like the way that accounts performs its hierarchy calculation based on substringing. Too bad I think that is just the way it works. best practice would dictate that root accounts and permissions are not assigned to very commonly occurring patterns unless you want the permission inheritance.

  • Change Account Workflow in CUP - Doesn't pick up existing values for an Acc

    Hi,
    When using the change account option available in the CUP(5.3 SP 7), I expected the system to populate the user details as they exist in the provisioning system once I enter the account details that need a change. We have the 'Search' and 'User Details' Data source configured to the same SAP R/3 system.
    For eg, when requesting for a new account, I've chosen an Employee Type attribute as 'Non-Employee' (SAP delivered request attribute) and entered some values for my custom attributes .
    And when I chose to change the same user account, I notice that the system doesn't pick up the existing values for any of the attributes and render them. For the Employee Type attribute, it shows the default value and for the custom fields, they are shown blank!!!!
    It does seem like the user attribute values from R/3 are being picked up and displayed correctly, but the ones from GRC Database are left out.
    I believe this to be a bug and does anyone experienced  this issue and found a fix????
    Thanks,
    Anil

    Hi Alpesh,
    Thanks for your response.
    This brings up a basic question on the repository for saving user attribs...ie. does all these need to be saved on R/3? Assuming yes depending on our current configuration(We have the 'Search' and 'User Details' Data source configured to the same SAP R/3 system), do we have a standard field for saving the 'Employee Type' attrib in SAP?. I did perform a field mapping of a custom attirb to one of the SAP fields in the user master, and get it saved during user provisioning. But it doesn't pick it up from there when I perform a change account. Seems it's missing that reverse mapping. And I've chosen the 'Field Type' of the custom filed to Text as to enable free text during new account request.
    Hope you may find something more.
    Regards,
    Anil

  • Non existent LOB value

    I'm calling a java class method from PL/SQL that returns a CLOB. I can run the class from jdeveloper IDE and see the XML coming back as CLOB, but when i run it inside ORACLE it gives an error saying "Non-Existent LOB Value".
    Any ideas ...
    TIA - RPG

    Ok, this is a whole different story :)
    You have ran into a bug which will be fixed in the next release
    of the utility coming real soon now.
    olaf iseger (guest) wrote:
    : Hi,
    : Sorry for the misinfromation, of course I meant 8i,
    : 8.1.5.01, I really couldn't have missed the
    : errors when loading java in an 8.0.xx database ;-)
    : But my question still stands however...
    : --Olaf
    : Oracle XML Team wrote:
    : : Hi Olaf,
    : : Java VM made it inside the DB starting with Oracle 8i (i.e.
    : : 8.1.5). When you ran the oraclexmlsqlload.csh script to load
    : the
    : : utility into your 8.0.5 database you must have had errors.
    : : With your version of the DB you can not run the utility
    from
    : : within the db because this calls for support for stored java
    : : procedures. You can on the other hand run the utility as a
    : : client program, either directly accessing it's java api, or
    : using
    : : our command line front end.
    : : Olaf Iseger (guest) wrote:
    : : : Hello,
    : : : I'm experiencing the ORA-22922 : "Non existent LOB value"
    : : : error when executing the test
    : : : "select xmlgen.GetXML(...) from dual".
    : : : Database is 8.0.5.01 on Linux, scott/tiger demo user with
    : : : populated tables
    : : : java version (not sure if the database uses this however)
    : : : jdk117_v3
    : : : Did I miss sth in the installation, or do I have to set
    some
    : : more
    : : : privileges for SCOTT ?
    : : : -- olaf
    : : Oracle Technology Network
    : : http://technet.oracle.com
    Oracle Technology Network
    http://technet.oracle.com
    null

  • Report Builder Wizard and Parameter Creation with values from other data source e.g. data set or views for non-IT users or Business Analysts

    Hi,
    "Report Builder is a report authoring environment for business users who prefer to work in the Microsoft Office environment.
    You work with one report at a time. You can modify a published report directly from a report server. You can quickly build a report by adding items from the Report Part Gallery provided by report designers from your organization." - As mentioned
    on TechNet. 
    I wonder how a non-technical business analyst can use Report Builder 3 to create ad-hoc reports/analysis with list of parameters based on other data sets.
    Do they need to learn TSQL or how to add and link parameter in Report Builder? then How they can add parameter into a report. Not sure what i am missing from whole idea behind Report builder then?
    I have SQL Server 2012 STD and Report Builder 3.0  and want to train non-technical users to create reports as per their need without asking to IT department.
    Everything seems simple and working except parameters with list of values e.g. Sales year List, Sales Month List, Gender etc. etc.
    So how they can configure parameters based on Other data sets?
    Workaround in my mind is to create a report with most of columns and add most frequent parameters based on other data sets and then non-technical user modify that report according to their needs but that way its still restricting users to
    a set of defined reports?
    I want functionality like "Excel Power view parameters" into report builder which is driven from source data and which is only available Excel 2013 onward which most of people don't have yet.
    So how to use Report Builder. Any other thoughts or workaround or guide me the purpose of Report Builder, please let me know. 
    Many thanks and Kind Regards,
    For quick review of new features, try virtual labs: http://msdn.microsoft.com/en-us/aa570323

    Hi Asam,
    If we want to create a parameter depend on another dataset, we can additional create or add the dataset, embedded or shared, that has a query that contains query variables. Then use the option that “Get values from a
    query” to get available values. For more details, please see:http://msdn.microsoft.com/en-us/library/dd283107.aspx
    http://msdn.microsoft.com/en-us/library/dd220464.aspx
    As to the Report Builder features, we can refer to the following articles:http://technet.microsoft.com/en-us/library/hh213578.aspx
    http://technet.microsoft.com/en-us/library/hh965699.aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • My iPhone 5S prompts me for my password to an Apple ID email that no longer exists as an account.  How do I change my Apple ID address without having to change the primary address to a non-existent email account?

    I cannot sign into icloud on my phone because the Apple ID is an email account that has been deactivated and deleted.  How can I change my Apple ID without having to change the primary email address to this non-existent account? If I did so, I wouldn't be able to access the account to receive the verification email. Please help!

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iDevice, then sign back in with the ID you wish to use.  When you do this you may find that the password for your old ID isn't accepted.  If this should happen, and if your old ID is an earlier version of your current ID, you need to temporarily recreate your old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You should not need to verify the old email address.  You can now use your current password to turn off Find My iDevice on your device, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • "initial non-cumulative for non-cumulative values"  is not available in DTP (0AFMM_C02)

    Hi Experts,
    We are working for BI implementation for AFS Industry,
    when we are working on AFS specific inventory cube 0AFMM_C02 , we are facing stock mismatch problem
    for AFS Stock initialization we are using the data source 2LIS_AF_STOCK_INITALIZATION instead of 2LIS_03_BX, this data source is specificly designed for AFS
    when we are extracting the data using 2LIS_AF_STOCK_INITALIZATION for stock initialization and
    2LIS_03_BF data source to load the Moments.
    we compressed cube with Marker update for 2LIS_AF_STOCK_INITALIZATION data load(by deselecting the No marker update check box)
    we compressed cube with No Marker update for 2LIS_03_BF historical data load(by selecting the No marker update check box)
    we compressed cube with Marker update for 2LIS_03_BF Delta data load(by deselecting the No marker update check box)
    Now we are facing stock mistach problem, we found reason for this
    "initial non-cumulative for non-cumulative values" option is not available in DTP only Delta & Full options are available
    and infopackage of  2LIS_AF_STOCK_INITALIZATION data source also has "Full update" instead of "Generate Intial Status"
    Please let us know how can we get the "initial non-cumulative for non-cumulative values" option in the DTP level.
    Regards,
    Chandra

    Hi Chandrakumar,
    We are facing the same problem, how do you solve it?
    Regards,

Maybe you are looking for

  • Insufficient Bandwidth STILL a Problem

    I've followed the instructions listed here: http://docs.info.apple.com/article.html?artnum=301641 Still coming up short. Can anbody provide some other trouble-shooting tips. Also, I don't know if this is important, but I am presently in Rome, Italy a

  • Difference between Invoice Date, GL Date and Accounting Date Oracle AP

    Hello, I have a question that might help a lot of people too later. I tried to run these queries select aia.INVOICE_ID from AP_INVOICES_ALL aia, AP_INVOICE_DISTRIBUTIONS_ALL aida where aia.INVOICE_ID = aida.INVOICE_ID and aia.INVOICE_DATE <> aida.ACC

  • External Harddrive unrecognizable after sleep

    I have a 250GB external mybook. It is hooked up via firewire 800. However, when I wake my macbook up after sleep i get a "Device Removal" error saying I disconnected the hardware inproperly...etc. After this my external hd is unrecognizable unless I

  • TS5376 Iphone / Itunes issue

    I'll start by setting the scene PC - iTunes 10.xx Used as main iTunes account. Contains all backups and is used to update iOS, add/remove apps / music etc. Laptop - iTunes 10.x Not used - no backups, not even an authorised machine. Decided to, finall

  • OCI - Error handling

    descrption Hi I am developing the reconnection logic in my application code for cases where the process gets disconnected due to the restart of the database. Now I saw that the OCI returns the follwing error codes in errbuf when I use (void) OCIError