A ALV with some editable fields which have dictionary search help

Hi all:
       There is a requirement to implement an ALV with some editable fields which have dictionary search help, do you have any idea?
thank you very much

Hi - yes it can be done.
1st in your object select the component SALV_WD_TABLE (ALV component) * do all the bindings of your component to your VIEW, Component usage interface, etc.
When you are declaring your context node attributes if you add a TYPE Data element that has a search help bind to the data element it will be accessible in your ALV or in the Attribute there's a INPUT HELP that option that you can add the search help there but you need to have your ALV input enable
for example:
data: lr_input_field  Type Ref To cl_salv_wd_uie_input_field,
lt_column Type salv_wd_t_column_ref,
ls_colum Type salv_wd_s_column_ref,
lv_value Type Ref To cl_salv_wd_config_table,
l_col_name type string,
lr_cmp_usage Type Ref To if_wd_component_usage,
lo_interfacecontroller Type Ref To iwci_salv_wd_table.
lr_cmp_usage = wd_this->wd_cpuse_alv( ).  *ALV is the name you enter for your component usage when declaring component SALV_WD_TABLE at the beginning.
if lr_cmp_usage->has_active_component( ) IS INITIAL.
lr_cmp_usage->create_component( ).
endif.
lo_interfacecontroller = wd_this->wd_cpifc_alv( ). *once again your ALV name
lv_value = lo_interfacecontroller->get_model( ).
lt_columns = lv_value->if_salv_wd_column_settings~get_columns( ).
Loop at lt_columns into ls_column.
l_col_name = ls_column-r_column->get_id( ).
create object lr_input_field
exporting
value_fieldname = l_col_name.
ls_column-r_column->set_cell_editor( value = lr_input_field ). *this will made all your columns input fields
endloop.
hope this help!
Jason PV

