Doubt in Select Option fetch

Hello Every1,
I have a select option field for which the input values can be given as in the below example.
Ex. If the input value is given as 10* as the low value and 100* as the high value, i need to fetch records in this range.Which means it should not only include all values starting with 10 and 100 but also the values between 10 and 100. Please let me know how this can be achieved.
Best Regards,
Siva.

Hi Siva,
Why dont you have a try by putting % instead of *
Just its a try...
Cheers,
Sampath

Similar Messages

  • Doubt in select options

    Hi frnds,
    Normally select option allowing only 8 charactor in declaration part, but i want to display with morethan 8 charator. i think some text id formet is there, how to do that.
    for ex,
    s_org for vbak-vkorg  .
    for this i want to give sales organisation.
    how to do this.
    plz its urgent.
    Gowri

    SELECTION-SCREEN BEGIN OF LINE.
    [SELECTION-SCREEN POSITION pos [ldb_additions]].
    SELECTION-SCREEN END OF LINE.
    Effect
    The first and last statements define a new line below the existing elements on the selection screen.
    All the screen elements within these statements that are defined with PARAMETERS SELECT-OPTIONS and SELECTION-SCREEN statements are placed in this line one after the other without spaces.
    Several SELECTION-SCREEN POSITION statements can be listed within the definition of a line. The SELECTION-SCREEN POSITION statement can be used to define the output position for the following screen element. The position pos can either be specified directly as a number between 1 and 83 or using pos_low or pos_high expressions. The expression pos_low specifies the position in which the input field for a parameter or the first input field for a selection criterion is displayed as standard. The expression pos_high specifies the position in which the second input field for a selection criterion is to be displayed as standard. If you make a different specification of the position in the statement defining the following element, this is taken into account. The statement SELECTION-SCREEN POSITION is only possible within the definition of a line. If there are conflicts with existing screen elements, the selection screen cannot be generated.
    The additions ldb_additions can only be used in a selection include for a logical database.
    The following applies in the definition of a line:
    Output fields are not created for selection texts for the parameters displayed in these kinds of lines. Instead, these can be created by specifying a SELECTION-SCREEN COMMENT.
    You cannot define other lines with SELECTION-SCREEN BEGIN OF LINE.
    You cannot define blocks or tabstrip controls with SELECTION-SCREEN BEGIN OF [TABBED] BLOCK.
    Within a line, only one selection criteria should be defined with SELECT-OPTIONS whose description can be specified in advance using SELECTION-SCREEN COMMENT. Other combinations, especially definitions of elements according to the selection criteria, can lead to an undefined behaviour.,
    The backslash (/) is not allowed when giving format specifications.
    You can omit the position specification pos in formatting specifications.
    Note
    If a screen element is assigned a position greater than 83 or is positioned outside a block with a frame, the selection screen is not generated. In the case of input and output fields that were positioned beforehand but have a length that extends beyond the end of the line, the visible length is shortened accordingly and the content is displayed in the visible length and can be scrolled. In this case, pushbuttons and horizontal lines are cut off at position 83 or where the frame of the block ends.
    Example
    A pushbutton, an input field, and an output field in a line in the standard selection screen for an executable program.
    SELECTION-SCREEN: BEGIN OF LINE,
                      PUSHBUTTON 2(10) push USER-COMMAND fcode,
                      POSITION 16.
    PARAMETERS para TYPE c LENGTH 20.
    SELECTION-SCREEN: COMMENT 40(40) text,
                      END OF LINE.
    INITIALIZATION.
      push = 'Push'.
      text = '<--- Fill field, then push button!'.

  • Doubt abt select-option

    select-options : kunnr for kna1-kunnr.
    on the selection screen there is a data base accses for kunnr.
    on the selection screen if i want to have my own selected values like 100
    200
    300
    400
    500.hw to do that.

    Hi,
    You can maintain the Value table for this one, in the Domain just maintain the value table, if this is not posiible then you can maintain programetically.
    In the Initialization event of the program.
    Sel_opt-LOW = 100.
    Append Sel_opt.
    Sel_opt-LOW = 200.
    Append Sel_opt.
    Sel_opt-LOW = 300.
    Append Sel_opt.
    Regards
    Sudheer

  • Doubt on select-option multiple option.

    hi friends,
    i have a select option called condition type(so_kschl) declared with no intervals. but not with no-extension so user can enter more than one condition type at a time .
    the select statement i have written is
    select (some fields)  from a004 where kschl in so_kschl.
    is this select statement for one value ? or can we use this for multiple selection also ,since there are more than one value in select option do we need to use loop .
    any sample code will be of great use ..
    thank you
    with regards,
    gokul.

    Hi Gokul,
    Your statement is correct which can take multiple values for select-options. If will takes single value when specifies both NO-INTERVALS and NO-EXTENSION.
    Give some values to the SO_KSCHL in the INITIALIZATION event
    <b>INTIALIZATION.</b>
    SO_KSCHL-LOW = 'VALUE1'.
    APPEND SO_KSCHL.
    SO_KSCHL-LOW = 'VALUE2'.
    APPEND SO_KSCHL.
    SO_KSCHL-LOW = 'VALUE3'.
    APPEND SO_KSCHL.
    SO_KSCHL-LOW = 'VALUE4'.
    APPEND SO_KSCHL.
    select (some fields) from a004 where kschl in so_kschl.
    Thanks,
    Vinay

  • Select -options Doubt!

    Hi!
        I ve a doubt in select-options
        Select_options: MAT_NO for mara-matnr.
        say, i ve given MAT_NO-LOW = 1.
                              MAT_NO-HIGH = 100.
       Then how many values will be in internal table MAT_NO, Whose fields are sign option low high.
      Thanks

    When you create select-option,system creates internal table automatically.
    select-options structure
    select-options s_matnr for mara-matnr.
    S_MATNR is internal table
    structure of s_matnr :
    Low  - Low value
    High - High value
    Option - you can keep low to high as 'BT' or EQ,LE,GE
    SIGN  - I ( Inclusive,E EXCLUSIVE )
    Reward Points if it is helpful
    Thanks
    Seshu

  • Validation of SELECT OPTIONS

    Hi Gurus,
    Please let me know which is the best way to validate a select option and performance way also it must be best.
    May be this is a silly question but still I was not able to find the best convincing answer in the FORUM.
    Kindly validate.
    Method 1:
    AT SELECTION-SCREEN ON so_vbeln . " Delivery document
    PERFORM validate_vbeln .
    FORM validate_vbeln.
    DATA : l_t_vbeln TYPE TABLE OF vbuk-vbeln WITH HEADER LINE ,
    l_f_vbeln TYPE vbuk-vbeln .
    RANGES ra_vbeln FOR vbuk-vbeln.
    LOOP AT so_vbeln.
    IF NOT so_vbeln-low IS INITIAL.
    ra_vbeln-sign = 'I'.
    ra_vbeln-option = 'EQ'.
    ra_vbeln-low = so_vbeln-low.
    APPEND ra_vbeln.
    ENDIF.
    IF NOT so_vbeln-high IS INITIAL.
    ra_vbeln-sign = 'I'.
    ra_vbeln-option = 'EQ'.
    ra_vbeln-low = so_vbeln-high..
    APPEND ra_vbeln.
    ENDIF.
    ENDLOOP .
    IF NOT so_vbeln[] IS INITIAL.
    SELECT vbeln INTO TABLE l_t_vbeln
    FROM vbuk
    WHERE vbeln IN ra_vbeln.
    ENDIF.
    LOOP AT so_vbeln.
    IF so_vbeln-low space.
    READ TABLE l_t_vbeln WITH KEY = so_vbeln-low.
    IF sy-subrc 0.
    SET CURSOR FIELD 'SO_vbeln-LOW'.
    MESSAGE e001(vb) WITH so_vbeln-low.
    ENDIF.
    ENDIF.
    IF so_vbeln-high space.
    READ TABLE l_t_vbeln WITH KEY = so_vbeln-high.
    IF sy-subrc 0.
    SET CURSOR FIELD 'SO_vbeln-HIGH'.
    MESSAGE e001(vb) WITH so_vbeln-high.
    ENDIF.
    ENDIF.
    ENDLOOP.
    ENDFORM. " validate_vbeln
    Method 2
    AT SELECTION-SCREEN ON so_werks.
    PERFORM validate_plant.
    FORM validate_plant.
    DATA: BEGIN OF l_t_werks OCCURS 0,
    werks LIKE t001w-werks,
    END OF l_t_werks.
    IF NOT so_werks[] IS INITIAL.
    SELECT werks INTO TABLE l_t_werks
    FROM t001w
    WHERE werks IN so_werks.
    ENDIF.
    LOOP AT so_werks.
    IF so_werks-low space.
    READ TABLE l_t_werks WITH KEY werks = so_werks-low.
    IF sy-subrc 0.
    MESSAGE e892(m7) WITH so_werks-low.
    ENDIF.
    ENDIF.
    IF so_werks-high space.
    READ TABLE l_t_werks WITH KEY werks = so_werks-high.
    IF sy-subrc 0.
    MESSAGE e892(m7) WITH so_werks-high.
    ENDIF.
    ENDIF.
    ENDLOOP.
    ENDFORM.

    Hello Raj,
    For me if the SELECT-OPTION fetches atleast one record from the check table, processing should be allowed to proceed.
    It's not required to check each & every records in the select-option & throw an error message for these invalid records (unlike PARAMETERs)
    I would code something like this:
    SELECT vbeln INTO TABLE l_t_vbeln UP TO 1 ROWS
    FROM vbuk
    WHERE vbeln IN so_vbeln. ENDSELECT.
    IF sy-subrc NE 0.
      MESSAGE 'No valid Sales Order selected for the input range. Please check.' TYPE 'E'.
    ENDIF.
    BR,
    Suhas

  • SQD3 select options not fetching all the data?

    Hi abapers,
    standard SDQ3 tcode is not fetching all the data?
    In this standard t.code how to find that for different Select-options, different data retrieval queries have been written?
    where to find the select options conditions are written?
    thans in advance

    This could be an issue as ROWTERMINATOR and FIELDTERMINATOR are not well placed.
    Use FORMAT FILE while using BULK INSERT.

  • Latest Value - Select Option - At Selection Value help

    Hi,
    I need the current values entered in the Select Option of the Selection Screen while generating the Value Help.
    There are two selection option fields in the Selection Screen, Selopt1 and Selopt2, to generate the Value help of Selopt2 i need the latest values of the Selopt1, the function module dynp_read_values does not return all the values of the selectop option Selopt1 it returns only the first row of selopt1-high and selopt1-low, the function module RS_REFRESH_FROM_SELECTOPTIONS does not return the current values entered in the selection screen, is there any way to retrive the latest values of the select option in the event At Selection Screen on Value Request.
    regards
    Santosh

    Hi Santosh,
    When you go for f4 help on selopt2, you can use following code to get the current value of selopt1,
    AT SELECTION-SCREEN ON VALUE-REQUEST
    FOR selopt2-high.
    select * from bkpf into table it_bkpf where
    BKTXT in selopt1[].
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield    = 'BKTXT'
          dynpprog    = sy-repid
          dynpnr      = sy-dynnr
          dynprofield = 'Invoice Id'
          value_org   = 'S'
        TABLES
          value_tab   = it_bkpf .
      IF sy-subrc <> 0.
        " do nothing.
      ENDIF.
    In selection screen, you can directly fetch the value of selection options or parameters by selopt1 or selopt2 (in your case by using AT Selection Screen for value request).
    Reply for further doubts,
    Please reward if useful.
    Thanks and regards,
    Ashlesha Desai
    Edited by: ashlesha desai on May 26, 2008 6:06 AM

  • Select options- (negavtive range)

    Hi,
    My doubt is ...Is it possible to add a condition in the code to  fetch data if we enter a range of valuesin the RED column of  the selection screen .To be precise I want to restrict dates in my selection screen,if i enter certain dates in the selection screen I dont want the details of that date to be printed.By default itself if i enter it in the Red column ,it will restrict but my requirement is to do some more changes if I have given it in the RED columns,so I want to knw if i can add code in the program ,if so how to do it.Please advice.

    Hi,
    Please try something like this.
    select-options: so_date for sy-datum.
    initialization.
    *exclude the dates between August 01, 2007 and August 10, 2007
    so_date-sign = 'E'.
    so_date-option = 'BT'.
    so_date-low = '20070801'.
    so_date-high = '20070810'.
    append so_date.
    Regards,
    Ferry Lianto

  • Report help for multiple Date Select options

    Hi Friends,
    For a particular year wise report, the client wants 12 date select-options which are changeable and informal every year .The report will also be displayed as per the given date selection period wise. Please help me how to fetch the datas from the table as per the given selection period. Currently the report have one date select-option where the user gives selection range as 1.04 to 31.03. It's related to EB power consumption report and hence the new requirement on date selection which are informal and not a fixed date of every year.
    Ex:Selection-Screen
    Period 1 : 08.04.2008 to 12.05.2008
    Period 2: 12.05.2008 to 20.06.2008
    Period 3: 21.06.2008 to 28.07.2008
    Period 4: 29.07.2008 to 15.08.2008
    Period 5: 15.08.2008 to 21.09.2008
    Period 6 : 21.09.2008 to 14.10.2008
    The data will derive as per the above selection ranges.......
    Please advise with example.
    thanks & regards
    Sankar.

    >
    sankar babu wrote:
    > Ex:Selection-Screen
    > Period 1 : 08.04.2008 to 12.05.2008
    > Period 2: 12.05.2008 to 20.06.2008
    > Period 3: 21.06.2008 to 28.07.2008
    > Period 4: 29.07.2008 to 15.08.2008
    > Period 5: 15.08.2008 to 21.09.2008
    > Period 6 : 21.09.2008 to 14.10.2008
    Hi,
    In this case just derive all records matching dates between 08.04.2008 (low in first select-options) and 14.10.2008(high in last select-options.
    Also my advice is to use a single select-options and prompt the user to give the dates as ranges in the multiple entries dialog which can be opened by clicking the button on the right side of the select-options.
    Regards
    Karthik D

  • Re : select-options in abap objects

    Dear friends,
    I want to give select-options in abap-objects program. How to give that.
    Thanking You
    with regards,
    Mani

    HI Mani,
    It's common mix ABAP Procedural with ABAP Objects in the same program.
    You should use the same way used in ABAP procedural program as Marco Cerdelli sad.
    But inside ABAP OBJECTS classes you can't use is these statement type.
    Don't forget to close this thread and all yours previous when your question be answered ! In case of doubt read the [rules of engagement|https://forums.sdn.sap.com/].
    Best Regards.
    Marcelo Ramos

  • Can we use select options in smartform

    can we use select options in smartform if so can any one send me a sample code...
    Thanks
    bhaskhar

    Hi ,
    Can u explain why u want to use select options in smartforms . U can try it in program lines .
    Its better to use select options in the driver program and fetch data accordingly in the driver program or passing the selected values from select options to the smatfrom and fdetching the data there in smartform .
    Regards

  • Getting values from select option

    Hi,
    I have a requirement where the user is going to pass values in select-option  in low and high. lets say s_bwart(movement types).
    now i have to fetch this bwart values into an internal table.
    my internal table will be having only one field that is bwart. so how do i populate my internal table with those values. could any body help me in this.
    Thanks in advance
    neha

    Hi, when using SELECT-OPTIONS, use can pretty much do any kind of selection he wants, including ranges, and excluding values, so the best way to handle it is to select from the data base when the user executes the report.  for example.
    data: begin of ibwart occurs 0,
          bwart type mseg-bwart,
          end of ibwart.
    select-options: s_Bwart for mseg-bwart.
    start-of-selection.
    select bwart into table ibwart
               from <b>T156</b>
                     where bwart in s_bwart.
    Regards,
    Rich Heilman

  • Report text element as selection option

    Hi,
      I encounter a performance problem in a report program that include a self define fields in the selection option.  I use the FM READ_TEXT to read those fields and compare with the user input.Then, eliminates those unmatched records with if else statement.
    Here is my code:
    SELECT-OPTIONS: S_WADAT FOR LIKP-WADAT_IST.
      PARAMETERS: P_MAWB LIKE WA_REPORT-KZABE.
      PARAMETERS: P_HAWB LIKE LIKP-BOLNR.
      PARAMETERS: P_MATNR LIKE LIPS-MATNR.
      PARAMETERS: P_LOT(20) TYPE C.
      CLEAR: I_REPORT,I_DELIVERY,I_DELIVERY_INFO.
      REFRESH: I_REPORT,I_DELIVERY,I_DELIVERY_INFO.
      DATA WHERE_TAB(80) OCCURS 10 WITH HEADER LINE.
      DATA: BEGIN OF LTEXT OCCURS 50.
              INCLUDE STRUCTURE TLINE.
      DATA: END OF LTEXT.
      IF NOT P_HAWB IS INITIAL.
        CONCATENATE ' BOLNR = ' WHERE_TAB INTO WHERE_TAB.
        CONCATENATE WHERE_TAB '''' INTO WHERE_TAB.
        CONCATENATE WHERE_TAB P_HAWB INTO WHERE_TAB.
        CONCATENATE  WHERE_TAB '''' INTO WHERE_TAB.
        APPEND WHERE_TAB.
      ENDIF.
      IF NOT P_MATNR IS INITIAL.
        IF NOT WHERE_TAB IS INITIAL.
          CONCATENATE ' AND MATNR = ' WHERE_TAB INTO WHERE_TAB.
        ELSE.
          CONCATENATE ' MATNR = ' WHERE_TAB INTO WHERE_TAB.
        ENDIF.
        CONCATENATE WHERE_TAB '''' INTO WHERE_TAB.
        CONCATENATE WHERE_TAB P_MATNR INTO WHERE_TAB.
        CONCATENATE  WHERE_TAB '''' INTO WHERE_TAB.
        APPEND WHERE_TAB.
      ENDIF.
      SELECT A1~VBELN
             WADAT_IST
             BOLNR
             C1~LIFNR
             B1~MATNR
             LFIMG
             BTGEW
             B1~CHARG
        INTO CORRESPONDING FIELDS OF TABLE TMP_REPORT
        FROM LIKP AS A1 JOIN LIPS AS B1 ON A1~VBELN = B1~VBELN
            JOIN MCHA AS C1 ON B1~MATNR = C1~MATNR
                               AND
                               B1~WERKS = C1~WERKS
                               AND
                               B1~CHARG = C1~CHARG
         WHERE LFART = 'EL'
               AND
               WADAT_IST IN S_WADAT
               AND
               B1~CHARG NE ''
               AND
               B1~WERKS = 'ABC'
               AND
               (WHERE_TAB)
      SORT TMP_REPORT BY VBELN.
      DATA: V_FLAG TYPE I,
            V_EXCLUDE TYPE I,
            V_LOT_EXCLUDE TYPE I.
      V_FLAG = 0.
      V_EXCLUDE = 0.
      V_LOT_EXCLUDE = 0.
      IF SY-SUBRC = 0.
    * trim the parameter space
        SHIFT P_MAWB RIGHT DELETING TRAILING SPACE.
        SHIFT P_MAWB LEFT DELETING LEADING SPACE.
        SHIFT P_LOT RIGHT DELETING TRAILING SPACE.
        SHIFT P_LOT LEFT DELETING LEADING SPACE.
        LOOP AT TMP_REPORT.
          AT NEW VBELN.
            V_FLAG = 1.
            V_EXCLUDE = 0.
          ENDAT.
          IF V_FLAG = 1.
            PERFORM GET_HEADER_TEXT
                  TABLES
                       LTEXT
                  USING
                       'Z3IH'
                        TMP_REPORT-VBELN
            READ TABLE LTEXT INDEX 1.
            SPLIT LTEXT-TDLINE AT ':' INTO
            TMP_REPORT-VERUR TMP_REPORT-VERUR.
            READ TABLE LTEXT INDEX 2.
            SPLIT LTEXT-TDLINE AT ':' INTO
            TMP_REPORT-KZGBE TMP_REPORT-KZGBE.
            READ TABLE LTEXT INDEX 3.
            SPLIT LTEXT-TDLINE AT ':' INTO
            TMP_REPORT-KZABE TMP_REPORT-KZABE.
            READ TABLE LTEXT INDEX 4.
            SPLIT LTEXT-TDLINE AT ':' INTO
            TMP_REPORT-STABE TMP_REPORT-STABE.
            READ TABLE LTEXT INDEX 5.
            SPLIT LTEXT-TDLINE AT ':' INTO
            TMP_REPORT-PRONU TMP_REPORT-PRONU.
            READ TABLE LTEXT INDEX 6.
            SPLIT LTEXT-TDLINE AT ':' INTO
            TMP_REPORT-LADEL TMP_REPORT-LADEL.
            SHIFT TMP_REPORT-KZABE RIGHT DELETING TRAILING SPACE.
            SHIFT TMP_REPORT-KZABE LEFT DELETING LEADING SPACE.
            MOVE-CORRESPONDING TMP_REPORT TO WA_REPORT.
            MOVE-CORRESPONDING TMP_REPORT TO WA_TMPREPORT.
            V_FLAG = 0.
          ELSE.
            MOVE TMP_REPORT-VBELN TO WA_REPORT-VBELN.
            MOVE TMP_REPORT-LIFNR TO WA_REPORT-LIFNR.
            MOVE TMP_REPORT-MATNR TO WA_REPORT-MATNR.
            MOVE TMP_REPORT-LFIMG TO WA_REPORT-LFIMG.
          ENDIF.
          PERFORM GET_LOT_CODE USING
                                     WA_REPORT-MATNR
                                     '3LTU'
                                     WA_TMPREPORT-CHARG
                                     WA_REPORT-LOT.
          IF V_EXCLUDE  1 AND P_MAWB NE ''
            AND WA_TMPREPORT-KZABE NE P_MAWB .
            V_EXCLUDE = 1.
          ENDIF.
          SHIFT WA_REPORT-LOT RIGHT DELETING TRAILING SPACE.
          SHIFT WA_REPORT-LOT LEFT DELETING LEADING SPACE.
          IF P_LOT NE '' AND P_LOT NE WA_REPORT-LOT.
            V_LOT_EXCLUDE = 1.
          ELSE.
            V_LOT_EXCLUDE = 0.
          ENDIF.
          IF V_EXCLUDE  1 AND V_LOT_EXCLUDE  1.
            APPEND WA_REPORT TO I_REPORT.
            CLEAR WA_REPORT.
            CLEAR TMP_REPORT.
          ENDIF.
        ENDLOOP.

    Hi,
    i found one perfromance issue, try to remove the "INTO CORRESPONDING FIELDS OF TABLE " in your select statement, the order of the fields that you are fetching and the oreder for the fields in your internal table structure should be same, then you can remove "INTO CORRESPONDING FIELDS OF TABLE " and while fetching the fields reffer the table and fields you need to fetch here also you need to main the same order...like you have to do the same in where condition.
    Reward if needful.
    Thanks,
    Sreeram.

  • Doubt on selection-screen

    Hi gurus,
    I done one report to get the Purchase order details. At the time of creating purchase order the users enters a One text field in the Purchase order header text of ME21N transaction. I need to fetch that field into Report. Upto this its fine. I also done this report by using the function module "READ_TEXT". The o/p is also generated successfully.
    But now our client is asking, Please put that text field in selection-screen. Once he presses F4 in that field he needs to display all the values in text field. I know how to do if it is a table field. But it is a purchase order header text. Client enters different text when he creates diferent purchase orders.
      Based on that text field only the report o/p will needs to display.
    For example:
    The User1 creats a Purchase order using ME21N. In that he enters Purchase order header text as ABC.
        when ever he creats a purchase order he enters only ABC.In this way he creats 100 Purchase orders.
      if the user execute the report and in selection screen of that text field , suppose he gives a  ABC, only those 100 purchase orders only needs to appear.
       Like this so many users enters no.of text items. Suppose there are 100 users. totally 100 text values will be there.
        once he presses F4 help on the selecton screen all 100 values need to display. And this is dynamic, the no may increase in future also. thats totally depends on Purcase orders.
    Please guide me how to  do this. 
          Thanks in Advance...
    Thanks and Regards
    Siri........

    hi frnd,
    try like this
    write the logic to fetch text fields into some internal table in
    at selection-screen output event.
    and pass this to selection-option as f4 using ...> call function 'F4IF_INT_TABLE_VALUE_REQUEST'.
    ex
    at selection-screen output.
    use fm "READ_TEXT".  and assign all values to one internal table
    then
    call function 'F4IF_INT_TABLE_VALUE_REQUEST'.
    hope it may help u.
    regards,
    chandu

Maybe you are looking for

  • Save chart data to the file constantly

    I am aqcuiring analog data from DAQ USB 6000 and outputing it on the chart. I have to save all the data to a file as well (text or excel...or at least some file). It is easy to configure it so, that the data is saved after the stop button was pressed

  • Question on CDHDR and recclient

    Please don't move this Admins as i've done about an hours searching to try get the answer I need. I'm getting conflicting answers to what I am looking for. From my understanding of logging changes or actions get saved in the CDHDR table. From what I

  • After upgrading to Lion, system no longer finds my WiFi connection and has to be selected each time.

    Well, the title just about tells it all! It can find the network connection, it just won't choose it automatically as it did under Snow Leopard. Any suggestions? Cheers

  • Warp Stabilizing

    Hi I have been having crashes all evening and very seriours problems. but after a number of restarts It all seams to steam from one clip with Warp stabilizer. After reading info here in the discussion Warp stabilizeris has a problem. It work fine for

  • Sales order create u0096 VA01 - Automatic costing procedure u0096 cond. type EK02

    Hello, Can anybody tell me if there is a possibility to process automatic costing procedure (ctrl + F5) during sales order creation? I can do it manually (ctrl + F5) or it will be done during saving the document. I need to have a value for EK02 befor