SEARCHING FOR CHECK TABLE

Hi,
   this is krishna, where we can check the check table i.e 169p...in the dictionary.....plz tell me...

Go to se16
in table put table name as T169p
u will get the details of this table
from spro
mm- log inv verifincomming invoice--Configure How Unplanned Delivery Costs Are Posted
if u maintain ur company code hear u will not gfet 169p error
Hope thia helps
reward if usefull
Message was edited by:
        Umakant Bhangale

Similar Messages

  • Selection screen parameter validation using search help/check table

    Hi experts,
    I have a select-option that is tied to a search help and check table (type tq80-qmart). Is there a way to automatically validate the field based on what comes up in the F4 search help? What I mean is, when the user hits F4 on the parameter, the list pops up with several records that the user can choose. When the program is executed, I want the program to show an error if the value is NOT in that F4 list.
    I know this can be done in AT SELECTION SCREEN event with a select, but I was wondering if there was a way ABAP does it automatically. Any help will be greatly appreciated.
    Thanks,
    Juan

    Hello Juan,
    SAP does have a standard way of allowing the the user to select from the list via LISTBOX.
    But list box is restricted to parameters only, you cannot attach list boxes to select-options.
    I think the best place to do this validation would be th AT SELECTION-SCREEN event & from your original post it seems you know what code to write

  • Search for checked out content

    Hello,
    I use UCM 10g with SiteStudio. I would like to create a QueryText that searches for all the checked out content. I checked in the database and found that dIsCheckedOut is the variable that is keeping this information.
    The following code gves me no search results, also some content is checked out. Did someone try this before? What am I doing wrong?
    QueryText = "(dIsCheckedOut <substring> `1`)"
    SS_GET_SEARCH_RESULTSThanks
    Tobias

    No you are quite right to point out it is the quickest way to do this - not knocking you, it works and I have certainly done it myself BUT it was on a static (published by SSPU) site so performance was less of an issue.
    Thats the problem with Site Studio I think it is very easy to have a whole bunch of service calls going on.
    I guess other options to explore would be the use of a meta field to hold this information and use a filter to toggle the value on/off. Pretty useless but would mean that the value got promoted into the search results. Or modify the search query so that discheckout is pulled back by SS_GET_SEARCH_RESULTS.
    Tim

  • Script for check table exeststance

    Hi,
    We have 20 instances
    I want to create a shell script like
    1. it will check existence of the table in dba schema
    2. then will check existence of data in the table
    Also send the mail to distro if table is not exits

    I have created one script
    Is it ok ?
    #!/bin/ksh
    for conn in `cat conn_mkt.lst`
    do
    mkt=`echo $conn |cut -d "/" -f1 | cut -b 1-3`
    inst=`echo $conn |cut -d "@" -f2|cut -d "|" -f1`
    owner=`echo $conn |cut -d "/" -f1`
    rm -rf Log/check_table_${mkt}.log
    rm -rf Log/check_count_${mkt}.log
    sqlplus -s ****/****@${inst} <<EOF
    set feed off verify on pages 200 echo on serveroutput on
    spool Log/check_table_${mkt}.log
    select table_name from dba_tables where owner='DBA' and table_name='USR_CONTROL_LOGIN';
    spool off;
    exit
    EOF
    if [ -s Log/check_table_${mkt}.log ]; then
    sqlplus -s ****/****@${inst} <<EOF
    set feed off verify on pages 200 echo on serveroutput on
    spool Log/check_count_${mkt}.log
    select count(1) from TLG_DBA.USR_CONTROL_LOGIN;
    spool off;
    exit;
    EOF
    mailx -s " Table USR_CONTROL_LOGIN is exists in $mkt `cat Log/check_count_${mkt}.log`" <email>
    else
    mailx -s I " Table USR_CONTROL_LOGIN is not exists in $mkt " <email>
    done

  • Search For Advance Table

    Hi All,
    I have to implement custom search similar to seeded competency search. But the requirement is the search criteria will be decided by custom components like choice bean, list bean. Once I capture the these values from listbean and ChoiceBean i have to display result based on those values in advanceTable.
    For That I have created a custom queryRN. queryRN I have added a advanceTableRN,SimpleSearch Panel,SimpleSerch Mapping.
    In SimpleSearchPanel Added a messageComponent layout.
    Now I am confused whether to used seeded functionality or custom one.
    Please Help
    Regards,
    SHD

    SHD,
    Had you tried with the code provided by me above.
    If it is custom then How to do this?1)Create a Button with prompt "GO". Get the GO button event handled in the PFR of CO.
    2) Create a VO with the all the above as where Clause & and this VO with the Advanced Table.
    3) Execute the above VO by passing all the parameters as selected by users. From the below block.
    if(pageContext.getParameter("<button Id>")!=null)
        //get the values from the above bean
       // pass the parameter to this VO & execute the Query.
    }Regards,
    Gyan

  • Error - 21007 Search for table returned error - can't find data source??

    I am using an Oracle thin driver through a BI JDBC system. The system connects fine when testing in my 2004s portal. It also worked fine in VC and I was able to browse tables and views in the Oracle db. Suddenly it has stopped working. When trying to search for a table in VC it returns the error message above.
    The only thing I have changed is the "enable SQL editor" setting in Visual Admin which has been set to true. Changing this back to false has no effect, so I can't see that this should cause the problem.
    Henning

    Dear Henning,
                 Do you solve this case?.
    Best regards,

  • Can't we use Binary SEARCH  for TYPE SORTED TABLE?(Performance Improvement)

    Hi Expert!
                       I have declare a sorted type table with NON -UNIQUE, and want to use Binary search in read statement. But while  using bunary search in read statement I'm facing an error. The ERROR is
    "Table LI_MARC is a SORTED TABLE or INDEX TABLE. The BINARY SEARCH
    addition is only allowed for these tables if the key specified is an
    initial part of the table key."
    Please find detail
    TYES: tt_marc  TYPE SORTED TABLE OF marc   WITH NON-UNIQUE KEY matnr,werks.
    DATA: li_marc type tt_marc.
    READ TABLE li_marc INTO marc WITH KEY matnr = i_mbew-matnr     
                                                                          werks = i_mbew-bwkey BINARY SEARCH . 
    To my understanding , there is no need to mention Bianry Search  for sorted table TYPE. Please  let me know can  i use ?

    Hello,
    there is no need to mention Bianry Search for sorted table TYPE.
    Yes, this is because for SORTED TABLEs binary search algorithm is used by default for READ TABLE. Although you can use BINARY SEARCH addition but it's use is redundant.
    As for your case you've defined the KEY fields incorrectly There shouldn't be any "comma(s)" between the fields.
    TYPES: tt_marc TYPE SORTED TABLE OF marc WITH NON-UNIQUE KEY matnr werks.
    When you define it with commas
    TYPES: tt_marc TYPE SORTED TABLE OF marc WITH NON-UNIQUE KEY matnr, werks.
    the result is something like this:
    TYPES: tt_marc TYPE SORTED TABLE OF marc WITH NON-UNIQUE KEY matnr.
    TYPES: werks.
    Hence you were getting the syntax error!
    BR,
    Suhas
    PS: As for MARC you can use UNIQUE KEY addition because MATNR & WERKS are the key fields in the table.

  • Report for Check deposit list being presented in Bank

    Dear SAP Experts,
    we are electornic manufaturing and trading company having business in all over the country. we have fourteen branches and diiferent sale outlets. Similarly we have different house banks all over the country where each branch deposit its collcetion (incoming checks)
    Now we have requirements from managment that it wants to see check deposit status. All the checks from fourteen branches being deposited and how many honoured within value date and how many dishonoured
    To meet this requirement i make all necessary configuration for check deposit and configured the scenario. every thing is ok and i also got print through transaction code FF68. but as i demonstrated this to my Finance department , there was requirement of report (not print format) in ALV format to get all the chkecks being presneted at specific date and honoured and dis hounred at that date
    As i searched for check deposit list through SDN i found programme RFKKCK01 for this. i also made alll necessary configuariton for this report but as i executed it there is message "No payment lot corresponds to the selection criteria"
    i am not finding any appropriate stuff on this issue
    Requirement
    Do i going on right track to meet managment requirements i.e. report showing presented, dishonoured and hounured checks for speicfic date(period)??
    Procedure to create payment lot as i am not finding any such field to create payment lot(back end or front end)??
    At presnet we are creating check incoming entry by debiting incoming bank a/c and crediting customer, while in case of check deposit i have to use one additional bank clearing a/c andadditional data entry through t code FF68
    waiting very constructive reply as i always get from SDN
    thank you
    Sajida

    Create a query with joined tables (KNB1, KNA1 & BSAD) will show you the posted deposits for specific date range. 
    Do dishonored checks get posted/updated in your system immediately?  Does this information come from the bank?

  • Check table and value table -Example

    Hi Experts
                  Please give me the step by step procedure to create the check table and value table, and how to work on it.
    Thanks in advance.
    Regards
    Rajaram

    Hi
    Check Table is for Field level Validation whereas Value table is for Domain Level Validations.
    Value Table proposes table for check table.
    I think you are clear with this.
    more elaborate.
    Check Table
    The Check Table is the table used by system to check if a data exist or not exist.
    While creating a table if you want to be sure that a field can have some values
    and these are in a certain table, you can give IT this table as CHECK TABLE.
    Value Table
    This is maintained at Domain Level.
    When ever you create a domain , you can entered allowed values. For example you go to Domain SHKZG - Debit/credit indicator.
    Here only allowed values is H or S.
    When ever you use this Domain, the system will forces you to enter only these values.
    This is a sort of master check . .
    To be maintained as a customization object.
    This mean that if you want to enter values to this table you have to create a development request & transport the same.
    Differences:
    1)check table will carry out the check for input values for the table field being entered in any application
    and value table will provide values on F4 help for that table field.
    2)The check table defines the foreign keys and is part of the table definition.
    The value table is part of the domain definition.
    check table is validation at field level.
    value table is at domain level.
    Value table is defined at the domain level and is used to provide F4 help for all the fields which refer to that domain.
    Check table is defined against a field in SE11 if you want the values in that field to be checked against a list of valid values. For e.g. if you are using the field matnr in a table you could define MARA as the check table.
    Also while defining a check table SAP proposes the value table as check table by default. Referring to the previous example if you tried to define a check table for the matnr field SAP would propose MARA as the check table.
    1. what is the purpose / use ?
    -- so that the user can select values
    from some master table , for that field !!!!
    2. This is done by
    CHECK TABLE (foreign key concept)
    (and not value table)
    3. When we create a check table for a field,
    then
    some DEFAULT table is PROPOSED
    4. that DEFAULT table is nothing
    but PICKED up from the domain of that field,
    and shown from the value of VALUE TABLE.
    CHECK TABLE -it is a parent table.
    for example..
    i have two tables ZTAB1 and ZTAB2.
    I have one common field in both the tables,i can make any ztable to be the check table .If i make Ztab1 to be the check table then when i have to make an entry in ztab2 i will check whether ztab1 is having that value or not..
    its also field level checking..
    Valuetable-It is nothing but default check table.
    one parent can have n number of child tables.For example
    For ztable we have zchild1 and zchild2 tables r there.
    Its domain level checking..When zchild2 uses the same domain as used by zchild1 then the system automatically generates a popup saying a check table already exists would u want to maintain it.
    go to domain and then press the value tab u can see the valuetable at the end...
    Please refer the links below,
    d/r b/n check and value table?
    wjhat is the exct difference between check table and value table
    what is the check table and value table
    check table and value table
    Re: wjhat is the exct difference between check table and value table
    http://www.sap-img.com/abap/difference-between-a-check-table-and-a-value-table.htm

  • Value and check tables

    Hi
    If check table is there for field validation then what is the exclusive use and purpose of value table. Also viceversa?

    Check Table is for Field level Validation whereas Value table is for Domain Level Validations.
    Value Table proposes table for check table.
    I think you are clear with this.
    more elaborate.
    Check Table
    The Check Table is the table used by system to check if a data exist or not exist.
    While creating a table if you want to be sure that a field can have some values
    and these are in a certain table, you can give IT this table as CHECK TABLE.
    Value Table
    This is maintained at Domain Level.
    When ever you create a domain , you can entered allowed values. For example you go to Domain SHKZG - Debit/credit indicator.
    Here only allowed values is H or S.
    When ever you use this Domain, the system will forces you to enter only these values.
    This is a sort of master check . .
    To be maintained as a customization object.
    This mean that if you want to enter values to this table you have to create a development request & transport the same.
    Differences:
    1)check table will carry out the check for input values for the table field being entered in any application
    and value table will provide values on F4 help for that table field.
    2)The check table defines the foreign keys and is part of the table definition.
    The value table is part of the domain definition.
    check table is validation at field level.
    value table is at domain level.
    Value table is defined at the domain level and is used to provide F4 help for all the fields which refer to that domain.
    Check table is defined against a field in SE11 if you want the values in that field to be checked against a list of valid values. For e.g. if you are using the field matnr in a table you could define MARA as the check table.
    Also while defining a check table SAP proposes the value table as check table by default. Referring to the previous example if you tried to define a check table for the matnr field SAP would propose MARA as the check table.
    1. what is the purpose / use ?
    so that the user can select values
    from some master table , for that field !!!!
    2. This is done by
    CHECK TABLE (foreign key concept)
    (and not value table)
    3. When we create a check table for a field,
    then
    some DEFAULT table is PROPOSED
    4. that DEFAULT table is nothing
    but PICKED up from the domain of that field,
    and shown from the value of VALUE TABLE.
    CHECK TABLE -it is a parent table.
    for example..
    i have two tables ZTAB1 and ZTAB2.
    I have one common field in both the tables,i can make any ztable to be the check table .If i make Ztab1 to be the check table then when i have to make an entry in ztab2 i will check whether ztab1 is having that value or not..
    its also field level checking..
    Valuetable-It is nothing but default check table.
    one parent can have n number of child tables.For example
    For ztable we have zchild1 and zchild2 tables r there.
    Its domain level checking..When zchild2 uses the same domain as used by zchild1 then the system automatically generates a popup saying a check table already exists would u want to maintain it.
    go to domain and then press the value tab u can see the valuetable at the end...
    Please refer the links below,
    d/r b/n check and value table?
    wjhat is the exct difference between check table and value table
    what is the check table and value table
    check table and value table
    Re: wjhat is the exct difference between check table and value table
    http://www.sap-img.com/abap/difference-between-a-check-table-and-a-value-table.htm
    <REMOVED BY MODERATOR>
    GAURAV J.
    Edited by: Alvaro Tejada Galindo on Aug 15, 2008 3:29 PM

  • Formatted search on User Table

    Hi..,
          I need to set formatted search for user table which is @DCNR . My Requirement is that i need to  Pick CST NO from BP Master  . In my user screen i had taken CARDCODE value using CFL which is binded to the field U_ven in the table @DCNR.Using this CARDCODE value i need to pick CSTNO from BP master to the user screen which is binded to the table (@DCNR).My Query is as follows but it is not working,
    SELECT crd7.taxid1 from crd7 inner join @dcnr on crd7.cardcode  = @dcnr.u_ven where crd7.cardcode = $[@dcnr.u_ven]
    U_VEN field contains card code value.
    Do i need to follow some other terms in order to write formatted search on user table.
    Hope some one would help to fix this problem.
    thank u,
    -Ashok Krishnan

    Dear Mr Krishnan,
    As a starting poing I would suggest reading these documents regarding UDF and Formatted search:
    https://websmp108.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000437965&_OBJECT=011000358700004463532006E&_SCENARIO=01100035870000000183&
    https://websmp108.sap-ag.de/~form/sapnet?_FRAME=CONTAINER&_HIER_KEY=701100035871000437965&_OBJECT=011000358700003625432006E&_SCENARIO=01100035870000000183&
    let us know if they were usefull.
    Kind Regards,
    Marcella Rivi
    SAP Business One Forums Team
    Edited by: Paul Finneran on Aug 14, 2008 1:15 PM

  • Problem in finding table for check no.

    Hi Experts,
    I need to print the check number in my form, but the functional person gave the table name as REGUD, but it is a structure. Can any one let me what would be the table for check number(REGUD-CHECT) and bank name(REGUD-UBNKA).
    Thanks & Regards,
    Ramana

    Hi,
    Go to Tcode SE84-> ABAP Dictionary -> Fields -> Table Fields --> field name = <your field name>Execute.
    You will get many tables, take one one of these to meet your requirements.
    But i dint get any table for UBNKA field. So just check this field name whether it is right.
    Again you can search for this field table name by putting "bank name" in short description field.
    Thanks
    Nitesh
    Edited by: Nitesh Kumar on Dec 9, 2008 5:15 PM

  • How to add check tables or search helps to search help parameters?

    Hello Forum!
    I have made a Z-Search help, and I have a problem with some of my parameters.
    The field (MARC)-EKGRP (Purchasing Group) has a check Table (T024) and the matching search help (H_T024).
    I seem to find no possibility to add this check Table search help to my EKGRP parameter in my Z-Searc Help.
    (Therefore, the End-User has to type it in Manually, there is no F4 funktionality...)
    Is there a way to do this?
    Thanx for replying!
    Kind Regards,
    Pieter
    PS: I´m experiencing the same problems with other fields as well: to parameter (MARA-)MFRNR I would like to add the seach Help 'KRED', for it appears on my Z-Search Help. And so on....

    Thanks, Archna Raja!
    This is certainly the right direction to look for a solution.
    However, i can not get it to work.
    In debugger Mode I have populated the SHLP-FIELDDESCR field 4AVAILABL  with X.
    Result: The button for the search help appears. But when I click on it, nothing happens.
    I than also tried this in combination with populating the fields:
    REFTABLE
    CHECKTABLE
    No search Help window opened..
    I did not find a fileld  where I can indicate the Search help in the SHLP Structure.
    Am I missing out on something?
    Kind Regards,
    Pieter
    PS: I´m trying to get a search help for The filed EKGRP.
          Check Table:  T024          Serach Help: H_T024
    Edited by: Pieter De Fré on Nov 30, 2010 11:38 AM

  • I have an apple iphone 4gs... It is synced with my outlook exchange in the office. If I do a search for emails that also checks the server then all of a sudden I end up with various amounts unread email with the inbox saying "Inbox 71" ..which is not true

    I have an apple iphone 4gs... It is synced with my outlook exchange in the office. If I do a search for emails that also checks the server then all of a sudden I end up with various amounts unread email with the inbox saying "Inbox 71" ..which is not true. The only way to make the inbox on the iphone back to 0 is to delete the account then re install it.
    Anyone have any ideas

    We need to know more about your system, please download EtreCheck and run the report and please post it on your next reply. Then we can see how your system is configured, what apps are on it and look for anything obvious. We will look forward to seeing your report.

  • Searching for the fields of a table(very very urgent)

    Hi all,
    i am in graet trouble now.i am searching for the fields like
    1)country of origin where the finished good is created.
    2) customer sales order number
    3)customer sales order line number
    i am writing a report for delivery order.in this report i have to refer customer PO & customer SO .
      i mean, my company has a customer ( seagate) & seagate has a customer (let maxtor).initially maxtor will give a PO to seagate then seagate will raise a SO againest maxtor.
       Then seagate will send PO number(of maxtor), PO line number,SO number(seagate), SO line number(seagate) to our company.
       Then i have to write a report for sales order & delivery order.in these reports i have to refer seagate PO number & seagate SO number for reference.
    i got PO number as vbkd-bstkd but not getting any field for reference Sales order.plz advice me on this. it is very very urgent.
    ur idea is highly appreaciated.
    Thank u very much.
    Regards
    pabitra

    check out tables VBAK(sales order header), VBAP(sales items)

Maybe you are looking for

  • New Apple Loop Created at Wrong BPM?

    Hi, I've beat mapped an audio region, which adjusted the project tempo to about 122.5 BPM, which is the correct value. I've trimmed the region to an even number of bars, and exported it as an Apple Loop as I have always done in the past. However, whe

  • How To Display an Image in a Display Image Page Item

    i have a pageitem textbox called SearchBox , a Button called Search and a Display Image called Image i to display and image upon inserting an ID into the searchbox. It work alright if i put a static ID in the BLOB Column returned by SQL statement in

  • FCE/FCP converstion

    Is it possible to convert log files from final cut express to final cut pro and vis-a-versa. If so, is it possible to do this across versions, and if not, which version of FCE corresponds to FCP? Cheers!

  • Setting UserField values in document rows

    Hi all This is the discription of my problem: I have SP1 PL4, moreover I created 2 user Fields in the row’s of documents they are named: U_AnzVE, U_AnzPal By code I try to do the following: I add a new entry for example a Purchase Order (or any other

  • Where are my new pics?

    Sometimes my ipad2 camera places newly taken pics into it's generic Camera Roll Album, But other times i cant find the new pics I just took. Any suggestions?