Similar Messages

  • I have made .indd file with some form fields in it, now haw to read these fields and manipulate its content through script in indesign

    I have made .indd file with some form fields in it, now haw to read these fields and manipulate its content through script in indesign

    It's probably best to ask in the InDesign Scripting forum:
    InDesign Scripting

  • When I'm editing a video on imovie, it opens with some black parts which are waging. How do I stop it?

    My imovie is with problem. When I'm editing a video, it opens with some black parts which are waging, then the macbook gets slow. The original clip of the event gets all in blue and when I close imovie, it remains loading and lock completely.

    i Founfd this exact behaviour with 1080p mivies on my machine. I redownloaded as 720p and all was fine. I think my computer is getting a little dated.
    If this is true for you then Select Preferences, Store and When downloading High Definition videos, prefer and select 720p. Then red donload form the Purchased link under Quick Links in iTunes Store

  • I want to create an ALV  with two row fields name

    Hi
    I want to create an ALV  with two row fields name. please suggest how to do it or send some sample code
    thanks

    Hi,
    see this link
    http://****************/Tutorials/ALV/ALVMainPage.htm
    http://www.alvrobot.com.ar/tutorial.php
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b09ac4d5-e3ad-2910-6a81-96d1b861928c
    http://abapprogramming.blogspot.com/2007/11/alv-check-boxes-sample-code.html
    REPORT zalv5 NO STANDARD PAGE HEADING.
    Description----
    TOPICS INTRODUCED:
    1. Learn about the u2018Standardu2019 PF-Status that comes as default.
    2. Exclude function codes from u2018Standardu2019 PF-Status and customize it.
    TYPE-POOLS: slis.
    DATA: BEGIN OF i_data OCCURS 0,
    qmnum LIKE qmel-qmnum,
    qmart LIKE qmel-qmart,
    qmtxt LIKE qmel-qmtxt,
    ws_row TYPE i,
    ws_char(5) TYPE c,
    chk,
    END OF i_data.
    DATA: report_id LIKE sy-repid.
    DATA: ws_title TYPE lvc_title VALUE 'An ALV Report'.
    DATA: i_layout TYPE slis_layout_alv.
    DATA: i_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: i_events TYPE slis_t_event.
    DATA: i_header TYPE slis_t_listheader.
    DATA: i_extab TYPE slis_t_extab.
    SELECT qmnum
    qmart
    qmtxt
    INTO TABLE i_data
    FROM qmel
    WHERE qmnum <= '00030000010'. LOOP AT i_data. i_data-ws_row = sy-tabix. i_data-ws_char = 'AAAAA'. MODIFY i_data. ENDLOOP. report_id = sy-repid. PERFORM f1000_layout_init CHANGING i_layout. PERFORM f2000_fieldcat_init CHANGING i_fieldcat. PERFORM f3000_build_header CHANGING i_header. PERFORM f4000_events_init CHANGING i_events. CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' EXPORTING * I_INTERFACE_CHECK = ' ' * I_BYPASSING_BUFFER = * I_BUFFER_ACTIVE = ' ' i_callback_program = report_id * I_CALLBACK_PF_STATUS_SET = ' ' * I_CALLBACK_USER_COMMAND = ' ' * I_CALLBACK_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_TOP_OF_PAGE = ' ' * I_CALLBACK_HTML_END_OF_LIST = ' ' * i_structure_name = ' ' * I_BACKGROUND_ID = ' ' i_grid_title = ws_title * I_GRID_SETTINGS = is_layout = i_layout it_fieldcat = i_fieldcat * IT_EXCLUDING = * IT_SPECIAL_GROUPS = * IT_SORT = * IT_FILTER = * IS_SEL_HIDE = * I_DEFAULT = 'X' i_save = 'A' * IS_VARIANT = it_events = i_events * IT_EVENT_EXIT = * IS_PRINT = * IS_REPREP_ID = * I_SCREEN_START_COLUMN = 0 * I_SCREEN_START_LINE = 0 * I_SCREEN_END_COLUMN = 0 * I_SCREEN_END_LINE = 0 * IT_ALV_GRAPHICS = * IT_ADD_FIELDCAT = * IT_HYPERLINK = * IMPORTING * E_EXIT_CAUSED_BY_CALLER = * ES_EXIT_CAUSED_BY_USER = TABLES t_outtab = i_data EXCEPTIONS program_error = 1 OTHERS = 2 . IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *& Form F1000_Layout_Init
    FORM f1000_layout_init USING i_layout TYPE slis_layout_alv.
    CLEAR i_layout.
    i_layout-colwidth_optimize = 'X'.
    i_layout-edit = 'X'.
    ENDFORM. " F1000_Layout_Init
    *& Form f2000_fieldcat_init
    FORM f2000_fieldcat_init CHANGING i_fieldcat TYPE slis_t_fieldcat_alv.
    DATA: line_fieldcat TYPE slis_fieldcat_alv.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'QMNUM'. " The field name and the table
    line_fieldcat-tabname = 'I_DATA'. " name are the two minimum req.
    line_fieldcat-key = 'X'. " Specifies the column as a key (Blue)
    line_fieldcat-seltext_m = 'Notification No.'. " Column Header
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'QMART'.
    line_fieldcat-ref_tabname = 'I_DATA'.
    line_fieldcat-hotspot = 'X'. " Shows the field as a hotspot.
    line_fieldcat-seltext_m = 'Notif Type'.
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'QMTXT'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_m = 'Description'.
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'WS_ROW'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_m = 'Row Number'.
    APPEND line_fieldcat TO i_fieldcat.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'WS_CHAR'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_l = 'Test Character Field'.
    line_fieldcat-datatype = 'CHAR'.
    line_fieldcat-outputlen = '15'. " You can specify the width of a
    APPEND line_fieldcat TO i_fieldcat. " column.
    CLEAR line_fieldcat.
    line_fieldcat-fieldname = 'CHK'.
    line_fieldcat-tabname = 'I_DATA'.
    line_fieldcat-seltext_l = 'Checkbox'.
    line_fieldcat-checkbox = 'X'. " Display this field as a checkbox
    line_fieldcat-edit = 'X'. " This option ensures that you can
    " edit the checkbox. Else it will
    " be protected.
    APPEND line_fieldcat TO i_fieldcat.
    ENDFORM. " f2000_fieldcat_init
    *& Form f3000_build_header
    FORM f3000_build_header USING i_header TYPE slis_t_listheader.
    DATA: gs_line TYPE slis_listheader.
    CLEAR gs_line.
    gs_line-typ = 'H'.
    gs_line-info = 'This is line of type HEADER'.
    APPEND gs_line TO i_header.
    CLEAR gs_line.
    gs_line-typ = 'S'.
    gs_line-key = 'STATUS 1'.
    gs_line-info = 'This is line of type STATUS'.
    APPEND gs_line TO i_header.
    gs_line-key = 'STATUS 2'.
    gs_line-info = 'This is also line of type STATUS'.
    APPEND gs_line TO i_header.
    CLEAR gs_line.
    gs_line-typ = 'A'.
    gs_line-info = 'This is line of type ACTION'.
    APPEND gs_line TO i_header.
    ENDFORM. " f3000_build_header
    *& Form f4000_events_init
    FORM f4000_events_init CHANGING i_events TYPE slis_t_event.
    DATA: line_event TYPE slis_alv_event.
    CLEAR line_event.
    line_event-name = 'TOP_OF_PAGE'.
    line_event-form = 'F4100_TOP_OF_PAGE'.
    APPEND line_event TO i_events.
    CLEAR line_event.
    line_event-name = 'PF_STATUS_SET'.
    line_event-form = 'F4200_PF_STATUS_SET'.
    APPEND line_event TO i_events.
    ENDFORM. " f3000_events_init
    FORM F4100_TOP_OF_PAGE *
    FORM f4100_top_of_page.
    CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    EXPORTING
    it_list_commentary = i_header.
    ENDFORM.
    FORM F4200_PF_STATUS_SET *
    FORM f4200_pf_status_set USING i_extab TYPE slis_t_extab.
    REFRESH i_extab.
    PERFORM f4210_exclude_fcodes CHANGING i_extab.
    SET PF-STATUS 'STANDARD' OF PROGRAM 'SAPLSALV' EXCLUDING i_extab.
    ENDFORM.
    *& Form f4210_exclude_fcodes
    FORM f4210_exclude_fcodes USING i_extab TYPE slis_t_extab.
    DATA: ws_fcode TYPE slis_extab.
    CLEAR ws_fcode.
    ws_fcode = '&EB9'. " Call up Report.
    APPEND ws_fcode TO i_extab.
    ws_fcode = '&ABC'. " ABC Analysis.
    APPEND ws_fcode TO i_extab.
    ws_fcode = '&NFO'. " Info Select.
    APPEND ws_fcode TO i_extab.
    ws_fcode = '&LFO'. " Information.
    APPEND ws_fcode TO i_extab.
    ENDFORM. " f4210_exclude_fcodes
    thanks
    karthik
    reward me if usefull

  • Possible REUSE_ALV_GRID_DISPLAY_LVC  with a Edit Field to collect  after ch

    Hi all
    is it possible for Fuba REUSE_ALV_GRID_DISPLAY_LVC with one Editable field after change the field one by one manually to collect the the change ?
    Event ?
    If yes please could you show me how?
    Thanks in advance

          FORM DO_DATA_CHANGED
          Auf Dateneingabe reagieren
          !!! Dynamischer Aufruf vom ALV. Keine Parameterübergabe
          !!! ==> direkter Zugriff auf benötigte Werte des Hauptprogramms
    -->
    <--
    FORM do_data_changed USING data_changed TYPE REF TO
                                            cl_alv_changed_data_protocol.
      DATA: wa_alv TYPE          lin_output_alv_lvc.
      DATA: wa_mod_cell TYPE lvc_s_modi.
      DATA: h_check_int TYPE i.                              
    wenn keine Datenänderung => FORM verlassen
      CHECK NOT data_changed->mt_mod_cells IS INITIAL.
    Eingabe auf Integer prüfen                              
      READ TABLE data_changed->mt_mod_cells INTO wa_mod_cell  
                               INDEX 1 TRANSPORTING value.    
      CATCH SYSTEM-EXCEPTIONS convt_no_number = 901.          
        COMPUTE h_check_int = wa_mod_cell-value.            
      ENDCATCH.                                                
      IF sy-subrc <> 0.                                      
        EXIT.                                                
      ENDIF.                                                
    geänderte Zeile ermitteln
      READ TABLE data_changed->mt_mod_cells INTO wa_mod_cell
                                            INDEX 1 TRANSPORTING row_id.
    Werte der einzelnen Spalten holen
      CALL METHOD data_changed->get_cell_value
                   EXPORTING i_row_id    = wa_mod_cell-row_id
                             i_fieldname = 'EKORG'
                   IMPORTING e_value     = wa_alv-ekorg.
      CALL METHOD data_changed->get_cell_value
                   EXPORTING i_row_id    = wa_mod_cell-row_id
                             i_fieldname = 'PVERH'
                   IMPORTING e_value     = wa_alv-pverh.
      CALL METHOD data_changed->get_cell_value
                   EXPORTING i_row_id    = wa_mod_cell-row_id
                             i_fieldname = 'PROQU'
                   IMPORTING e_value     = wa_alv-proqu.
      CALL METHOD data_changed->get_cell_value
                   EXPORTING i_row_id    = wa_mod_cell-row_id
                             i_fieldname = 'LIETR'
                   IMPORTING e_value     = wa_alv-lietr.
      CALL METHOD data_changed->get_cell_value
                   EXPORTING i_row_id    = wa_mod_cell-row_id
                             i_fieldname = 'SERVI'
                   IMPORTING e_value     = wa_alv-servi.
    Berechnung
      PERFORM set_ges_pkt CHANGING wa_alv.
    neuen Wert in die Zeile schreiben
      CALL METHOD data_changed->modify_cell
                  EXPORTING i_row_id    = wa_mod_cell-row_id
                            i_fieldname = 'GESPKT'
                            i_value     = wa_alv-gespkt.
    ENDFORM.                                                "DO_DATA_CHANGED
    or
    FORM user_command USING r_ucomm LIKE sy-ucomm
    rs_selfield TYPE slis_selfield.
    DATA: ref1 TYPE REF TO cl_gui_alv_grid.
    CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
    IMPORTING
    e_grid = ref1.
    CALL METHOD ref1->check_changed_data.
    CASE r_ucomm.
    when '...'.
    endcase.

  • Separating values for two fields which is have same search help

    Hi Folks,
    I have one requirement like this. i have 2 fields in MM02 t-code. if i see F4 for those 2 fields it is showing 7 values in that search help. both fields are having same search help so that it is showing same 7 values for these 2 fields. but i want to separate this. if i click on the first fields then it has to show first 3 fields and if i click 2 field it has to show rest 4 fields. can any one suggest what to do for this. these 2 fields are not having search help exit and this one im doing in ECC 6.0.
    Regards..
    kanna

    Hi Rajesh,
    Your are mention related to MM02 which is standard t-code. I am not sure it is possible for that. It can be restrict through code level only..
    Regards,
    Kumar

  • Problem with ALV search help Dictionary Search Help

    Hello experts
    I have a problem with ALV search help.
    I use DDIC table ZXXX with text table ZXXX_T. I created DDIC search help form table ZXXX. In my WD application, in context on COMPONENTCONTROLLER i set on attribute: 'Input help mode' as 'Dictionary Search Help' and in 'Dictionary Search Help' I pass name of new created DDIC search help.
    I create a input field from that atrribute and search help works fine (there was a value and description for value from text table). So I created ALV witch contains that attribute too.
    Next I set column for this attribute in ALV as editable but on Serch help for this collumn I have only value. I DON'T HAVE TEXT DESCRIPTION FOR VALUE.
    Please help me and tell me what I do wrong?
    Miko

    Hello,
    Thank's for your help. I create DDic Search help for all fields from my ALV. Next I changed 'TYPE' for all ALV fields in COMPONENTCONTROLLER from ZXXX-Zfield to Zfield, and I changed 'Input help mode' from 'Automatic' to 'Dictionary Search Help'. Now I see Value and Description for value in Search Help in my ALV.
    Regards
    Miko

  • After updating to IOS 8.2 my iphone 5 constantly searches for a network. I have tried resetting network, restoring from an earlier back up, resetting as a new phone - all of which have been unsuccessful- HELP !!

    After updating to IOS 8.2 my iphone 5 constantly searches for a network. I have tried resetting network, restoring from an earlier back up, resetting as a new phone - all of which have been unsuccessful… HELP !!

    Hi chuckrabaw,
    Thanks for using Apple Support Communities. Based on what you stated, it sounds like the iPhone is searchiong for a network. It looks like you have already done some troubleshooting. There are a few steps listed in this article you did not mention trying, they may be able to help the issue.
    If you see No Service in the status bar of your iPhone or iPad - Apple Support
    Cheers,
    Mario

  • Eventing on dictionary search help on date field

    Hi Experts,
    In my WDABAP application I have a Date input field. I have used dictionary search help into this field to display calender searc help.
    Now on select of the date from the calender I want to trigger one event which will enable some other fields in the application.
    Can you please tell me how to implement this on select event of the date.
    Thanks
    Sonia.

    Hi,
      Since you are using an Input Field , only event possible is "On Enter" event.This event is triggered when  "enter" key is pressed by the user after selecting a value in the input field.So may be you can use this and proceed further.
    Although it may not serve you the actual requirement that you have to achieve , because input field does not have any event for "On select".
    [On Enter|http://help.sap.com/erp2005_ehp_04/helpdata/EN/14/0ce74114a1da6fe10000000a1550b0/frameset.htm] this link might help
    Cheers,
    Aditya.

  • Editable alv with history per field

    hi experts,
    1. How do we set alv editable fields so that they could provide history of entered values, probably the last five entered value. Is it possible?
    2. I used the code below for capturing the enter event of the alv field so that it would get the description for the particular field but is not working.
    CALL METHOD g_grid_costobj->register_edit_event
        EXPORTING
          i_event_id = cl_gui_alv_grid=>mc_evt_enter.
    Please suggest!
    Thank you in advance.

    Looks like this is not possible.
    Check OSS Note 825068
    List of Not Implemented features
    1. Input History/ AutoComplete :
       For any cells in the Grid we do not implement input history or
       autocomplete feature.

  • ALV Grid Display Editable Field Disables Zebra Style

    Hi all,
    First of all, I want to say: "I did my research." I found a post with a very similar question but not identically my case, or at least I can't solve it the same way. [Here is the reference post.|Re: Check box impact on ALV grid (Using OOPS)]
    My Goal: I have an ALV Grid which I want to display using the ZEBRA style in the layout and also make one field in the field catalog editable.
    My Issue: As soon as you make one field editable in the field catalog using the EDIT option, the ZEBRA style in the layout does not works. I also have key fields in the ALV Grid which I want to keep as KEY and which get painted dark blue.
    I can't use the individual row coloring method used in the reference link above since this overrides the blue coloring of the key fields in the ALV. I haven't gone through all the effort of individually painting each cell on the grid, and honestly I don't think it is efficient.
    My Question: Is there a way to have editable fields in the ALV Grid and keep the ZEBRA setting working?
    Please, I will really appreciate if you can read and try to understand my issue before posting incoherent solutions or answers. I don't want to waste anybody's time nor mine.

    Shiva,
    Thanks for your reply; it someway addresses what I am looking for. Unfortunately, I've already went through that reference code; it has exactly the same problem that I am facing.
    If you take that code for example, and you throw it u201Cas-isu201D in your ABAP editor you'll see that even when the ZEBRA style is being used in the layout, since the EDIT option in the field catalog is being set for field NETPR, the ZEBRA style gets lost; only the whole editable column gets white. You can go ahead and play a little bit with that piece of code and you will see what I am saying.
    Regards

  • Hierarchy with some other fields behind

    Hello I have a problem with some a little SQL
    I have this SQL and that works fine:
    SELECT Lpad(Unit_id, Length(unit_id) + LEVEL *4,'-') || ' ' || unit || ' ' || unit_level_id || ' ' || unit_rel_to_parent_val_from as Hierarchie
    from ua_unit where unit_type_id = 1 and unit_rel_to_parent_val_from &lt;= sysdate
    start with unit_parent_id = 'CH'
    connect by prior unit_id = unit_parent_id;
    Now I have somthing like this
    Hierarchie
    ----A ASR 2
    --------A10 ASR FS 3 01.07.2002
    ------------100 ASR FS Bnk East 4 01.07.2002
    ------------105 ASR FS Bnk Central 4 01.07.2002
    Thats create a hierarchy but I need some other fields beyond this hierarchy...how can I do that?
    Greets
    Tierrii
    Edited by: user10411886 on Mar 16, 2009 2:37 AM
    Oh I see the columns are there but miles away from the hierarchy column ( working with SQL Developer 1.2.1) how they can be near to the hierarchy column?
    Edited by: user10411886 on Mar 16, 2009 2:54 AM
    Now I have what I want. Thanks for all the help and Inputs from you guys!

    Thank for the fast reply..
    this with the other columns is the right way first, fist I have now this hierarchy and now after this hierarchy
    there should be some other columns listed, but when i do this
    SELECT Lpad(Unit_id, Length(unit_id) + LEVEL *4,'-') || ' ' || unit || ' ' || unit_level_id as Hierarchie, unit, unit_id
    from ua_unit where unit_type_id = 1 and unit_rel_to_parent_val_from &lt;= sysdate
    start with unit_parent_id = 'CH'
    connect by prior unit_id = unit_parent_id;
    That will not work...
    I hope you now what I mean :8}
    Edited by: user10411886 on Mar 16, 2009 2:27 AM
    Oh I see the columns are there but miles away from the hierarchy column ( working with SQL Developer 1.2.1) how they can be near to the hierarchy column?

  • Dynamic stamps with multiple editable fields

    Our Accounting department wants to go completely digitable with invoices.
    For them to be able to do this they require a stamp that has several editable fields such as
    General Ledger number
    Financial Controllers name
    Comments
    Date
    Approval status
    They want to be able to stamp a PDF invoice and then fill in the fields manually.
    I cannot find a stamp that will do this.  I tried a couple add-in stamp apps for Acrobat 9 but they did not offer this kind of feature.
    Thanks

    Hi teede,
    We have begun publishing a large amount of information on creating/developing custom dynamic stamps  at www.pdfscripting.com due to the number of requests for information on these powerful PDF workflow tools.  It is a membership site requiring a paid membership for full access to all content, but we recently published a free video "PDF Stamps Gone Wild!" on the home page under Featured Videos that shows many possibilities for what you can do with custom dynamic stamps.
    We'll be adding downloads of some the stamp files shown in the video over the next few weeks.
    Hope this helps,
    Dimitri
    WindJack Solutions
    www.pdfscripting.com
    www.windjack.com

  • Modify FBV3 output with some extra fields

    Dear Experts and Gurus,
    I am new to this field and community.
    We have a requirement from Business that they want to add some more field on FBV3 report (e.g. Vendor name , Invoice amount, due date etc.)
    Would you please guide me how to modify or add these extra fields to the transaction.
    I saw this thread before but I can't see solution/answer  for the same.
    Thanks so much

    Hi,
    It is not possible as per the standard to add additional fields in FBV3 listing.
    The program itself shows the possible selection fields for the header which are company code, document number and fiscal year
    Program RFPUEB00 (screen 1000):
    PROCESS BEFORE OUTPUT.
    MODULE %_INIT_PBO.
    MODULE %_PBO_REPORT.
    MODULE %_PF_STATUS.
    MODULE %_BUKRS.    <<<<<
    MODULE %_BELNR.    <<<<<
    MODULE %_GJAHR.    <<<<<
    MODULE %_INIT_PAI.
    CHAIN.
      FIELD  BUKRS-LOW.    >>>>>
      FIELD  BUKRS-HIGH.
      MODULE %_BUKRS.
    ENDCHAIN.
    CHAIN.
      FIELD  BELNR-LOW.   >>>>>
      FIELD  BELNR-HIGH.
      MODULE %_BELNR.
    ENDCHAIN.
    CHAIN.
      FIELD  GJAHR-LOW.   >>>>>
      FIELD  GJAHR-HIGH.
      MODULE %_GJAHR.
    ENDCHAIN.
    The only way to get your requirement would be by modifying the
    standard which it is not recommended by SAP.
    Regards,
    Jaisson.

  • . I am new to IPods. I have a Classic 160GB and I can't figure out how to load my music videos to it. I have had no problem loading my music CD's but no go with the music videos I have. Please HELP. Thanks maxsdad

    Hello:
    I am new to IPods. I have a Classic 160GB and I can't figure out how to load Music Videos to iTunes or the IPod. I have had no problem loading my CD's to iTunes and to the IPod, but no go on the Music Videos.
    Please Help
    maxsdad

    B-Rock:
    Ok. Here's the results. I tried all the music videos I wanted to put onto the IPod and the results were:
    I was able to get good results with 2 full length music videos and 2 video singles(only 2 videos on each disk). For a total of 4 videos.
    I was able to encode 5 full length music videos, but the results were distorted (video and audio).
    I was unable to copy 2 full length videos due to error failures. 1 was a "No Title Found" error, the other was a "NAVDAT" error.
    I guess my next question is: Do you know of any other program(s) that I might try, to see if I can get good results with the videos that didn't work with Handbrake?
    Thanks again for all your help.
    maxsdad

