Infoobject change for extracting texts data.

Hi BW guys,
Here is my requirement.
I have one info object 'salesmen', which is already used in some other ODS & Cube's.
Now I want to extract texts data for the object 'salesmen', for that I will need to change my infoobject (changes are : adding credit control are object under compounding).
But while i am activating the info object again it is giving errors.
Error messages:
1) InfoObject XXXXX (or ref.) is used in data targets with data -> Error:
2) Characteristic XXXXX: Compound or reference was changed
3)InfoObject XXXXX being used in InfoCube XXXX (contains data)
etc....
But i don't want to delete the data in any data target.
Is there any way to solve this problem?
Thanks in advance......

Hi,
If you have not many cubes and ODSs with this salesman, you can consider another, beter, but more time-consuming way.
1. Create a new IO for your salesman, add a compounding attribute as you want.
2. Load master data for the new IO.
3. Create copies of your infoproviders.
3. In each of them delete an old salesman IO and insert a new one.
4. Create export datasourses for old cubes.
5. Create update rules for new data targets based on old ones.
6. In URs map your new IO with the old one. All other IOs should be mapped 1:1 (new<-old).
7. Reload data targets.
That's all.
The way I proposed earlier is less preferrable. Because anyway you'll have to change loaded into data targets data. And in this case it's better to change data model as you want.
Best regards,
Eugene

