Select Vender data with first 2 digit

Hi,
I have a requirement. In selection screen i need a parameter with 2 digit.
As per this parameter, i need to select all the venders start with this 2 digit from LFA1.
What should be the select where condition.
Thanks and Regards
Joby Jacob
Moderator message: very basic, please search for available information and try yourself before asking.
locked by: Thomas Zloch on Sep 3, 2010 11:33 AM

Depends on the quality of Netflix streaming that you used.
https://support.netflix.com/en/node/87
Manage Bandwidth Usage
Low (uses up to 0.3 GB per hour)
Medium (uses up to 0.7 GB per hour)
High (uses up to 1 GB per hour, up to 2.8 GB per hour if watching HD, or up to 4.7 GB per hour if watching 3D)
Auto (adjusts itself automatically to deliver the highest possible quality, based on your current internet connection speed)

Similar Messages

  • Select duplicate Data with same No.

    Dear All experts,
        How  we giong to select the data with same No as 1 record count.
    example :    Bellow is the sample table contains 5 rows records, but of records ard same number.
          post No.               Name
          1001                      Jacky
          1001                      Jimmy
          1002                      Mark
          1003                     Jin
          1004                     chloe
    when  i use the select statement bellow : 
    Select * from table into corresposding of table t_table up to  3. 
    will get the result  like below .
          1001                      Jacky
          1001                      Jimmy
          1002                      Mark
    Question is , how i going to write the statement  to get the 3(depend on user insert how many record)  different no.  example , 2records of 1001, 1002 , and 1003 .

    if its a ztable then better to keep a counter field for your requirement.
    else.
    parameter : count type i. "this holds number of required data.
    select * from TT_XYZ into table gt_itab.
    loop at gt_itab into gs_itab.
    at end of post_no.
       count = count - 1.
    endat.
    if count = 0.
      exit.
    endif.
    append gs_itab to gt_itab2.
    clear gs_itab.
    endloop.
    now gt_itab2 holds required entries for you.

  • CStr(date) with single-digit day value

    Post Author: ron2112
    CA Forum: Formula
    CStr({@StartDate}, "M/d/yy") gives me "1/ 1/08" instead of "1/1/08".  (Extra space after the first slash, in case that's not obvious.)  Anyone have a clue why that might be?  I'm running CR2008 on WinXP Pro with regional settings set to the default for the USA. Thanks!Ron Moses

    Hi Chris,
    If you want the user to allow to type different format masks, I think best way to achieve that is to have some piece of javascript that converts it in the character string that APEX accepts.
    For ex. your date picker has a format mask of MM/DD/YYYY
    You can create an onBlur javascript event that converts all dates into the above format.
    Hope that helps,
    Dimitri
    -- http://dgielis.blogspot.com

  • Select of date with yyyymmdd format

    HI I have a report that I want to select the current date -1.
    but our dates are in this format
    YYYYMMDD so I cant just use 'current date?

    What database are you reporting against?
    If you're using Oracle, you should consider creating a SQL Expression field with this code:
    TO_CHAR("DATE_FIELD", 'yyyymmdd')
    You can then use this field in the Record Selection formula to make sure the query generated contains a where clause. The record selection would be:
    totext(currentdate-1, "yyyyMMdd") = {%SQL_Expression_Formula}
    If you're using SQL Server, the SQL Expression formula would be:
    replace(convert(varchar, "DATE_FIELD", 111), '/','')
    -Abhilash

  • Select multiple date with interval in date-navigator

    Hi,
    Is it possible to have a multiple date selection with interval in a date-navigator. When yes, how?
    Richard Middelburg

    Look at the below thread:
    Re: Date Navigator Challenge
    Raja T

  • Select everything starting with first char

    Hi,
    I have a simple question and forgot how to do this. I need to do a select statement and select everything from the table for a field i.e. WERKS starting with 'D'. Any help would be greatly appreciated and rewarded.
    Thanks,
    -David.

    If you simply put your cursor on a SELECT statement and press F!, you'll get your answer very quickly.
    Rob

  • Replacement of FORECAST DELIVERY DATE with DATE OF FIRST RECEIPT

    Please help me in my scenario below and post your valuable comments-
    My Scenario is like -
    For example, In REPORT, For the item 10 of the order 4700035361 our FIRST RECEIPT DATE is in march (14/03/2011) and FORECAST DELIVERY DATE is in december (30/12/2011). This purchase order item was completely received.
    Requirement is like---
    Associated cube is ZCUIMP01.
    (1) The evolution will consist of replace the FORECAST DELIVERY DATE with FIRST RECEIPT DATE of the item.
    (2) The period (Fiscper and Fiscyear) will also be modified.
    (3) Hence the calculation of the YTD will take into account the order and its receipt date.
    (4) The adjustment of the history will be necessary for the year 2011.
    Can anyone suggest, from where i should start my analysis (Should it be Infocube level??).
    What will be the approach to fulfill all the above mentioned requirement (Should we think about Remodeling concept for creating new data model, if yes then how to do?).
    Please reply asap, it will be great help for me.
    My advance thanks to you.
    Thanks & Regards
    Rupali Singh

    Hi Rupali,
    As I understand there is a business change that you need to justify in our report. Unfortunately your explanation of the design has a considerable gap to visualize. In any case, if you need help on to how to approach such a change -
    1. Understand the business change, its purpose and its imapct on your current design and the report.
    2. Understanding the purpose is very important since you will then be able to find workarounds, redesign as per the change required.
    3. Start from the query and check if your replacement of characterisitics with new characteristics can be obtained using functions like Replacement path, attributes, customer exits, etc. Changing a query/creating a new report on the existing model is the most feasible option.
    4. If not, try exploring option to keep the design untouched, and creating a new InfoObject/DSO like structure to capture the date modifications, etc which then can be used on a MultiProvider.
    Hope the above helps!
    Regards,
    Kunal Gandhi

  • Designing View to select Date with Time

    Hi,
    How can we design the view to select the date along with time?
    We know that we can provide drop downs for hours, minutes and seconds.
    Is there any alternative to display UI element to select the date and time. I am in 7.0 SP17
    Thanks

    Hi Tatayya Marni,
    For selecting the Date and Time u can try a workaround. First create a simple type of type date and bind it to an Input Field so that the date can be captured and for the for the time u can use the System Date and using the same SystemDate u can get the Time in Hours, Minutes and Seconds.
    Eg  :- store the SystemDate in a Date variable and to get the hour u can use Date.getHours(), getMinutes
        Date dt = new Date(System.currentTimeMillis());
        dt.getHours(),dt.getMinutes(),dt.getSeconds());
    Hope this works dor u.
    Regards,
    Poojith M V

  • How do I select a date column and display the millesecond along with it.

    I am trying to select a date column from database and want to
    display millesecond with it. How do I do this. I am aware of
    the "alter session set NLS_DATE_FORMAT = 'MM/DD/YY HH:MI:SS'"
    command. However, I do not know how to display this with the
    millesecond.
    Thanks for all the help.

    Example:
    SQL> CREATE OR REPLACE JAVA SOURCE
      2  NAMED "MyTimestamp"
      3  AS
      4  import java.lang.String;
      5  import java.sql.Timestamp;
      6 
      7  public class MyTimestamp
      8  {
      9  public static String getTimestamp()
    10   {
    11   return (new
    12   Timestamp(System.currentTimeMillis())).toString();
    13   }
    14   };
    15  /
    Java created.
    SQL> CREATE OR REPLACE FUNCTION my_timestamp
      2    RETURN VARCHAR2
      3  AS LANGUAGE JAVA
      4  NAME 'MyTimestamp.getTimestamp() return java.lang.String';
      5  /
    Function created.
    SQL> CREATE TABLE test_time
      2    (date_col VARCHAR2 (23))
      3  /
    Table created.
    SQL> INSERT INTO test_time (date_col)
      2  SELECT my_timestamp
      3  FROM   dual
      4  /
    1 row created.
    SQL> SELECT date_col
      2  FROM   test_time
      3  /
    DATE_COL
    2001-11-02 14:58:51.766

  • How do i get all my data and info from my old iphone onto my new one without access to the original itunes that i set my first iphone up on? my partners itunes keeps telling me that its going to replace all my apps and data with his stuff

    how do i get all my data and info from my old iphone onto my new one without access to the original itunes that i set my first iphone up on? my partners itunes keeps telling me that its going to replace all my apps and data with his stuff

    ok so i have my own i tunes library - how do i get all my old apps onto my new library?

  • Select max date from a table with multiple records

    I need help writing an SQL to select max date from a table with multiple records.
    Here's the scenario. There are multiple SA_IDs repeated with various EFFDT (dates). I want to retrieve the most recent effective date so that the SA_ID is unique. Looks simple, but I can't figure this out. Please help.
    SA_ID CHAR_TYPE_CD EFFDT CHAR_VAL
    0000651005 BASE 15-AUG-07 YES
    0000651005 BASE 13-NOV-09 NO
    0010973671 BASE 20-MAR-08 YES
    0010973671 BASE 18-JUN-10 NO

    Hi,
    Welcome to the forum!
    Whenever you have a question, post a little sample data in a form that people can use to re-create the problem and test their ideas.
    For example:
    CREATE TABLE     table_x
    (     sa_id          NUMBER (10)
    ,     char_type     VARCHAR2 (10)
    ,     effdt          DATE
    ,     char_val     VARCHAR2 (10)
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0000651005, 'BASE',    TO_DATE ('15-AUG-2007', 'DD-MON-YYYY'), 'YES');
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0000651005, 'BASE',    TO_DATE ('13-NOV-2009', 'DD-MON-YYYY'), 'NO');
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0010973671, 'BASE',    TO_DATE ('20-MAR-2008', 'DD-MON-YYYY'), 'YES');
    INSERT INTO table_x (sa_id,  char_type, effdt,                          char_val)
         VALUES     (0010973671, 'BASE',    TO_DATE ('18-JUN-2010', 'DD-MON-YYYY'), 'NO');
    COMMIT;Also, post the results that you want from that data. I'm not certain, but I think you want these results:
    `    SA_ID LAST_EFFD
        651005 13-NOV-09
      10973671 18-JUN-10That is, the latest effdt for each distinct sa_id.
    Here's how to get those results:
    SELECT    sa_id
    ,         MAX (effdt)    AS last_effdt
    FROM      table_x
    GROUP BY  sa_id
    ;

  • How to select data with multiple child nodes

    We have the following data:
    me table ei table
    m1 e1
    m1 e2
    m1 e3
    m1 e4
    m2 e5
    m2 e6
    m3 e7
    m3 e8
    I would like to display them as:
    m1 e1
    e2
    e3
    e4
    m2 e5
    e6
    m3 e7
    e8
    How to best do this with sql?
    I would like to produce this list with sql and then transform it to xml.
    Thanks.

    Since you did not use tags it is not clear what results should be:
    SQL> WITH TBL AS (
      2  SELECT 'm1' me, 'e1' ei FROM DUAL UNION ALL
      3  SELECT 'm1' me, 'e2' ei FROM DUAL UNION ALL
      4  SELECT 'm1' me, 'e3' ei FROM DUAL UNION ALL
      5  SELECT 'm1' me, 'e4' ei FROM DUAL UNION ALL
      6  SELECT 'm2' me, 'e5' ei FROM DUAL UNION ALL
      7  SELECT 'm2' me, 'e6' ei FROM DUAL UNION ALL
      8  SELECT 'm3' me, 'e7' ei FROM DUAL UNION ALL
      9  SELECT 'm3' me, 'e8' ei FROM DUAL
    10  )
    11  SELECT  CASE ROW_NUMBER() OVER(PARTITION BY ME ORDER BY EI) WHEN 1 THEN ME ELSE NULL END ME,
    12          EI
    13    FROM  TBL
    14    ORDER BY TBL.ME,
    15             TBL.EI
    16  /
    ME EI
    m1 e1
       e2
       e3
       e4
    m2 e5
       e6
    m3 e7
       e8
    8 rows selected.or
    SQL> WITH TBL AS (
    2 SELECT 'm1' me, 'e1' ei FROM DUAL UNION ALL
    3 SELECT 'm1' me, 'e2' ei FROM DUAL UNION ALL
    4 SELECT 'm1' me, 'e3' ei FROM DUAL UNION ALL
    5 SELECT 'm1' me, 'e4' ei FROM DUAL UNION ALL
    6 SELECT 'm2' me, 'e5' ei FROM DUAL UNION ALL
    7 SELECT 'm2' me, 'e6' ei FROM DUAL UNION ALL
    8 SELECT 'm3' me, 'e7' ei FROM DUAL UNION ALL
    9 SELECT 'm3' me, 'e8' ei FROM DUAL
    10 )
    11 SELECT CASE ROW_NUMBER() OVER(PARTITION BY ME ORDER BY EI) WHEN 1 THEN ME ELSE EI END ME,
    12 CASE ROW_NUMBER() OVER(PARTITION BY ME ORDER BY EI) WHEN 1 THEN EI ELSE NULL END EI
    13 FROM TBL
    14 ORDER BY TBL.ME,
    15 TBL.EI
    16 /
    ME EI
    m1 e1
    e2
    e3
    e4
    m2 e5
    e6
    m3 e7
    e8
    8 rows selected.
    SQL>
    SY.

  • Trying to backup from icloud. Enter username and password - OK. Select backup date - OK. I'm then presented with an old username that of course doesn't match my password. Now what?

    Have a disabled iPad2 that's been wiped. Using current IOS system.  Trying to backup from icloud. Enter username and password - OK. Select backup date - OK. I'm then presented with an old username that of course doesn't match my password. Now what?

    Hi Bluehouse44,
    If you are having difficulty restoring your iPad from an iCloud backup you may want to use the steps in this article to try to get back on track -
    If you can't update or restore your iOS device
    http://support.apple.com/kb/HT1808
    Thanks for using Apple Support Communities.
    Best,
    Brett L

  • Filter Data with Date range.Dates are selected in user form

    Does anybody could help me to create a user form, that user could select the date and time from either calendar or other control button (from Userform control Toolbox) and the VBA code would filter the data on Excel SpreadSheet depending on input...
    I want user to specify start time and the end time, that I would know the period of time which is on interest and filter the data depending on inputs...
    This is part of my table on Sheet1:
    ID                     Time
      Products
    ProdNoExit
    8
    04-06-2013 23:00
    15
    1
    8
    04-06-2013 23:30
    205
    1
    8
    05-06-2013 00:00
    235
    1
    8
    05-06-2013 00:30
    587
    1
    8
    05-06-2013 01:00
    874
    1
    8
    05-06-2013 01:30
    155
    1
    8
    05-06-2013 02:00
    150
    1
    8
    05-06-2013 02:30
    258
    1

    How about this?
    Right-click your tab name, and paste this code into the window that opens.
    Option Explicit
    Private Sub Worksheet_Change(ByVal Target As Range)
    If Target.Count > 1 Then Exit Sub
    If Target.Address = "$A$1" Or _
    Target.Address = "$G$1" Then
    Range("Database").AdvancedFilter _
    Action:=xlFilterInPlace, _
    CriteriaRange:=Range("Criteria"), Unique:=False
    End If
    End Sub
    Knowledge is the only thing that I can give you, and still retain, and we are both better off for it.

  • First digit disappears

    I am facing a peculiar situtation in our multiple forms application. The situation is like this-
    In form A I have a text field named TEXT1 with data type as number.I navigate from form A to Form B and perform some update in Form B. After this I come back to Form A and type a number in the field TEXT1. The first digit that I type in this field almost always disappears. If I do not perform any update in form B this does not happen and things work fine. I am messing up something that I am not aware of.
    Does any body have any clue?
    Thanks for help.

    I've experienced this peculiarity sporadically as well. From what I can tell, sometimes it does this: you navigate to the text item, you enter first char, magically this char gets selected, next char you write replaces selection and from there on everything seems normal.
    I think it's a bug in the java gui part, and some of these things have gotten better with new Jinitiators. 1.3.1.8 on Unix was horrible, 1.3.1.9 (windows) was better and I don't see it happening (much?) with 1.3.1.13 (also on windows).
    Some people tend to experience it more often than others. I've hypothesized somewhat about mouse drivers and that sort of thing ...?
    Regards,
    Jesper Vad Kristensen

Maybe you are looking for

  • 5 wont stay on

    my 5 was working fine all day. then this afternoon it woudnt charge. I plugged the usb into the xbox and it was charging.  but it wont charge anywhere else. now it only stays on about 1 minute then the screen turns blue and it shuts down. it has abou

  • Long fields used in BAPI

    Hi. I have to create a custom BAPI which has one import field as string type. because BAPI doesnt support string data type, I have changed it to char2048 which is giving warning. Ignoring it, when I try releasing it in transaction SWO1, its throwing

  • DNG Conversion - preview size

    In lightroom when converting files to DNG on the pop-up screen is the Choice:  Size of the Preview file: Large, Medium or Do not create. 1. what is the file size for large and medium? 2. What is the impact of NOT creating a preview?  When I've tested

  • IMAC powers down before boot up is complete

    After a forced power down my iMAC won't boot again. The machine simply powers off after the spinning gear on the gray start up screen spins for a few seconds. I've tried booting in safe mode, doing a PRAM reset and inserting the Installer DVD but I d

  • "sharing" pages from an iphoto book to iweb

    Hi - I am trying to take pages of my photo book from iphoto and publish them to my website. Whenever I try to 'share' these pages (share-send to iweb-photo page) the photo page part is greyed out. It will only allow me to do it with one picture not a