Select-Options in Dynpros

I need to add a "Select-Options" in Dynpros. I need the functionality to multiple selection, individual selection and intervals. I can put fields, but without the multiple selection functionality. I will appreciate any help.

Hullo,
it's bot possible to declare a 'SELECT-OPTIONS' in a set of dynpro's.
But IIRC it is possible to declare a 'RANGE' and use the <range>-low and <range>-high fields on your dynpro. You should use some ABAP-logic to program the <range>-sign and <range>-option fields (i.e. use "I" and "BT" when both low and high fields are filled).
And to add the multiple selection button, add a button with the corresponding icon on your dynpro and have it call the function module "COMPLEX_SELECTIONS_DIALOG".
This would get you the look and feel of an select-option as well as the functionality. It's been years since I've tried this, but I recal it is possible.
Please let me know how it works out.

Similar Messages

  • Select-options in dynpro

    Hi expert,
    I maked a modul pool ( se80 ) and i maked a dynpro. In this dynpro i putted a Input/Output field.
    It's run ok, but I would change it in select-options and not a simply I/O field.
    It's possible ? How ?
    Tks a lot,
    bye.
    <LOCKED BY MODERATOR - DUPLICATED THREAD>
    Edited by: Alvaro Tejada Galindo on Jan 7, 2009 4:01 PM

    Let 1000 be the module pool screen on which you want to put Range button.
    Make a subscreen area on it. Let it be named as sub_area.
    Now make a selection screen in your program.
    SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
    SELECT-OPTIONS R_PERNR FOR PERNR-PERNR.
    SELECTION-SCREEN END OF SCREEN.
    Now in screen 1000 flow logic, we can call the selection screen in the sub screen area defined.
    In PBO of 1000
    CALL SUBSCREEN SUB_AREA INCLUDING SY-REPID '0100'.
    Now, code in AT SELECTION-SCREEN OUTPUT event will be exe.
    In PAI of 1000
    CALL SUBSCREEN SA_SS. as the first line after PAI
    Now, AT SELECTION-SCREEN event will be exe.
    Using above method u will get the functionality of Select-Options of Selection Screen on a Module Pool Screen.

  • Select-options in Dynpro program

    hi ,guys,
    now i want add a screen field in my dynpro program, the field should be like the the select-options in a normal report's selection-screen's field of select-options which can hold multiple inputs, batween a range and use can choose the operators.
    pls help.

    You need to create subscreen in the module pool program and need to write select options logic in separate include.
    Please check [this link|https://www.sdn.sap.com/irj/scn/wiki?path=/display/abap/select-options%252bin%252bmodule%252bpool%252bprogramming]
    Edited by: Satya suresh Donepudi on Mar 8, 2009 10:03 PM

  • Select-options on Dynpro?

    Hi colleagues,
    I am just asking me if there is a chance to get select-options on my Dynpro like we use it in the report programming. Sure I can develop it manually, but it would be much easier to have a "select-options" statement on the dynpro side with an automatically defined internal table with the low and high values.
    Maybe there are any function modules available.
    Thanks in advance!
    Regards
    Thomas

    Sure, even easier way is to have a "selection-screen" embedded in a subscreen on your dynpro.  On your dynpro, create a subscreen area.  In your TOP include code a selection screen but use the extension AS SUBSCREEN,  then in the PBO of your dynpro,  say CALL SUBSCREEN.....
    All of the functionality that you want for your select-options will be available.   This has worked very good me in the past.
    By the way, welcome to SDN!!!
    Regards,
    Rich Heilman

  • Select-option on dynpro

    Hi!
    How can I put a select-option like "object" into a dynpro which is not a selection screen.
    Is there any possibility to do this?
    THX:
    Peter

    Hi,
    select options in screen check this code..
    REPORT  ZTEST_SCREEN                            .
    DATA : BEGIN OF IT_DYNPFIELDS OCCURS 3.
            INCLUDE STRUCTURE DYNPREAD.
    DATA : END OF IT_DYNPFIELDS.
    DATA: TEST(10) TYPE C.
    RANGES:  R_UNAME FOR SY-UNAME.
    DATA:     V_USERNAME LIKE  SY-UNAME.
    DATA : V_PROG LIKE D020S-PROG VALUE 'ZTEST_SCREEN',
           V_DNUM LIKE D020S-DNUM VALUE '0100'.
    CALL SCREEN 100.
    *&      Module  STATUS_0100  OUTPUT
    *       text
    MODULE STATUS_0100 OUTPUT.
      SET PF-STATUS 'TEST'.
    *  SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_0100  OUTPUT
    *&      Module  USER_COMMAND_0100  INPUT
    *       text
    MODULE USER_COMMAND_0100 INPUT.
      CASE SY-UCOMM.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_0100  INPUT
    *&      Module  GET_CURSOR_USERNAME  INPUT
    *       text
    MODULE GET_CURSOR_USERNAME INPUT.
      REFRESH IT_DYNPFIELDS.
      CLEAR   IT_DYNPFIELDS.
      MOVE 'V_USERNAME' TO IT_DYNPFIELDS-FIELDNAME.
      APPEND IT_DYNPFIELDS.
      CLEAR   IT_DYNPFIELDS.
      CALL FUNCTION 'DYNP_VALUES_READ'
        EXPORTING
          DYNAME               = V_PROG
          DYNUMB               = V_DNUM
          TRANSLATE_TO_UPPER   = 'X'
        TABLES
          DYNPFIELDS           = IT_DYNPFIELDS
        EXCEPTIONS
          INVALID_ABAPWORKAREA = 1
          INVALID_DYNPROFIELD  = 2
          INVALID_DYNPRONAME   = 3
          INVALID_DYNPRONUMMER = 4
          INVALID_REQUEST      = 5
          NO_FIELDDESCRIPTION  = 6
          INVALID_PARAMETER    = 7
          UNDEFIND_ERROR       = 8
          DOUBLE_CONVERSION    = 9
          STEPL_NOT_FOUND      = 10
          OTHERS               = 11.
      IF SY-SUBRC = 0.
        READ TABLE IT_DYNPFIELDS WITH KEY FIELDNAME = 'V_USERNAME'.
        IF SY-SUBRC = 0.
          V_USERNAME = IT_DYNPFIELDS-FIELDVALUE.
        ENDIF.
      ENDIF.
      PERFORM GET_MULTIPLE.
    ENDMODULE.                 " GET_CURSOR_USERNAME  INPUT
    *&      Form  GET_MULTIPLE
    *       text
    *  -->  p1        text
    *  <--  p2        text
    FORM GET_MULTIPLE .
    * Dynamically holding Field name
      FIELD-SYMBOLS: <FST> TYPE STANDARD TABLE.
      IF  R_UNAME[] IS INITIAL.
        IF NOT V_USERNAME IS INITIAL.
          R_UNAME-SIGN = 'I'.
          R_UNAME-OPTION = 'EQ'.
          R_UNAME-LOW = V_USERNAME.
          APPEND R_UNAME.
          CLEAR  R_UNAME.
        ENDIF.
      ENDIF.
      ASSIGN R_UNAME[] TO <FST>.
      CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
        EXPORTING
          TITLE             = 'Select Multiple Value'(059)
          TEXT              = 'Finish Group'(058)
          SIGNED            = 'X'
          LOWER_CASE        = ' '
          NO_INTERVAL_CHECK = 'X'
          JUST_DISPLAY      = ' '
          JUST_INCL         = 'X'
        TABLES
          RANGE             = <FST>
        EXCEPTIONS
          NO_RANGE_TAB      = 1
          CANCELLED         = 2
          INTERNAL_ERROR    = 3
          OTHERS            = 4.
      IF SY-SUBRC = 0.
        READ TABLE R_UNAME INDEX 1.
        IF SY-SUBRC = 0.
          V_USERNAME = R_UNAME-LOW.
        ENDIF.
      ENDIF.
    ENDFORM.                    " GET_MULTIPLE
    Check this thread...
    Select option in Dialog program screen
    Regards
    Vijay

  • How to design select-option through screen painter

    I am new to screen painter. I want to make a screen having range of values high/low (just like select-option)......How can I do this using screen painter?

    Hi!
    Method 1
    a) Create a subscreen area in your screen layout where you want to create the select options.
    b) In the top include of  your module pool program declare a selection screen as a subscreen e.g.
           SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.
                 select-options s_matnr for mara-matnr.
           SELECTION-SCREEN END OF SCREEN.
    c) In the PBO and PAI of the main screen where the select options needs to be created do a call subscreen of the above screen (100).
           CALL SUBCREEN sub_area INCLUDING    
      This call subscreen statement is necessary for transport of values between screen and program.
    Note: All validations of the selection screen fields e.g. the s_matnr field created above should be done in selection screen events like AT SELECTION-SCREEN etc and not in PAI. These selection screen validations etc should be done in the top include only.
    Method 2
    a) Create 2 separate fields in your screen layout - one for the low value and one for the high value. Insert an icon beside the high value which will call the multiple selections popup screen on user command. Use function module COMPLEX_SELECTIONS_DIALOG to achieve this.
    struc_tab_and_field-fieldname   = con_cust.      " 'KUNNR'
    struc_tab_and_field-tablename = con_kna1.     " 'KNA1'.
    CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'
              EXPORTING
              TITLE                   = ' '
                text                         = g_titl1                                " 'Customers'
                tab_and_field     = struc_tab_and_field
              TABLES
                RANGE                   = rng_kunnr
              EXCEPTIONS
                NO_RANGE_TAB          = 1
                CANCELLED                    = 2
                INTERNAL_ERROR     = 3
                INVALID_FIELDNAME = 4
                OTHERS                           = 5.
    IF NOT rng_kunnr[] IS INITIAL.
             Read the very first entry of the range table and pass it to
             dynpro screen field
               READ TABLE rng_kunnr INDEX 1.
               IF sy-subrc = 0.
                  g_cust = rng_kunnr-low.
               ENDIF.
    You can use the return table rng_kunnr to populate your own internal range table with the values entered by the user. Basically here you are just simulating the work of a select-options parameter by module pool screen elements
    You can go with it also ....
    Re: Select-options in dynpro
    Regards....

  • SELECT OPTIONS IN WEB DYNPRO ABAP

    Hello experts, im working with select options in a WEB Dynpro.
    There are four buttons (cancel,check,reset,copy) that apears above my select option.
    My question is: There is a way to hide that buttons?
    THANKS!

    Sure, you can disable them using the SET_GLOBAL_OPTIONS methdo of the IF_WD_SELECT_OPTIONS class.  Something like this:
    wd_this->m_handler->set_global_options(
        i_display_btn_cancel  = abap_false
        i_display_btn_check   = abap_false
        i_display_btn_reset   = abap_false
        i_display_btn_execute = abap_false ).

  • Select-options problem in dynpro

    hi experts,
                         my requirement is to include select-options in module pool programming. So far i have called a subscreen from a zreport to my dynpro screen.
    but how can i fetch the value from that select-options.By what reference,I mean by what name i can refer to select-options.
    ztest.
    report ztest.
    tables: t001.
    selection-screen begin of screen 100 as subscreen.
    select-options: s_bukrs for t001-bukrs.
    selection-screen: end of screen 100.
    Module pool
    process before output.
    MODULE STATUS_0001.
    call subscreen sub including 'ZTEST' '100'.
    process after input.
    MODULE USER_COMMAND_0001.
    call subscreen sub.
    in debugger s_bukrs in unknown. So by what name i should refer to that select-options values??
    Thanks
    Gaurav

    hi,
    cant u do like this?
    TABLES: mara.
    DATA : BEGIN OF itab1 OCCURS 0,
            matnr LIKE mara-matnr,
           END OF itab1.
    SELECT-OPTIONS : s_matnr FOR mara-matnr.
    *&SPWIZARD: DECLARATION OF TABLECONTROL 'TAB1' ITSELF
    CONTROLS: tab1 TYPE TABLEVIEW USING SCREEN 1001.
    START-OF-SELECTION.
      CALL SCREEN 1001.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'TAB1'. DO NOT CHANGE THIS LINE!
    *&SPWIZARD: UPDATE LINES FOR EQUIVALENT SCROLLBAR
    MODULE tab1_change_tc_attr OUTPUT.
      DESCRIBE TABLE itab1 LINES tab1-lines.
    ENDMODULE.                    "TAB1_CHANGE_TC_ATTR OUTPUT
    *&      Module  get_data  OUTPUT
          text
    MODULE get_data OUTPUT.
      SELECT matnr FROM mara INTO CORRESPONDING FIELDS OF TABLE itab1 WHERE matnr IN s_matnr.
    ENDMODULE.                 " get_data  OUTPUT
    *&      Module  STATUS_1001  OUTPUT
          text
    MODULE status_1001 OUTPUT.
      SET PF-STATUS 'ZTEST'.
    SET TITLEBAR 'xxx'.
    ENDMODULE.                 " STATUS_1001  OUTPUT
    *&      Module  USER_COMMAND_1001  INPUT
          text
    MODULE user_command_1001 INPUT.
      CASE sy-ucomm.
        WHEN 'BACK' OR 'UP' OR 'CANC'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_1001  INPUT
    here i have table control on my screen and rather calling selection screen as sub screen i am calling screen for output from z report it self.....

  • Select-Options on a Tabstrip Subscreen on a REAL Dynpro

    Hello,
    i ve the following problem:
    I have a Report with a normal selection-screen and a call screen 100 after that.
    That Dynpro 100 itself is a Tabstrip-Control. And on one of the Tabs i need to place some Select-options fields ( and a pushbutton + an alv, which shows the result of the selection, but thats not a problem).
    The Problem i think is, that a Tab itself is a subscreen. not a "real" dynpro. i tried to place a subscreen control on that tab ( subscreen in a subscreen dynpro ) and define a selection screen as subscreen. but it s not being displayed.
    selection-screen begin of screen 0888 as subscreen.
    selection-screen begin of block s01 with frame title text-s01.
    select-options: s_mrbe for eedmsettlunit-settlunit.
    selection-screen end  of block s01.
    selection-screen end   of screen 0888.
    in dynpro logic:
    PROCESS BEFORE OUTPUT.
      MODULE status_0222.
      CALL SUBSCREEN:
        subscreen5 INCLUDING sy-repid '0888'.
    PROCESS AFTER INPUT.
      MODULE user_command_0222.
        call SUBSCREEN subscreen5.
    maybe you can help
    Moderator message : Duplicate post locked. Continue with the thread - [Select-Options on a Tabstrip Subscreen on a REAL Dynpro|Select-Options on a Tabstrip Subscreen on a REAL Dynpro;.
    Edited by: Vinod Kumar on Jun 15, 2011 2:02 PM

    Hello,
    Your problem is to show a subscreen selection-screen on another subscreen, right?
    It works for me:
    1. Copy DEMO_DYNPRO_TABSTRIP_LOCAL report.
    2. Add your own subscreen selection-screen:
    SELECTION-SCREEN BEGIN OF SCREEN 9001 AS SUBSCREEN.
    .. SELECT-OPTIONS: p_sel FOR ok_code.
    SELECTION-SCREEN END OF SCREEN 9001.
    3. Call your subscreen 9001 on screen 100
    PROCESS BEFORE OUTPUT.
      MODULE STATUS_0100.
      CALL SUBSCREEN: SUB1 INCLUDING SY-REPID '9001', "<---
                      SUB2 INCLUDING SY-REPID '0120',
                      SUB3 INCLUDING SY-REPID '0130'.
    PROCESS AFTER INPUT.
      MODULE CANCEL AT EXIT-COMMAND.
      CALL SUBSCREEN: SUB1,
                      SUB2,
                      SUB3.
      MODULE USER_COMMAND.

  • Web Dynpro Abap: Select-Options: Save Selection Data

    Hello,
    I am using select-options in web dynpro abap.  Need to add a feature where the user can save his selection values as a variant. 
    All I can think of is getting all the selection values and saving these into a Z table.
    Can you suggest a better way?
    Thank you.
    Irene

    Hi Irene,
    Alas, it's currently not possible. You could write your own wrapper though adding a save button. Inside of the action handler you could retrieve the range tables of all fields, convert their content to a structure you like and save it a fitting db table. My suggestion is to use XML and a DB table with a XSTRING field in the data section to store the range table values.
    Using personalization will allow you to customize your ui and to hide certain select option fields.
    Best regards,
    Thomas

  • Save Variant Web Dynpro Select Options

    Hello experts, im working with select options in a WEB Dynpro.
    It is poosible to save select options varaint?
    I hope anybody had an idea to do this.
    THANKS!
    Markus

    Hi,
      After fetching the values from DB, here is the code snippet to pre fill them in the select option screen
    DATA: lt_range_table TYPE REF TO data,
          rt_range_table TYPE REF TO data,
          read_only TYPE abap_bool,
          typename TYPE string.
    * create a range table that consists of this new data element
      lt_range_table = lo_r_helper_class->create_range_table( i_typename = 'DATA_ELEMENT' ).
    FIELD-SYMBOLS: <tab> TYPE INDEX TABLE,
    <struct> TYPE ANY,
    <wa> TYPE ANY,
    <option> TYPE char2,
    <sign> TYPE char1,
    <high> TYPE ANY,
    <low> TYPE ANY,
    <wa_values> TYPE ANY.
    ASSIGN lt_range_table->* TO <tab>.
    APPEND INITIAL LINE TO <tab> ASSIGNING <wa>.
    ASSIGN COMPONENT 'OPTION' OF STRUCTURE <wa> TO <option>.
    ASSIGN COMPONENT 'HIGH' OF STRUCTURE <wa> TO <high>.
    ASSIGN COMPONENT 'LOW' OF STRUCTURE <wa> TO <low>.
    ASSIGN COMPONENT 'SIGN' OF STRUCTURE <wa> TO <sign>.
    <sign> = 'I'. "Default sign which you want to give
    <option> = 'EQ'. "Default option you want to give
    <low> = 'VALUE_LOW." pass your valriable name here
    *<high> = 'High_value'.
      " using this code snippet, you can prefill multiple rows too
    * add a new field to the selection
      lo_r_helper_class->add_selection_field( i_id = 'S_ID'
      i_description = 'Field 1'
      it_result = lt_range_table ).
       You can also find an useful e-learning for the same [here|https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/60474842-91ca-2b10-3390-d2fd30f335fd]
    Regards,
    Manne.

  • Event should trigger when press enter on select option in web dynpro.

    I want to trigger a event for validation when enter is pressed in select option in web dynpro.
    as the select option is created by the coding and there is no method to trigger the event.
    please advice.

    Pls post it ABAP Forum
    Rgds
    Sumanth.Gururaj
    Consultant/Systems Analyst- SAP SD/MM

  • Web Dynpro ABAP - Select Option and ALV Component Usage

    Hi,
    I'm new in ABAP Web Dynpro and i was trying to follow the SDN tutorial
    Web Dynpro ABAP - Select Option and ALV Component Usage  
    In this video, we create a new Web Dynpro ABAP component that uses both Select Options and ALV. Developers can learn the basic mechanisms for working with both of these reusable components.
    Following the link: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/39c54fe7-0b01-0010-0eb6-d63ac2bdd637
    I implemented and generated the web dynpro with success but when i execute a test i get a dump on select-option definition.
    Note
    The following error text was processed in the system ECD : Exception condition "TYPE_NOT_FOUND" raised.
    The error occurred on the application server ITAWSECCS01D_ECD_00 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: DESCRIBE_BY_NAME of program CL_ABAP_TYPEDESCR=============CP
    I went in debug and the piece of code dumping is:
    lt_range_table =
    wd_this->m_handler->create_range_table( i_typename = 'S_PROJ' ).
    Is there someone who can help me?
    Thanks in advance,
    Stefano.

    Hi,
    I'm new in ABAP Web Dynpro and i was trying to follow the SDN tutorial
    Web Dynpro ABAP - Select Option and ALV Component Usage
    In this video, we create a new Web Dynpro ABAP component that uses both Select Options and ALV. Developers can learn the basic mechanisms for working with both of these reusable components.
    Following the link: https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/39c54fe7-0b01-0010-0eb6-d63ac2bdd637
    I implemented and generated the web dynpro with success but when i execute a test i get
    an error as
    Note
    The following error text was processed in the system EI6 : Exception condition "TYPE_NOT_FOUND" raised.
    The error occurred on the application server EC6IDES_EI6_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: DESCRIBE_BY_NAME of program CL_ABAP_TYPEDESCR=============CP
    I have created a table zmy_table and trying to make USERID field as a select-options.I've written the code as shown below .
    data: itab type standard table of zmy_table,
    wa type zmy_table.
    data:
    node_employee type ref to if_wd_context_node,
    elem_employee type ref to if_wd_context_element,
    stru_employee type wd_this->element_employee ,
    item_userid like stru_employee-userid.
    navigate from <CONTEXT> to <EMPLOYEE> via lead selection
    node_employee = wd_context->get_child_node( name = wd_this->wdctx_employee ).
    @TODO handle not set lead selection
    if ( node_employee is initial ).
    endif.
    get element via lead selection
    elem_employee = node_employee->get_element( ).
    @TODO handle not set lead selection
    if ( elem_employee is initial ).
    endif.
    alternative access via index
    Elem_Employee = Node_Employee->get_Element( Index = 1 ).
    @TODO handle non existant child
    if ( Elem_Employee is initial ).
    endif.
    get single attribute
    elem_employee->get_attribute(
    exporting
    name = `USERID`
    importing
    value = item_userid ).
    select *
    from zmy_table
    into table itab
    where userid = item_userid.
    node_employee = wd_context->get_child_node( 'EMPLOYEE' ).
    node_employee->bind_elements( itab ).
    Is there someone who can help me and can tell am i doing wrong?
    Thanks in advance,
    Dheeraj

  • Web dynpro abap Select-option: upload data from clipboard

    Hi Experts,
    I have a select option in my ABAP Webdynpro application. My requirement is to give the "upload from clipboard" functionality for this select option as it is possible in normal R3.  Please help me on this issue as it is client requirement.
    Thank you in advance.
    Narendra

    Narendranath Reddy wrote:
    Hello Thomos,
    > thanks for your valuable reply.
    >
    > I found the clipboard button in WDR_SELECT_OPTIONS component which is disabled. Is it possible to enable that button using
    > enhancement and write the code as required ?
    >
    > Thanks & regards
    > Narendra
    No.  The button was disabled because the underlying framework support hasn't been delivered yet.  We need this feature implemented in the underlying JavaScript engine (which customers/partners shouldn't attempt to change or extend) before Web Dynpro can use it.

  • Select options in web dynpro ABAP  (Event on_check)

    Hi,
    how can I raise a message in the event-handler method on check for a specifc field out of the Select-Option.
    Best regards,
    Marcus

    Hello,
    Create a new method and call it when you want to show the message.
    METHOD message_handling .
      DATA:
        lr_current_controller TYPE REF TO if_wd_controller,
        lr_message_manager    TYPE REF TO if_wd_message_manager.
      lr_current_controller ?= wd_this->wd_get_api( ).
      lr_message_manager = lr_current_controller->get_message_manager( ).
      lr_message_manager->report_t100_message(
        msgid = iv_msgid
        msgno = iv_msgno
        msgty = iv_msgty
        p1    = iv_p1
        p2    = iv_p2
        p3    = iv_p3
        p4    = iv_p4 ).
    ENDMETHOD.
    In this method, the program show a message that is declared in a mesasge class. If you look at IF_WD_MESSAGE_MANAGER there are other methods to show a message.
    And you can find more information at this blog https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/8402. [original link is broken] [original link is broken] [original link is broken]
    Regards,

Maybe you are looking for

  • Complications in the Product Allocation

    Dear SAP Gurus, I am facing lot of problems in configuring the Product Allocation. Problem-01 I started creating new Info Structure S561 copying the existing Info Structure S140 as the Info Structure is to be assigned in OV3Z (Specify hierarchy). The

  • Not able to post a parked invoice

    Dear Experts , I have a parked invoice in which the posting date is in the closed MM period .   Now i want to post the invoice , where in i m changig the posting date to the current date & trying to post , but , the system gives the following errror.

  • Problem in reading from the File

    Hi, I have a dataset.txt file which is as follows: 2 4 1 2 3 4 2 3 4 5 3 4 5 6now that I need the value that is present in the 1st line of the file(ie;2) and value present in the 2nd line of the file(ie;4), upon that i'll be reading the data into an

  • Please Help in solving this problem

    I am getting following error when i try to add content to a node using administration tool. I am using WL workshop 8.1 Sp1 and using pointbase database. Error message is as follows <Feb 19, 2004 4:49:12 PM GMT+05:30> <Error> <ContentManager> <BEA-415

  • How to run a job?

    Hi, I have a report which should regularly delete a directory on an app server. How to run this report as a job every 10 minutes? Thanks a lot, Olian