COND_A04 posting give dump for scale table TVFSCB while COND_A01 posts

Hello Guys,
We are uploading condition records in SAP from external system using IDOC. IDOC of basic type COND_A04 is proposed. But while posting the data using COND_A04, system gives a dump as below
Error analysis
    Short text of error message:
    Error in READ TABLE G_TVFSCB_TAB (Key:    )
    Long text of error message:
    Technical information about the message:
    Message class....... "VYSC"
    Number.............. 002
    Variable 1.......... "READ TABLE"
    Variable 2.......... "G_TVFSCB_TAB"
If we use the same data and use IDOC type COND_A01 the IDOC is posted successfully. I would like to know
1. Is there any issue if we use COND_A01? What are the advantages of COND_A04?
2. Why SAP is expecting values in TVFSCB? How can I find the reason?
Thanks
Vikas

I feel, the issue relates to some shipment cost as the table TVFSCB relates to that.  Nevertheless, have a look at the following notes which may help you
1)  Note 507828 - VI01/VI02: Program termination after price refresh
2)  Note 578232 - VI01/VI02: VYSC806 Multiple cumulation without group cond.
3)  Note 619945 - VI01: Runtime error VYSC 002 'READ g_vfkomv'
4)  Note 675591 - Error when copying multi-dimensional freight conditions
thanks
G. Lakshmipathi