Similar Messages

  • Fast change for statistical delivery date in me21n

    hi
    need fast change for statistical delivery date in me21n
    in me21n when i enter on to fast change screen i doesn't find statistical delivery date
    can anyone tell me the process
    thanks

    Dear Anudeep,
    You cannot change this via "Fast Change".
    Please see the usage of this field.
    Calculation of the delivery time is an element in the determination of a vendor's adherence to delivery dates (that is, the vendor's delivery timeliness, or on-time delivery performance) in MM Vendor Evaluation.
    If it becomes known that the vendor can only deliver ordered goods some days later than originally stipulated, for instance, you can change the delivery date accordingly for materials planning and control purposes. However, the statistics-relevant delivery
    date remains unchanged.
    As a result, the vendor's "on-time delivery performance" score worsens. At the same time, it is ensured that materials planning and control works on the basis of the right date.
    Regards,
    ian, Wong Loke Foong

  • Query taking long time for EXTRACTING the data more than 24 hours

    Hi ,
    Query taking long time for EXTRACTING the data more than 24 hours please find the query and explain plan details below even indexes avilable on table's goe's to FULL TABLE SCAN. please suggest me.......
    SQL> explain plan for select a.account_id,round(a.account_balance,2) account_balance,
    2 nvl(ah.invoice_id,ah.adjustment_id) transaction_id,
    to_char(ah.effective_start_date,'DD-MON-YYYY') transaction_date,
    to_char(nvl(i.payment_due_date,
    to_date('30-12-9999','dd-mm-yyyy')),'DD-MON-YYYY')
    due_date, ah.current_balance-ah.previous_balance amount,
    decode(ah.invoice_id,null,'A','I') transaction_type
    3 4 5 6 7 8 from account a,account_history ah,invoice i_+
    where a.account_id=ah.account_id
    and a.account_type_id=1000002
    and round(a.account_balance,2) > 0
    and (ah.invoice_id is not null or ah.adjustment_id is not null)
    and ah.CURRENT_BALANCE > ah.previous_balance
    and ah.invoice_id=i.invoice_id(+)
    AND a.account_balance > 0
    order by a.account_id,ah.effective_start_date desc; 9 10 11 12 13 14 15 16
    Explained.
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    | Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)|
    | 0 | SELECT STATEMENT | | 544K| 30M| | 693K (20)|
    | 1 | SORT ORDER BY | | 544K| 30M| 75M| 693K (20)|
    |* 2 | HASH JOIN | | 544K| 30M| | 689K (20)|
    |* 3 | TABLE ACCESS FULL | ACCOUNT | 20080 | 294K| | 6220 (18)|
    |* 4 | HASH JOIN OUTER | | 131M| 5532M| 5155M| 678K (20)|
    |* 5 | TABLE ACCESS FULL| ACCOUNT_HISTORY | 131M| 3646M| | 197K (25)|
    | 6 | TABLE ACCESS FULL| INVOICE | 262M| 3758M| | 306K (18)|
    Predicate Information (identified by operation id):
    2 - access("A"."ACCOUNT_ID"="AH"."ACCOUNT_ID")
    3 - filter("A"."ACCOUNT_TYPE_ID"=1000002 AND "A"."ACCOUNT_BALANCE">0 AND
    ROUND("A"."ACCOUNT_BALANCE",2)>0)
    4 - access("AH"."INVOICE_ID"="I"."INVOICE_ID"(+))
    5 - filter("AH"."CURRENT_BALANCE">"AH"."PREVIOUS_BALANCE" AND ("AH"."INVOICE_ID"
    IS NOT NULL OR "AH"."ADJUSTMENT_ID" IS NOT NULL))
    22 rows selected.
    Index Details:+_
    SQL> select INDEX_OWNER,INDEX_NAME,COLUMN_NAME,TABLE_NAME from dba_ind_columns where
    2 table_name in ('INVOICE','ACCOUNT','ACCOUNT_HISTORY') order by 4;
    INDEX_OWNER INDEX_NAME COLUMN_NAME TABLE_NAME
    OPS$SVM_SRV4 P_ACCOUNT ACCOUNT_ID ACCOUNT
    OPS$SVM_SRV4 U_ACCOUNT_NAME ACCOUNT_NAME ACCOUNT
    OPS$SVM_SRV4 U_ACCOUNT CUSTOMER_NODE_ID ACCOUNT
    OPS$SVM_SRV4 U_ACCOUNT ACCOUNT_TYPE_ID ACCOUNT
    OPS$SVM_SRV4 I_ACCOUNT_ACCOUNT_TYPE ACCOUNT_TYPE_ID ACCOUNT
    OPS$SVM_SRV4 I_ACCOUNT_INVOICE INVOICE_ID ACCOUNT
    OPS$SVM_SRV4 I_ACCOUNT_PREVIOUS_INVOICE PREVIOUS_INVOICE_ID ACCOUNT
    OPS$SVM_SRV4 U_ACCOUNT_NAME_ID ACCOUNT_NAME ACCOUNT
    OPS$SVM_SRV4 U_ACCOUNT_NAME_ID ACCOUNT_ID ACCOUNT
    OPS$SVM_SRV4 I_LAST_MODIFIED_ACCOUNT LAST_MODIFIED ACCOUNT
    OPS$SVM_SRV4 I_ACCOUNT_INVOICE_ACCOUNT INVOICE_ACCOUNT_ID ACCOUNT
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_ACCOUNT ACCOUNT_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_ACCOUNT SEQNR ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_INVOICE INVOICE_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_ADINV INVOICE_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_CIA CURRENT_BALANCE ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_CIA INVOICE_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_CIA ADJUSTMENT_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_CIA ACCOUNT_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_LMOD LAST_MODIFIED ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_ADINV ADJUSTMENT_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_PAYMENT PAYMENT_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_ADJUSTMENT ADJUSTMENT_ID ACCOUNT_HISTORY
    OPS$SVM_SRV4 I_ACCOUNT_HISTORY_APPLIED_DT APPLIED_DATE ACCOUNT_HISTORY
    OPS$SVM_SRV4 P_INVOICE INVOICE_ID INVOICE
    OPS$SVM_SRV4 U_INVOICE CUSTOMER_INVOICE_STR INVOICE
    OPS$SVM_SRV4 I_LAST_MODIFIED_INVOICE LAST_MODIFIED INVOICE
    OPS$SVM_SRV4 U_INVOICE_ACCOUNT ACCOUNT_ID INVOICE
    OPS$SVM_SRV4 U_INVOICE_ACCOUNT BILL_RUN_ID INVOICE
    OPS$SVM_SRV4 I_INVOICE_BILL_RUN BILL_RUN_ID INVOICE
    OPS$SVM_SRV4 I_INVOICE_INVOICE_TYPE INVOICE_TYPE_ID INVOICE
    OPS$SVM_SRV4 I_INVOICE_CUSTOMER_NODE CUSTOMER_NODE_ID INVOICE
    32 rows selected.
    Regards,
    Bathula
    Oracle-DBA

    I have some suggestions. But first, you realize that you have some redundant indexes, right? You have an index on account(account_name) and also account(account_name, account_id), and also account_history(invoice_id) and account_history(invoice_id, adjustment_id). No matter, I will suggest some new composite indexes.
    Also, you do not need two lines for these conditions:
    and round(a.account_balance, 2) > 0
    AND a.account_balance > 0
    You can just use: and a.account_balance >= 0.005
    So the formatted query isselect a.account_id,
           round(a.account_balance, 2) account_balance,
           nvl(ah.invoice_id, ah.adjustment_id) transaction_id,
           to_char(ah.effective_start_date, 'DD-MON-YYYY') transaction_date,
           to_char(nvl(i.payment_due_date, to_date('30-12-9999', 'dd-mm-yyyy')),
                   'DD-MON-YYYY') due_date,
           ah.current_balance - ah.previous_balance amount,
           decode(ah.invoice_id, null, 'A', 'I') transaction_type
      from account a, account_history ah, invoice i
    where a.account_id = ah.account_id
       and a.account_type_id = 1000002
       and (ah.invoice_id is not null or ah.adjustment_id is not null)
       and ah.CURRENT_BALANCE > ah.previous_balance
       and ah.invoice_id = i.invoice_id(+)
       AND a.account_balance >= .005
    order by a.account_id, ah.effective_start_date desc;You will probably want to select:
    1. From ACCOUNT first (your smaller table), for which you supply a literal on account_type_id. That should limit the accounts retrieved from ACCOUNT_HISTORY
    2. From ACCOUNT_HISTORY. We want to limit the records as much as possible on this table because of the outer join.
    3. INVOICE we want to access last because it seems to be least restricted, it is the biggest, and it has the outer join condition so it will manufacture rows to match as many rows as come back from account_history.
    Try the query above after creating the following composite indexes. The order of the columns is important:create index account_composite_i on account(account_type_id, account_balance, account_id);
    create index acct_history_comp_i on account_history(account_id, invoice_id, adjustment_id, current_balance, previous_balance, effective_start_date);
    create index invoice_composite_i on invoice(invoice_id, payment_due_date);All the columns used in the where clause will be indexed, in a logical order suited to the needs of the query. Plus each selected column is indexed as well so that we should not need to touch the tables at all to satisfy the query.
    Try the query after creating these indexes.
    A final suggestion is to try larger sort and hash area sizes and a manual workarea policy.alter session set workarea_size_policy = manual;
    alter session set sort_area_size = 2147483647;
    alter session set hash_area_size = 2147483647;

  • Is it possible to do a GLOBAL color change for both text and graphics in ACrobat XI?

    I used to do this using the Pitstop Pro plugin but now Pitstop is almost $900 and this is the only thing that I would use it for, not worth the investment
    I can change text color by selecting individual text items, but I want to change all of the red text into white text
    I also need to change all of the red graphics into white graphics and I can't figure out how to do that either
    I have a trial version of XI on a Mac and will buy it if it can do what I am trying to do, i.e. global color changes to both text and graphics
    thanks!!

    I have version 6, but it is way out of date, doesn't work on my current system, I downloaded a trial version of the new one, version 12 I think, now I have to decide if I can afford to buy it, it is not cheap!
    oops, sorry, I didn't read your entire message, aargh!
    I'll check with them if I can upgrade from this early version, thanks for the suggestion!
    (edited because I didn't read properly!)

  • Best practice UOM changes for one master data

    Hello ALL,
    What are the best practices must be followed while changing one master data UOM data.
    for eg i have two UOMs respectively,
    basic UOM = EA another one ia Alternative UOM CAR  . 1 car = 10 EA.
    now my master data team deleting this CAR via MM02 .
    what are the follow up actions we should follow.
    (1) for eg i have contract existed for thi smaterial as CAR
    (2) I have many POs without doing GR
    like wise can you list what are the impacts in the system.
    how we can go ahead.
    What are the best practices followed while this UOM changes for your customer.
    br
    muthu

    Hi Ravi / tao
    Yes . I am deleting alternate UOM CAR in mm02 .
    I created a contract for that material in CAR .
    my contarct also refered in source list.
    share your views.
    what happen to my open documents.
    What happen to open documents ? .. System may not allow me to do GR right?
    br
    muthu

  • BI Content Data Source for  0ACCNT_GRPV Text Data

    Hi Experts
      (0ACCNT_GRPV)Vendor Account Group is a attribute of (0VENDOR) Vendor.
      Could you please update me wether there is any content data source avaliable to load text data of (0ACCNT_GRPV)Vendor Account Group or atleast where i can check...to find it
    Thanks in advance

    You should create simple table/view datasource from table T077Y.
    Hope it helps,
    Alexander Kuzmich.

  • Script change for rich text use

    I am using the script below to add user instructions to Textfields. I would like to do the same thing with textfields formatted for rich text but this script stops working when i set the field to accept rich text. Can you tell me how to modify the script so it will work in a ttext field that will allow the user to enter rich text?
    MeetingMinutes.#subform[2].Attendees::initialize - (JavaScript, client)
    this.execEvent("exit");
    this.format.picture.value = "null{'" + this.assist.toolTip.value + "'}";
    MeetingMinutes.#subform[2].Attendees::enter - (JavaScript, client)
    this.fontColor = "0,0,0";
    this.font.posture = "normal";
    MeetingMinutes.#subform[2].Attendees::exit - (JavaScript, client)
    if (this.isNull)
    this.fontColor = "153,153,153";
    this.font.posture = "italic";
    MeetingMinutes.#subform[2].Attendees::prePrint - (JavaScript, client)
    this.format.picture.value = "";
    MeetingMinutes.#subform[2].Attendees::postPrint - (JavaScript, client)
    this.format.picture.value = "null{'" + this.assist.toolTip.value + "'}";
    Thank you,
    -Don

    Hi Don,
    Similar to your script above, but try this in the enter event:
    if (this.rawValue === this.assist.toolTip.value) {
              this.rawValue = "";
    and then this on the exit event:
    if (this.rawValue === null) {
              this.rawValue = this.assist.toolTip.value;
    Alter to suit formatting and initialize event, etc.
    Niall

  • Extract text data from dbc on the fly

    Hi All,
    I am currently setting up a testsystem for a CAN based project with LV7.1 and Teststand 4.
    I have my PXI8461 CAN card sending and receiving CAN messages fine but I wish to perform some work on all channel ( signal ) information before passing it up to Teststand for analysis.
    For my Teststand purposes it is preferable to work with text, for example if the DUT has a button pressed then the appropriate signal gets sent up to Teststand as "On" or "Off" etc rather than 1 and 0. ( CANoe has this feature and the LDF driver kit for LIN in Labview also )
    This is very useful for Teststand when checking test conditions rather than trying to equate a test with a number, so tests can be written like if result = "Ignition On" then Pass else Fail.
    The dbc file I have contains this text representation of data but is there any VI which can be ran after a Read Channel which will convert Channel data to text ?
    Thanks,
    Mike 

    Hi Mike,
    Thanks for the post! and I hope your well today.
    Im not very familiar with the CAN palette, but Im sure we could use Lower Level VIs to build this functionality.
    So, when on the fly, the CAN message is a number (0 or 1) and then convert it using a case structure?
    I imagine this issue is more complex then I have caught on so far, so please, maybe some example code etc would help.
    Kind Regards,
    James.
    Kind Regards
    James Hillman
    Applications Engineer 2008 to 2009 National Instruments UK & Ireland
    Loughborough University UK - 2006 to 2011
    Remember Kudos those who help!

  • Ways to extract text/data from a pdf

    I have just been given five large boxes of documents which are old work orders which include (in the same position on every page) a customer's name, address, tel etc.  I'm pretty adept at scanning stuff to pdf using Adobe Acrobat 9.0 Pro (version 9 5 1 283) but I don't know how (if it's even possible) to batch scan just that part of the page which contains the customer data and save it to Excel or csv or similar.  I know I could highlight the required text on each page and copy and paste it into Excel but is there a more elegant solution?  To create the pdf, I can scan using our office Epson all-in-one (although it's on the other side of the office) or a Neatdesk Scanner I'm trying out.  The latter scans the pages quickly but if I set the Neat software to treat the document as a contact card, it only picks up our company address from the top of the page and ignores everything else ;-)  I'm running Windows 7.

    Hello
    You may try the following AppleScript script. It will ask you to choose a root folder where to start searching for *.map files and then create a CSV file named "out.csv" on desktop which you may import to Excel.
    set f to (choose folder with prompt "Choose the root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/usr/bin/perl -CSDA -w <<'EOF' - " & f's quoted form & " > ~/Desktop/out.csv
    use strict;
    use open IN => ':crlf';
    chdir $ARGV[0] or die qq($!);
    local $/ = qq(\\0);
    my @ff = map {chomp; $_} qx(find . -type f -iname '*.map' -print0);
    local $/ = qq(\\n);
    #     CSV spec
    #     - record separator is CRLF
    #     - field separator is comma
    #     - every field is quoted
    #     - text encoding is UTF-8
    local $\\ = qq(\\015\\012);    # CRLF
    local $, = qq(,);            # COMMA
    # print column header row
    my @dd = ('column 1', 'column 2', 'column 3', 'column 4', 'column 5', 'column 6');
    print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    # print data row per each file
    while (@ff) {
        my $f = shift @ff;    # file path
        if ( ! open(IN, '<', $f) ) {
            warn qq(Failed to open $f: $!);
            next;
        $f =~ s%^.*/%%og;    # file name
        @dd = ('', $f, '', '', '', '');
        while (<IN>) {
            chomp;
            $dd[0] = \"$2/$1/$3\" if m%Link Time\\s+=\\s+([0-9]{2})/([0-9]{2})/([0-9]{4})%o;
            ($dd[2] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of CODE\\s/o;
            ($dd[3] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of DATA\\s/o;
            ($dd[4] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of XDATA\\s/o;
            ($dd[5] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of FARCODE\\s/o;
            last unless grep { /^$/ } @dd;
        close IN;
        print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    EOF
    Hope this may help,
    H

  • PDF with a image holder for extracting/adding data ?

    Hi,
    everybody I managed to find a way to add a text field in a PDF file but I cant find a tool to add a regular data field just for images like .jpg or .eps or some other like that.Can anyone help me please thank you in advance.

    Sorry for taking so long, I am still waiting for a paycheck from Adobe! It must be based on your registration fee.
    Try LiveCycle Designer. It is XML based and has the necessary code to import images.

  • Performance tuning for extraction of data from MSEG table

    Hello experts,
    I m trying to extract data via select query from MSEG table based on non-primary keys, which affects my performance.
    Below is my select query  :
    SELECT SINGLE menge
    FROM mseg
    INTO w_rejqty
    WHERE ebeln = it_mseg-ebeln AND
          ebelp = it_mseg-ebelp AND
          bwart = '122'.   
    Kindly suggest some alternative way for it apart from creating secondary index on table MSEG which would be my last option because already four secondary index are created in my present situation and also is it advisable to create fifth secondary index for my problem?? Would it affect my database performance?
    Thanks in advance
    Raj

    Hi Raj,
    is that possible to use this query below ? You might ask to Functional whether is possible or not.
    SELECT SINGLE belnr gjahr buzei INTO w_ekbe FROM ekbe
        WHERE ebeln = it_mseg-ebeln
        AND     ebelp = it_mseg-ebelp
    SELECT SINGLE menge FROM mseg INTO w_rejqty
       WHERE mblnr EQ w_ekbe-belnr
       AND   mjahr EQ w_ekbe-gjahr
       AND   zeile EQ w_ekbe-buzei
    Best Regards
    Fernand

  • Language change for standard text

    How to change the language of standard text.
    ex; from 'EN' to 'CS'

    Hi,
    Refer note 3355 in OSS for a complete explanation. The SAPscript objects that should be transported must be written in a
         transport request.
         The entries are as follows:
         R3TR FORM NAME (NAME = Name of the layout set)
         R3TR STYL NAME (NAME = Name of the style)
         R3TR TEXT OBJECT,NAME,ID,L
         (OBJECT = Text object, NAME = Text name, ID = Text ID, L = Text language)
         If you want to transport a number of texts, you can use report RSTXTRAN to insert the individual text keys into a
         correction.
         The transport request must be entered and released via the transport system.
    Reward points if helpful
    Regards.
    Srikanta Gope

  • Set up for Extraction the data from SAP ECC system

    Hi!
    I would like to analyze the transaction and master data from SAP ECC system into SAP BI system.
    I have created the connection (entry for SAP ECC system) within SAP NetWeaver System.
    Unfortunately when I try to load the transaction data for Info source the process does not end successfully.
    There are no information within SM58 on source system.
    The ST22 does not contain some suitable information.
    Question:
    Which settings do I miss and how can solve my problem?
    (user authorization, etc.)
    Thank you very much!
    regards
    Holger

    Hi!
    many thanks for your reply.
    The error I get:
    Errors while sending packages from OLTP to BI
    Diagnosis
    No IDocs could be sent to BI using RFC.
    System Response
    There are IDocs in the source system ALE outbox that did not arrive in the ALE inbox of BI.
    Further analysis:
    Check the TRFC log.
    You can access this log using the wizard or the menu path "Environment -> Transact. RFC -> In source system".
    Error handling:
    If the TRFC is incorrect, check whether the source system is fully connected to BI. In particular, check the authorizations of the background user in the source
    Can you please help me to identify the error?
    Thank you!

  • Extracting text data from CRM

    Hi,
      We have a NOTE section/field in CRM, which is used to enter some notes by the users on Activities. We need to pull it into BW.How to do it. NOTE can be any long!

    Thanks to Eugene Khusainov
    Long texts in SAP BW: Modeling – Follow Up
    Of course the clever way would be to publish to a KM document then attach the document a BLOB object to the master data - but you can figure out how to that yourself (and don;t forget to write a blog about it)

  • Query for extracting specific data

    Hi,
    I had two tables contains more than 10,00,00 records.
    customer_mast table
    (CUSTOMER_ID
    LOGIN_NAME
    CREATE_DATE
    CREDENTIAL_TYPE)
    and customer_prod table
    (CUSTOMER_ID
    CREDENTIAL_TYPE
    IND_PROD_LOGIN_ID)
    IND_PROD_LOGIN_ID(numeric) is the customer card number and LOGIN_NAME is the userid(alphanumeric).
    Now from these two table i need to select only those records as per below condition
    1) LOGIN_NAME same as IND_PROD_LOGIN_ID
    2) Corresponding to IND_PROD_LOGIN_ID there should be only one row in customer_mast table, no duplicate row.
    problem is earlier userid was allowed as numeric as well as alphnumeric. Now after new changes i had changed the rules and allowed only alphanumeric userid only. Now i want to clean up the records which contains the numeric as login_name. But there is problem for some card(IND_PROD_LOGIN_ID) having two entries in the customer_mast table one with numeric and one with alphanumeric this is due to process while registering on my site so for those customer i dont want to delete the records.
    Please help me on this.......

    Please, avoid to cross post over different forums, especially this very forum is not for SQL.
    Here your other thread :
    Select query
    And also, when asking such question, better to say about your Oracle version, your tries so far...
    Nicolas.

Maybe you are looking for

  • HP Officejet Pro 8500A: Initial Checking Printer Procedure does not stop

    I have a big problem. My printer does not stop to run the "Checking Printer" procedure. It tells me: "Open the print-carriage access door, clear the jam, and then touch OK to continue. Unfortunately there is no paper inside. Pressing OK, the printer

  • Iphoto 6 "photo cannot be found,etc.

    Somehow about 300+ of my 3400 photos now have been lost except for the thumbnails that have been degraded from 2272 X 1704 pixels down to 1/4 of that. They can only be viewed in Preview - can't e-mail or anything else either. I kept getting the msg.

  • Unsupported Configuration

    When Protected Mode cannot launch due to an unsupported configuration, a dialog alerts me that Protected mode is unavailable. "Adobe Reader cannot open in Protected Mode due to a problem with your system configuration. Would you like to open Adobe Re

  • Ipod classic will not shut off or pause

    I suddenly can not shut off or pause my iPod. It only keeps playing til the battery dies. help??!!

  • Model view (t-code- bd64) configuration issue

    1) Is it possible with out  distributing customer distribution model in outbound side ,can we receive idoc data in inbound side? 2) after distribution of model view in  outbound side  is it possibel to create filter techniqe in inbound side? Thanks B