Question about entries in 3KEH table

Hello gurus,
I would like to ask you 1 thing, there are more than 4000 entries in table 3KEH but nowm the customer asked me to enter only range fromm 1000000000 to 2999999999. Which means I need to delete all the entries and then place this range, But it happens to me that some of the accounts I can not delete as they are entered in derivation, in 3kei transaction.
I can skip those and to the ranges just between, right? lets say the account 1000000030 is entered in 3kei table so in 3hek I will enter 1000000000 to 1000000029 and will continue like this...
this is time consuming, well...can do that but my question ia if this is a correct procedure, if I can do that and if there will not be any impact.
thanks a lot for letting me know
regards
Hana

as long as no accounts are missed out or all the field attributes are kept intact, i dont see any impact, it should work as before

Similar Messages

  • Question about DHCP Active IP Table WRT54G v2

    I'm seeing something that I need to ask about. On my DHCP Active table, I should only be seeing 2 mac addresses which is mine and my kid's pc. I only connect wirelessly. I have WPA set. I've noticed other mac addresses show up. Although, the ip addresses are similar to my 2 computers. One may be 192.168.2.103 and 192.168.2.104. I'm kinda new to this router DHCP thing, so if someone could explain if in fact someone else is on my network or how I can prevent it.

    Yes, It sounds to me like someone is using your wireless to attach to the internet. I have solved this problem  by setting up the security to us the WEP keys. Assign each one of your pc's a WEP key and that will prevent anybody from attaching to your network. Login to your router and under the wireless security go to the WEP key settings. The router will setup 4 KEYS, you can use any of them. Save your settings. Then when you attach to your network it will prompt you for one of the keys. Make sure you have written them down otherwise your going to have to reset your router and start all over. There may be different ways but this has worked for me

  • Question about ER diagrams and table

    Are there any good online articles that could give you a step-by-step hint on ways in coming up with the perfect tables design and relationship from a business requirement...

    Be very careful about the word "perfect" ...
    Perfection may be possible for a few relatively simple requirements (though even then highly respected practicioners disagree, violently sometimes, on certain things - google "surrogate key" for example).
    Large systems with complex overlapping and possibly conflicting requirements are always a compromise.
    And then the "almost perfect" logical model hits the performance wall ...

  • Question about entry point in adobe reader

    I click on a website link and the computer won't open it.  The paragraph that comes up says "Entry Point not found.  The procedure entry point JS_SetCheckObjectAccess callback could not be located in the dynamic link library js 3250.dll."  What does this mean and how can I get rid of it so I can access the link.  When I first installed Adobe Reader it worked fine, but this problem has been occurring for about 2 weeks or so.  Thank you for your help!!

    That isn't a problem of Adobe Reader. It is a Firefox problem:
    http://support.mozilla.com/eu/forum/1/398339

  • Question about Global index and Table Partitions

    I have created a global index for a partitioned table now in the future the partitions will be dropped in the table. Do I need to do anything to the global index? Does it need to be rebuilt or would it be ok if partitions get dropped in the table?

    >
    I have created a global index for a partitioned table now in the future the partitions will be dropped in the table. Do I need to do anything to the global index? Does it need to be rebuilt or would it be ok if partitions get dropped in the table?
    >
    You can use the UPDATE INDEXES clause. That allows users to keep using the table and Oracle will keep the global indexes updated.
    Otherwise, as already stated all global indexes will be marked UNUSABLE.
    See 'Dropping Partitions' in the VLDB and Partitioning Guide
    http://docs.oracle.com/cd/E11882_01/server.112/e25523/part_admin002.htm#i1007479
    >
    If local indexes are defined for the table, then this statement also drops the matching partition or subpartitions from the local index. All global indexes, or all partitions of partitioned global indexes, are marked UNUSABLE unless either of the following is true:
    You specify UPDATE INDEXES (Cannot be specified for index-organized tables. Use UPDATE GLOBAL INDEXES instead.)
    The partition being dropped or its subpartitions are empty

  • A question about the multiple source table for the logical table

    Hi All,
    I am to test, having two physical sources for an logical table, but it is failing as it is always getting data from only one table rather than two tables.
    !http://picasaweb.google.com/KSivaUS/OracleForumQuestions#5433761212378087346!
    Any suggestion or inputs would be appreciated.
    Thanks
    Siva

    your 2 measure columns are in the same unique - low level??
    your connections look good.
    which is the result if you bring only the sales column at your report??is it the sum of the 2 datasources??
    try to repass again all your bussiness model.or make an other one.
    fisrt pass your fact with 2 sources and then your dimensions....
    as i can see you have customer_dim,do both of your columns have the appropriate key to this dimension??try to make a physical connection from both fact sources to this dimension as well as for time...
    if you do it in this way ,there is no possibility not to work
    hope i helped...
    http://greekoraclebi.blogspot.com/

  • Question about Subroutine and Internal tables

    See I  have this code.
    TABLES: SFLIGHT.
        TYPES: BEGIN OF LINE,
               Carrid like SFLIGHT-CARRID,
               Connid like SFLIGHT-CONNID,
               Fldate like SFLIGHT-FLDATE,
               Seatsmax like SFLIGHT-SEATSMAX,
               Seatsocc like SFLIGHT-SEATSOCC,
               Percen type p decimals 2,
               END OF LINE.
       DATA: ISFLIGHT TYPE STANDARD TABLE OF LINE INITIAL SIZE 10 WITH HEADER LINE.
       DATA: Percent type p decimals 2.
       PARAMETERS: CID LIKE SFLIGHT-CARRID.
       DATA: Num type I value 0.
       INITIALIZATION.
       CID = '004'.
       SELECT CARRID CONNID FLDATE  SEATSMAX  SEATSOCC FROM SFLIGHT INTO TABLE ISFLIGHT WHERE CARRID = CID.
    So far I've gotten this far. but now I need to compute for the percentage, which I'm required to do in a subroutine.
    So I tried
    FORM U TABLES ISFLIGHT STRUCTURE SFLIGHT.
    ISFLIGHT-Percen = ( ISFLIGHT-Seatsocc / ISFLIGHT-Seatsmax ) * 100.
    ENDFORM.
    But I keep getting an error o that. It keeps telling me that ISFLIGHT does not have a Percen field. Also I'm suppose to use a pass by value to this subroutine but I don't know what that means.
    Basically I need to compute for the percentage and insert it tot he internal table. which I would sort by percentage. After which I'm suppose to print the ouput by passing the internal table to the subroutine.
    I know I'm doing something wrong but I just don't know how to fix this since I only started working on subroutines today. Any help would be appreciated.

    Hi.
    line defined in data dictionary. Try this:
    TABLES: sflight.
    DATA: BEGIN OF my_line,
    carrid LIKE sflight-carrid,
    connid LIKE sflight-connid,
    fldate LIKE sflight-fldate,
    seatsmax LIKE sflight-seatsmax,
    seatsocc LIKE sflight-seatsocc,
    percen TYPE p DECIMALS 2,
    END OF my_line.
    DATA: isflight LIKE my_line OCCURS 10 WITH HEADER LINE.
    DATA: percent TYPE p DECIMALS 2.
    PARAMETERS: cid LIKE sflight-carrid.
    DATA: num TYPE i VALUE 0.
    INITIALIZATION.
      cid = '004'.
      SELECT carrid connid fldate seatsmax seatsocc FROM sflight INTO TABLE
      isflight WHERE carrid = cid.
    FORM u TABLES isflight STRUCTURE my_line.
      isflight-percen = ( isflight-seatsocc / isflight-seatsmax ) * 100.
    ENDFORM.                    "U
    regards
    Walter Habich

  • Question about the CSS behavior when using layer 3 sticky and sticky table

    Hi everyone,
    I have a question about the CSS behavior when using layer 3 sticky and sticky table is full.
    If I configure layer 3 sticky and specify the inactivity timeout as below, how does the CSS
    handle subsequent needed sticky requests ?
    advanced-balance sticky-srcip
    sticky-inact-timeout 30
    CSS document says that
    Note:
    If you use the sticky-inact-timeout command to specify the inactivity timeout
    period on a sticky connection, when the sticky table becomes full and none of
    the entries have expired from the sticky table, the CSS rejects subsequent
    needed sticky requests.
    My question is what is the next reaction by doing the CSS if the CSS is in the
    following condition:
    when the sticky table becomes full and none of the entries have expired from
    the sticky table, the CSS rejects subsequent needed sticky requests
    Does CSS just rejects/drops subsequent needed sticky requests ?
    or
    Does CSS does not stick subsequence requests to particular service but CSS forward
    subsequence requests with round-robin basis ? which means if the sticky table is full,
    the CSS just works round-robin load balancing fashion for subsequence requests ?
    Your information would be appreciated.
    Best regards,

    Hello,
    There is a good document explaining this on Cisco web site
    http://www.cisco.com/en/US/products/hw/contnetw/ps789/products_tech_note09186a0080094b4b.shtml
    It depends if the sticky-inact-timeout is used or not. If not, it's FIFO (the oldest entry in the sticky table is removed). If yes, the CSS will reject the next sticky request.
    Rgds,
    Gaetan
    Rgds
    Gaetan

  • Question about Update Tables

    Hello Gurus,
    I have a question about "update table" entries. I read somewhere that an entry in update table  is done at the time of the OLTP transaction. Is this correct? If so, does this happen on a V1 update or V2 update? Please clarify. Similarly, an entry in the "extraction queue" (incase you are using "queued delta" will happen on V1 update. I just want to get a clarification on both these methods. Any help in this matter is highly appreciated.
    Thanks,
    Sreekanth

    Hi
    update tables are temporary table that are refreshed by v3 job.update table is like buffer, it gets filled after updation of application table and statistical table through v1 v2 update .  we can bypass this process by delta methods.
    M Kalpana

  • Question about table compression

    I administer several 10g databases, and have been asked to compress tables in several tablespaces. I am unfamiliar with using compression. I have read some Oracle documentation on the ALTER TABLE... MOVE COMPRESSION command, but still have several questions. Can anyone recommend a good white paper, or other documentation on how best to compress tables with existing data? Thank you in advance for your guidance!

    Basically, I have questions about how to select which tables will benefit from compression. I also read somewhere that, once a table has been compressed, new updates to the compressed data will not be compressed and so I will need to re-compress the tables periodically.
    I also needed to know if the ALTER TABLE statement will compress the existing data or just future inserted data. Through further research I found that by using the MOVE clause, it will compress the existing data. I will also need to rebuild the indexes once the ALTER TABLE statement is complete.
    Thank you for your help and encouragement!

  • A question about foreign key to multiple tables

    Hello everybody,
    I have a question about creating foreign key and I would appreciate if you could kindly give me a hand. Here are my tables:
    CREATE TABLE TEAM1(team_id VARCHAR2(20), project_id VARCHAR2(20));
    ALTER TABLE TEAM1 ADD CONSTRAINT PK_TEAM1 PRIMARY KEY(team_id);
    CREATE TABLE TEAM2(team_id VARCHAR2(20), project_id VARCHAR2(20));
    ALTER TABLE TEAM2 ADD CONSTRAINT PK_TEAM2 PRIMARY KEY(team_id);although the structure of both the tables is exactly the same, the values (in particular team_id) in both tables are different.
    Also I have another table named AGENT
    CREATE TABLE AGENT(agent_id VARCHAR2(20), team_id VARCHAR2(20));
    ALTER TABLE AGENT ADD CONSTRAINT PK_AGENT PRIMARY KEY(agent_id)Now the problem is that the column team_id in AGENT table is actually a foreign key, but the value can be in either TEAM1 or TEAM2. As far as I know a foreign key points only to one table.
    How can I deal with this problem? Whenever there is an INSERT or UPDATE I have to make sure that the value of the column "team_id" in the table "AGENT" is a valid value either in "TEAM1" or "TEAM2"
    Thanks in advance,
    Kind Regards,
    Dariyoosh

    Do you have the ability to change the data model? If so a more appropriate structure may be something like this:
    CREATE TABLE TEAM(team_id VARCHAR2(20), team_name VARCHAR2(20));
    ALTER TABLE TEAM ADD CONSTRAINT PK_TEAM PRIMARY KEY(team_id);
    ALTER TABLE TEAM ADD CONSTRAINT UK_TEAM UNIQUE (team_name);
    CREATE TABLE TEAM_PROJECT(team_id VARCHAR2(20), project_id VARCHAR2(20));
    ALTER TABLE TEAM ADD CONSTRAINT PK_TEAM_PROJECT PRIMARY KEY(team_id, project_id);
    ALTER TABLE AGENT ADD CONSTRAINT FK_TEAM_PROJECT1 FOREIGN KEY (team_id) REFERENCES TEAM(team_id);
    CREATE TABLE AGENT(agent_id VARCHAR2(20), team_id VARCHAR2(20));
    ALTER TABLE AGENT ADD CONSTRAINT PK_AGENT PRIMARY KEY(agent_id);
    ALTER TABLE AGENT ADD CONSTRAINT FK_TEAM FOREIGN KEY (team_id) REFERENCES TEAM(team_id);Edited by: Centinul on Jun 25, 2010 10:50 AM

  • Question about inputting data to a pivot table

    Hi,
    I have 2 questions about using the ADF pivot table component (I would like it for data input).
    1. Is it possible to paste into multiple cells (i.e. using cut in Excel for example, and then pasting the cells into the pivot table) ?
    2. What is the recommended approach for the case where there is no data values (no rows on the database table)? For example, if I have regions, products, measures and time periods and then want to be able to select some regions and some products to enter new sales figures - and then create the rows on the database with save button, is there a recommended way to do this?
    (Jdeveloper version: 11.1.2.0.0)

    Anybody able to help with this?

  • Question about exporting FBL3N data in Pivot table format

    Dear all
    I have a question about the "exporting file" function of ECC 6.0.
    We started to use ECC 6.0 system, and it appears that we are no longer able to export "FBL3N data" to a local PC in pivot table format.
    Is there a way to do it?
    We used to be able to do so when the system is 4.6.
    I appreciate your support!
    Kind regards

    Dear:
                 You can do that. Execute report FBL3N with desired GL account in it. After when report has been executed right click on it. There will be an option Spread Sheet. Select all available format. In drill down select 08 (Excel in existing XXL format) and press OK. There you will get pivot table option for downloading., Hope this will help you resolve your query.
    Regards

  • Question about the MAKZN field in the RBKP table

    Hello all.
    I have a question about the MAKZN field. Does anyone know what field in MIRO is assigned to this field? We have an issue where a line item amount was not selected invoice was out of balance but the agent selected accept and post. And invoice posted. but I am interested in knowing where the amount if keyed in because when I go to the RBKP table I see an amount entered in the MAKZN (manually accept net difference amount)

    Hi,
    it seems as if the value was calculated internally:
    program SAPLMR1M
    dynpro 6000
    PAI module fcode_6000
    Include LMR1MI3W
    *-------- buchen ------------------------------------------------------*
        WHEN fcobu OR fcomanak.
    *--- identical code in PAI Module FCODE_6250 --------------------------*
          PERFORM ota_check USING vf_kred-xcpdk rbkpv-xcpdd
                            CHANGING rc.
          IF rc NE 0.
            CLEAR ok-code.
            EXIT.
          ENDIF.
          IF ok-code = fcomanak.
            PERFORM diff_akzeptieren.
            ok-code = fcobu.
          ENDIF.
    where:
    fcomanak          LIKE ok-code VALUE 'MANAK', " Manuell akzeptiert
    *&      Form  DIFF_AKZEPTIEREN
    *       Differenz manuell akzeptieren
      FORM diff_akzeptieren.
    *       Manuell akzeptierter Betrag
        rbkpv-makzn  = rbkpv-makzn + rbkpv-diffn.
        rbkpv-makzmw = rbkpv-makzmw + rbkpv-diffmw.
    *       Differenzbeträge
        CLEAR: rbkpv-diffn, rbkpv-diffmw.
      ENDFORM.                             " DIFF_AKZEPTIEREN
    maybe it´s happenning when releasing manually the invoice in MRBR?
    Best regards.

  • Question about table DR$FND_LOBS_CTX$I

    All,
    I have questions about this table 'DR$FND_LOBS_CTX$I'
    1. What's the purpose of this table?
    2. Can we purge this table? How?
    3. Is there any harmful if purge this table?
    Thanks,
    Jackie

    I have questions about this table 'DR$FND_LOBS_CTX$I'
    1. What's the purpose of this table?There is no description about this table in MOS or eTRM -- http://etrm.oracle.com/pls/et1211d9/etrm_pnav.show_object?c_name=DR$FND_LOBS_CTX$I&c_owner=APPLSYS&c_type=TABLE
    You may also check the code in $FND_TOP/sql/aflobbld.sql
    2. Can we purge this table? How?
    3. Is there any harmful if purge this table?Please see these docs/links.
    FND_LOBS_CTX Is Having Huge Size, How To Reduce The Size Of The Index [ID 396803.1]
    http://oracle-apps-dba.blogspot.com/2008/07/how-to-enable-fndhelp-search-by.html
    If you could not find complete answers to your questions, I would suggest you log a SR.
    Thanks,
    Hussein

Maybe you are looking for

  • I need helping!!! configuring RDP access to my local server from a remote location on my Cisco ASA 5505 Firewall.

    I need helping configuring RDP access to my local server from a remote location on my Cisco ASA 5505 Firewall. I have attempted to configure rdp access but it does not seem to be working for me Could I please ask someone to help me modify my current

  • Error message when closing Elements 9 9

    Every time I close the program, I get an error message that says this program shuts down unexpectedly,with the option to re-open, or not (OK or Cancel) ,  and then I get another message asking whether I want to report to be sent to Adobe How can I st

  • Smartform: windows in different pages having the same name

    Hi all gurus, first of all, please forgive me if I'm missing something, I'm quite new on the Smartform argument. Shortly; I have to modify some smartforms made by someone else in order to meet customer's desiderata. These smartforms are all different

  • USB port is not working,

    I have HP Pavillion p6230in purchased on 30/4/2010 in New Delhi, India.  In my PC USB Port and DVD drive is not working.  I have loged complaint with Service Centre 4/3/2011 but in vain no one has visited my place for repair.  I do my self system rec

  • GRC 10.0 Alerts not sending email

    HI everyone: We have set up our alerts. We have created a couple of custom critical action functions and risks and assigned risk owners to the critical action risk. We have scheduled the following jobs: GRAC_ACTION_USAGE_SYNC GRAC_ALERT_GENERATION. W