Similar Messages

  • Priviledges required for dba_role_privs table

    Hi Friends ,
    I want one help ..
    i am executing the query "select * from dba_role_privs" from sql developer worksheet..but when i am using same query in package which is in same schema .. when i am compiling this package ..this gave me error "table or view does not exist" meanwhile when i am using "DBA_USERS " table in package..it doesn't give error for this table while compiling the package..
    i already provided "SELECT_CATALOG_ROLE" to schema..
    which grants needs to give schema for accessing the table dba_role_privs?
    can you please tell me why is this happening ?

    It is happening because
    a) You don't consult documentation prior to asking a question
    if you would have done so you would have avoided to ask a question which has been asked and answered 99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999 times before, by people, who like you, don't read documentation.
    If you would have done so you would also have known
    b) Roles are ignored in stored procedures as roles are volatile.
    There are two solutions to this one
    1) Grant the privilege to the user invoking the procedure directly. This is the worst solution you can think of, as your grants will get out of control.
    2) create the procedure with authid current_user
    Sybrand Bakker
    Senior Oracle DBA

  • Using Alias for the table column

    Dear all,
       Can we use alias name for the table column while developing zreport.
    ie.,
      without using standard  table column name ( like mara-matnr ), i wish to use mat_num for matnr. So that, one can easily understand the column.
    Could you help me out in this regard.
    Thanks in Advance,
    S.Sridhar.

    yes you can declare in ur internal table like
    material_number like mara-matnr.

  • How to give comments for a particular table

    hi..
    how to give comments for a particular table ..
    select * from user_tab_comments;
    tx in advance..

    Try this.
    SQL> COMMENT ON TABLE EMP IS 'THIS IS SAMPLE EMPLOYEE TABLE' ;
    Comment created.
    SQL> select * from user_tab_comments where table_name = 'EMP'
      2  /
    TABLE_NAME                     TABLE_TYPE
    COMMENTS
    EMP                            TABLE
    THIS IS SAMPLE EMPLOYEE TABLE

  • Table for scale ( Rebate) in CRM

    Hi,
    Can i know where i can get the table for scale information (condition rate,scale quantity,amount) in CRM for rebate agreement?
    Thanks
    Ashok

    Hi Ashu,
    Try in the table 'CND_MAPC_CNV_TAB' to see the relationship between R/3 tables and CRM tables
    In R/3 KONM table stores the scale quanties and amounts for condition records.
    - Shivaji

  • ABAP for Super Dumps: Import- & Export-Parameter for a Table in a FM

    Hello ABAP Profs,
    sorry I am BW.
    <b>Import- & Export-Parameter for a Table in and out of an Function Modul.</b>
    I want to import a table into a Function Module, change it and export it again.
    How do I have to define the Import- and Export- Parameters in the FM ?
    The table looks looks this:
    DATA: zvpshub_tab TYPE SORTED TABLE OF /bic/pzvpshub WITH UNIQUE KEY
    /bic/zvpshub objvers /bic/zvpsoursy INITIAL SIZE 0.
    Thanks a lot
    Martin Sautter

    Hi Clemens,
    <u>in SE11</u> I defined a datatype of Type Structure: ZVPSHUB_ROW.
    <u>in SE11</u> I defiend a datatype of Type Tabletype: ZVPSHUB_TAB,
    bases on Rowtype ZVPSHUB_ROW.
    <u>in SE 80</u> I creates an FM with a CHANGEING Parameter referencing ZVPSHUB_TAB:
    FUNCTION ZVP_SHUB_TAB_LOAD.
    ""Lokale Schnittstelle:
    *"  CHANGING
    *"     VALUE(SHUB_TAB) TYPE  ZVPSHUB_TAB
    <u>in RSA1</u> in BW in the Startroutine of the Upload Rules in defined the table:
    DATA:shub_tab          TYPE zvpshub_tab.
    <u>in RSA1</u> in BW in the Startroutine of the Upload Rules in defined the table:
    DATA:shub_tab          TYPE zvpshub_tab.
    <u>in RSA1</u> in BW in the Startroutine i called the FM
    CALL FUNCTION 'ZVP_SHUB_TAB_LOAD'
        CHANGING
          shub_tab = shub_tab.
    and it works ..
    Thank You
    Martin Sautter

  • Creating report definition in CUIC for dump of all tables

    Hello,
    I have a lab version CUIC 10_ and am new to custom reporting.  I am trying to get a system dump of all tables and fields from UCCX and CUIC.

    Please refer to Cisco Unified CCX Database Schema Guide 10.5
    https://www.cisco.com/c/dam/en/us/td/docs/voice_ip_comm/cust_contact/contact_center/crs/express_10_5/reference/guide/dbschema.pdf

  • Need a dump on indexes for a table

    RDBMS novice here asking what is probably an easy one.
    How, in SQLPlus, can I get a spill on all the indexes of a specific table. In Oracle Rdb, the statement "show table (indexes) foo;" did the job. Looking for something similar in RDBMS. I need to see the components of the index (in their right order). It would also be great to see some of the other stuff you specify when you create the index.
    Thanks in Advance

    You can get the indexes for a table by querying
    SELECT INDEX_NAME FROM USER_INDEXES WHERE TABLE_NAME='XXX'
    You can get the columns within the index (in order) by
    SELECT COLUMN_NAME FROM USER_IND_COLUMNS WHERE INDEX_NAME='XXX' ORDER BY COLUMN_POSITION

  • User Datastore for multiple tables and columns!

    Hi,
    I hop so much, someone can help me.
    I've made a user datastore to index multiple columns of multiple tables.
    Now, the Documentation of Oracle explains the idexing of one table.
    I have multiple tables, which have all, the columns descr and tagnr. I want to make a query sth like this:
    select table1.column, table2.columnd... where contains(indexed field,'gas within descr',1)>0
    is it possible to index 4 seperate tables, without having a collective key? I dont want to make a Concatenated Datastore.
    I have wrote this code.
    But it doesn't work. It's been compiled fine. But I don't get any result with my queries.
    create or replace
    procedure My_Proc_Wide
    Must be in ctxsys schema.
    In a full-scale example, this would be a wrapper
    for a proc in the user schema.
    rid in rowid,
    tlob in out NOCOPY clob /* NOCOPY instructs Oracle to pass
    this argument as fast as possible */
    is
    v_descr varchar2(80);
    v_tagnr varchar2(30);
    v_descr_name constant varchar2(20) := 'descr';
    v_descr_start_tag constant varchar2(20) := '<' || v_descr_name || '>';
    v_descr_end_tag constant varchar2(20) := '</' || v_descr_name || '>';
    v_tagnr_name constant varchar2(20) := 'tagnr';
    v_tagnr_start_tag constant varchar2(20) := '<' || v_tagnr_name || '>';
    v_tagnr_end_tag constant varchar2(20) := '</' || v_tagnr_name || '>';
    v_buffer varchar2(4000);
    v_length integer;
    begin
    /* verify the env which called this */
    if Dbms_Lob.Istemporary ( tlob ) <> 1
    then
    raise_application_error ( -20000,
    '"IN OUT" tlob isn''t temporary' );
    end if;
    /* the real logic */
    /* first tabel to be indexed */
    select t1.tagnr, t1.descr
    into v_tagnr, v_descr
    from tweb.pdp_positions t1
    where t1.rowid = rid;
    v_buffer := v_tagnr_start_tag ||
    v_tagnr ||
    v_tagnr_end_tag ||
    v_descr_start_tag ||
         v_descr ||
         v_descr_end_tag;
    v_length := length ( v_buffer );
    Dbms_Lob.WriteAppend(tlob, length(v_buffer) + 1, v_buffer || ' ');
    /* second table to be indexed */
    select t2.tagnr, t2.descr
    into v_tagnr, v_descr
    from tweb.pdp_schema_equ t2
    where t2.rowid = rid;
         v_buffer := v_tagnr_start_tag ||
    v_tagnr ||
    v_tagnr_end_tag ||
    v_descr_start_tag ||
         v_descr ||
         v_descr_end_tag;
    v_length := length ( v_buffer );
    Dbms_Lob.WriteAppend(tlob, length(v_buffer) + 1, v_buffer || ' ');
    /*third table to be indexed */
    select t3.tagnr, t3.descr
    into v_tagnr, v_descr
    from tweb.pdp_equipment t3
    where t3.rowid = rid;
         v_buffer := v_tagnr_start_tag ||
    v_tagnr ||
    v_tagnr_end_tag ||
    v_descr_start_tag ||
         v_descr ||
         v_descr_end_tag;
    v_length := length ( v_buffer );
    Dbms_Lob.WriteAppend(tlob, length(v_buffer) + 1, v_buffer || ' ');
    /* fourth table to be indexed */
    select t4.tagnr, t4.descr
    into v_tagnr, v_descr
    from tweb.pdp_Projcode t4
    where t4.rowid = rid;
         v_buffer := v_tagnr_start_tag ||
    v_tagnr ||
    v_tagnr_end_tag ||
    v_descr_start_tag ||
         v_descr ||
         v_descr_end_tag;
    v_length := length ( v_buffer );
    Dbms_Lob.WriteAppend(tlob, length(v_buffer) + 1, v_buffer || ' ');
    end My_Proc_Wide;
    what have I to do, to make this work?
    Any Help would be appriciated!!
    Kind Regards,
    Arsineh

    Arsineh,
    I realise that it has been quite some time since you posted this question but I thought I'd reply just in case you never did manage to get your user datastore working.
    The reason your procedure will not work is simple. A user datastore procedure accepts a rowid input parameter. The rowid is the ID of the row that Oracle Text is currently trying to index. In the example you have given, you are attempting to use the supplied rowid as the primary key for multiple tables, this will simply never work as the rowid's across multiple tables will never correspond.
    The best way to achieve your goal is to create the index on a master table which contains the common primary keys for each of your four tables e.g.
    MASTER_TABLE
    COL:COMMON_KEY (NUMBER(n))
    COL:USER_INDEX_COLUMN (VARCHAR2(1))
    If you create the user datastore index on the MASTER_TABLE.USER_UNDEX_COLUMN column your stored proc simply needs to read the correct row from the MASTER_TABLE (SELECT t.common_key into v_CommonKey FROM master_table t WHERE t.rowid = rid) and issue subsequent queries to extract the relavant data from the t1..t4 tables using the common key e.g.
    SELECT t1.tagnr, t1.descr into v_tagnr, v_descr FROM t1 WHERE t1.[PRIMARY_KEY_FIELD] = v_CommonKey;
    SELECT t2.tagnr, t2.descr into v_tagnr, v_descr FROM t2 WHERE t2.[PRIMARY_KEY_FIELD] = v_CommonKey;
    and so on...
    Hope this helps
    Dean

  • Getting Dump for depreciation run

    Hello
    While taking the depreciation run thr tcode AFAB one background job is created for posting the depreciation value.
    But this background job is terminated giving short dump for INSERT BSEG statement.
    runtime error DBIF_RSQL_INVALID_REQUEST is raised.
    But the same transaction works fine on quality server with same parameters.
    What might be the reason?? How to trace the reason??

    i think insertions in table bseg is not allowed on server u r working on..
    plz reward points if this helps

  • TRM for FOUNDATION Tables

    Hi all,
    I came to know that TRM is such a good reference for all tables in Oracle Apps.
    I got some TRMs in PDF format from Oracle website. I couldn't find any PDF for FOUNDATION tables.
    Where can i find the TRM for FOUNDATION Tables.
    Link for TRMs : Oracle Applications 11i ERP Documentation

    ArunPrasath wrote:
    Hi Srini & Hussein,
    Both of you have suggested the eTRM website to me in my earlier posts, and that was a great reference.
    But i need TRM in PDF files which gives lot of references. Oracle is providing PDF format of TRMs in this link : http://docs.oracle.com/cd/A85964_01/html/erpset.html
    In this link i couldn't find TRM for FOUNDATION tables.
    You can access PDF files from "Diagrams and PDF Files" under "Download Files" section on the left side of the page -- http://etrm.oracle.com/pls/et1211d9/etrm_fndnav.ls_object?c_name=*.PDF&c_type=FILE
    Thanks,
    Hussein

  • Performace Tuning for BSIS table

    Hi All,
      While selection of data from BSIS table , data is not comming in production server it is giving dump for time out.
    So I have changed the code for peformance. I made a secondary idex ZCF and given field MANDT,BUKRS,HKONT,
    GJAHR,BUDAT and MONAT.
    And I wrote code like this.For HKONT I have the below criteria given by user.
    SELECT bukrs hkont augdt augbl zuonr gjahr belnr
             buzei budat xblnr blart monat shkzg dmbtr prctr
        FROM bsis
        INTO TABLE lt_bsis
        WHERE bukrs IN s_bukrs
        AND ( HKONT LIKE '0051%1' OR HKONT LIKE '0051%2' OR HKONT = '0022300010' )
        AND gjahr = year
        AND budat IN s_budat
        AND monat = month
        %_HINTS ORACLE 'INDEX("BSIS" "BSIS~ZCF")'.
    Even then data have not fetchedd within 15 mints and give time out dum.
    Can any body suggest me how can I write the code to reduce time.
    Thanks,
    Rakesh

    Hi,
    We also received the same kiind of problem, i have used bsip table. and i did whatever i can do still iin production iit shows time out error. We tried everything. Then i made that program as Background Job using SM36. Then only we realised it tooks more than 12 hours to produce the output. After a long search we thought to make Index for that BSIP table, and we made that index using SE11. After we made the index properly  , i tested again by scheduling backgroound job then we got that output in just 200 secs (3.4 Minutes). Note the difference.
    It might be due to small problem only. You first check your index of BSIS table and create a one.. or else you schedule a job and see the output..

  • Dumping data into tables directly

    Hi there,
    Is it possible to just dump data into tables directly (matching file structures)?
    Or do we need to use GUI_UPLOAD and then insert them via ABAP statements?
    Thanks,
    Muji

    Hi,
    what is ur requirement exactly.
    There are ways to upload data into database table.
    u can use XI to uplaod data to SAP.
    if it is user data creation, u can create a maintenance dialog and create data thru SE30.
    But if u want to insert volumes of data and need them to be validated as well, u post them thru transactions. this is bDC.
    If u want to upload master data, u use LSMW or direct input.
    If u want to just do direct insert u need to do coding and map the data and insert intot he database,
    but for all these u need abap coding which involves uploading and downloading.

  • Unable to retrieve nametab info for logic table BSEG during Database Export

    Hi,
    Our aim is to Migrate to New hardware and do the Database Export of the existing System(Unicode) and Import the same in the new Hardware
    I am doing Database Export on SAP 4.7 SR1,HP-UX ,Oracle 9i(Unicode System) and during Database Export "Post Load Processing phase" got the error as mentioned in SAPCLUST.log
    more SAPCLUST.log
    /sapmnt/BIA/exe/R3load: START OF LOG: 20090216174944
    /sapmnt/BIA/exe/R3load: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#20
    $ SAP
    /sapmnt/BIA/exe/R3load: version R6.40/V1.4 [UNICODE]
    Compiled Aug 13 2007 16:20:31
    /sapmnt/BIA/exe/R3load -ctf E /nas/biaexp2/DATA/SAPCLUST.STR /nas/biaexp2/DB/DDLORA.T
    PL /SAPinst_DIR/SAPCLUST.TSK ORA -l /SAPinst_DIR/SAPCLUST.log
    /sapmnt/BIA/exe/R3load: job completed
    /sapmnt/BIA/exe/R3load: END OF LOG: 20090216174944
    /sapmnt/BIA/exe/R3load: START OF LOG: 20090216182102
    /sapmnt/BIA/exe/R3load: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#20
    $ SAP
    /sapmnt/BIA/exe/R3load: version R6.40/V1.4 [UNICODE]
    Compiled Aug 13 2007 16:20:31
    /sapmnt/BIA/exe/R3load -datacodepage 1100 -e /SAPinst_DIR/SAPCLUST.cmd -l /SAPinst_DI
    R/SAPCLUST.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (GSI) INFO: dbname   = "BIA20071101021156                                                                               
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "tinsp041                                                    
    (GSI) INFO: sysname  = "HP-UX"
    (GSI) INFO: nodename = "tinsp041"
    (GSI) INFO: release  = "B.11.11"
    (GSI) INFO: version  = "U"
    (GSI) INFO: machine  = "9000/800"
    (GSI) INFO: instno   = "0020293063"
    (EXP) TABLE: "AABLG"
    (EXP) TABLE: "CDCLS"
    (EXP) TABLE: "CLU4"
    (EXP) TABLE: "CLUTAB"
    (EXP) TABLE: "CVEP1"
    (EXP) TABLE: "CVEP2"
    (EXP) TABLE: "CVER1"
    (EXP) TABLE: "CVER2"
    (EXP) TABLE: "CVER3"
    (EXP) TABLE: "CVER4"
    (EXP) TABLE: "CVER5"
    (EXP) TABLE: "DOKCL"
    (EXP) TABLE: "DSYO1"
    (EXP) TABLE: "DSYO2"
    (EXP) TABLE: "DSYO3"
    (EXP) TABLE: "EDI30C"
    (EXP) TABLE: "EDI40"
    (EXP) TABLE: "EDIDOC"
    (EXP) TABLE: "EPIDXB"
    (EXP) TABLE: "EPIDXC"
    (EXP) TABLE: "GLS2CLUS"
    (EXP) TABLE: "IMPREDOC"
    (EXP) TABLE: "KOCLU"
    (EXP) TABLE: "PCDCLS"
    (EXP) TABLE: "REGUC"
    myCluster (55.16.Exp): 1557: inconsistent field count detected.
    myCluster (55.16.Exp): 1558: nametab says field count (TDESCR) is 305.
    myCluster (55.16.Exp): 1561: alternate nametab says field count (TDESCR) is 304.
    myCluster (55.16.Exp): 1250: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 8033: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 2624: failed to convert cluster data of cluster item.
    myCluster: RFBLG      *003**IN07**0001100000**2007*
    myCluster (55.16.Exp): 318: error during conversion of cluster item.
    myCluster (55.16.Exp): 319: affected physical table is RFBLG.
    (CNV) ERROR: data conversion failed.  rc = 2
    (RSCP) WARN: env I18N_NAMETAB_TIMESTAMPS = IGNORE
    (DB) INFO: disconnected from DB
    /sapmnt/BIA/exe/R3load: job finished with 1 error(s)
    /sapmnt/BIA/exe/R3load: END OF LOG: 20090216182145
    /sapmnt/BIA/exe/R3load: START OF LOG: 20090217115935
    /sapmnt/BIA/exe/R3load: sccsid @(#) $Id: //bas/640_REL/src/R3ld/R3load/R3ldmain.c#20
    $ SAP
    /sapmnt/BIA/exe/R3load: version R6.40/V1.4 [UNICODE]
    Compiled Aug 13 2007 16:20:31
    /sapmnt/BIA/exe/R3load -datacodepage 1100 -e /SAPinst_DIR/SAPCLUST.cmd -l /SAPinst_DI
    R/SAPCLUST.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: DbSlControl(DBSL_CMD_NLS_CHARACTERSET_GET): UTF8
    (GSI) INFO: dbname   = "BIA20071101021156                                                                               
    (GSI) INFO: vname    = "ORACLE                          "
    (GSI) INFO: hostname = "tinsp041                                                    
    (GSI) INFO: sysname  = "HP-UX"
    (GSI) INFO: nodename = "tinsp041"
    (GSI) INFO: release  = "B.11.11"
    (GSI) INFO: version  = "U"
    (GSI) INFO: machine  = "9000/800"
    (GSI) INFO: instno   = "0020293063"
    myCluster (55.16.Exp): 1557: inconsistent field count detected.
    myCluster (55.16.Exp): 1558: nametab says field count (TDESCR) is 305.
    myCluster (55.16.Exp): 1561: alternate nametab says field count (TDESCR) is 304.
    myCluster (55.16.Exp): 1250: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 8033: unable to retrieve nametab info for logic table BSEG   
    myCluster (55.16.Exp): 2624: failed to convert cluster data of cluster item.
    myCluster: RFBLG      *003**IN07**0001100000**2007*
    myCluster (55.16.Exp): 318: error during conversion of cluster item.
    myCluster (55.16.Exp): 319: affected physical table is RFBLG.
    (CNV) ERROR: data conversion failed.  rc = 2
    (RSCP) WARN: env I18N_NAMETAB_TIMESTAMPS = IGNORE
    (DB) INFO: disconnected from DB
    SAPCLUST.l/sapmnt/BIA/exe/R3load: job finished with 1 error(s)
    /sapmnt/BIA/exe/R3load: END OF LOG: 20090217115937
    og (97%)
    The main eror is "unable to retrieve nametab info for logic table BSEG "  
    Your reply to this issue is highly appreciated
    Thanks
    Sunil

    Hello,
    acording to this output:
    /sapmnt/BIA/exe/R3load -datacodepage 1100 -e /SAPinst_DIR/SAPCLUST.cmd -l /SAPinst_DI
    R/SAPCLUST.log -stop_on_error
    you are doing the export with a non-unicode SAP codepage. The codepage has to be 4102/4103 (see note #552464 for details). There is a screen in the sapinst dialogues that allows the change of the codepage. 1100 is the default in some sapinst versions.
    Best Regards,
    Michael

  • Error in code generation for deleting table BUT000_TD

    Hi,
    Did anyone encounter this error while working on EEWB ?
    I created the project extension via EEWB and completed the wizard setting with the package (dev. class) value as $temp as I wanted to test it locally.
    One of the errors, that I got is:
    Error in code generation for deleting table BUT000_TD
        Message no. DA464
    Diagnosis
        This error message indicates that internal inconsistencies exist.
    Procedure
        Please consult SAP.

    Hi,
    As I mentioned in my previous post kindly check the consistency of the structure BUT000_TD.
    Regards,
    Sudheer.

Maybe you are looking for

  • IDOC - XI - IDOC with strange Config , Still working . Please comment !

    I am having an running IDOC interface in Production ... whose SAP XI Config looks strange to me ... This Interface is IDOC - XI - IDOC On receiver IDOC adapter ... following Options are checked... 1. APPLY CONTROL VALUE FROM PAYLOAD 2. TAKE SENDER FR

  • Transferring music from iPhone to MacBook Pro

    I  just bought a new macbook pro and went to transfer my music from my iPhone to the new iTunes, and only half transferred. The other half are in the iTunes music section but are not highlighted. Help?

  • PF status of Selection screen and ALV Grid

    Hi, I need to create a report where on clicking the<b> 'ENTER'</b> key on application toolbar   on the <b>selection-screen</b> the processing logic should get  executed ( instead of clicking execute  pushbutton). For this i need to capture the functi

  • HOWTO drop column from Designer instead of warning

    Hi, is there possibility to tell designer to generate scripts for dropping columns that are no longer in repository? I'm using Designer 6i. Thank you, Radek

  • Select Color Range not Working

    i have been using adobe photoshop for over 10 years and suddenly, when i try to select color range, nothing is showing up as selected. even with a simple black and white image, with white or black as the sampled color, nothing gets selected. i don't