Maybe you are looking for

  • How can i write to or read from the digital I/O of the SPIDER8 with DIADEM?

    We have the problem that we haven't found out yet how to activate the digital I/O of the HBM SPIDER8 hardware with DIADEM 6.0.

  • Listener trouble

    hi ALL: who can help me? oracle listener can't start now. when run lsnrctl start,the error list: oracle@sun1 admin]$ lsnrctl start LSNRCTL for Linux: Version 9.2.0.1.0 - Production on 18-JUN-2003 16:40:15 Copyright (c) 1991, 2002, Oracle Corporation.

  • AxBridge working on 1.4.2_06 and higher ?

    Hi, I tried to run a java bean on 1.4.2_06 and 1.5.0_01 but that doesn't work. I think sun did some major changes in their Axbridge since 1.4.2_06 because it was running well before on 1.4.2_04 and 1.4.2_05. I also tried the java bean samples (JellyB

  • GRN before due date

    Hi, We have one requirement " System should not allow to make GRN before the due date.with 3 days float."  With options of Vendor/material/Pur group/MRP controller. Is it possible ? Please suggest any solution nearer to this requirement. Thanks Prasa

  • Parent Node (Hiearchy)

    Hi all, Wondering if someone can forward a link or documents that help set up parent node. Would this be available in the best practices? Thanks Daniel