How to attach a tabstrip/subscreen to a splitter control/custom container

HI gurus,
Can any one tell me how to add a subscreen/tabstrip to a splitter control in module pool?
thanx
Sukriti.....

https://forums.sdn.sap.com/click.jspa?searchID=21171605&messageID=6879255
similar thread.

Similar Messages

  • How can I load a screen in a splitter control?

    Hello!
    How can I load a screen in a splitter control?
    g

    Hello Gerald
    You cannot. It is the other way around:
    You can display a splitter container on a screen.
    For an example see How to handle two hot spot clicks on one screen
    Regards
      Uwe

  • How to attach a search help in a table control coloumn based on the search

    Hi,
    Can anyone help me for attaching a search help in a table control coloumn based on the search help value of another coloumn
    in the same table control.
    Regards,
    Ratheesh BS

    check
    Re: Switch Search Help during runtime

  • How to attach an internal table as excel file in wf container.

    Hi all, I have a task that is attaching an xml file in wf container, but I need to attach as excel file, how can I convert this xml to excel ?
    my currento code is like this:
    * Call Transformation to generate XSTRING of the generated data      *
      TRY .
          CALL TRANSFORMATION ztr_wf_excel
                       SOURCE appl_stat = li_data2
                       RESULT XML pi_attach.
        CATCH cx_st_error INTO lo_exception.
          lv_text = lo_exception->get_text( ).
      ENDTRY.
      IF lv_text IS INITIAL.
        pi_header-file_type      = 'B'.
        pi_header-file_name      = 'Data'.
        pi_header-file_extension = 'XLS'.
        pi_header-language       = 'E'.
          CALL FUNCTION 'SAP_WAPI_ATTACHMENT_ADD'
            EXPORTING
              workitem_id = lw_worklist-wi_id
              att_header  = pi_header
              att_bin     = pi_attach
              do_commit   = 'X'
            IMPORTING
              att_id      = lw_att_id.
    this code is working fine, but I need to attach an excel file instead an xml file
    How can I do that?
    Regards

    hi ,
    Follow this approach :
    You can use following funcntions. First one to create internal table to string and second FM SCMS_STRING_TO_XSTRING to convert String to XSTRING. Then this XSTRING value you can pass to CL_WD_RUNTIME_SERVICES=>ATTACH_FILE_TO_RESPONSE.
    data: tab_str type string.
      data: begin of it_tab1,
           name(20),
           age(10) ,
          end of it_tab1.
    data : lv_name type xstring.
             data it_tab like STANDARD TABLE OF it_tab1.
             data: wa like line of it_tab.
             wa-name = 'naresh'.
             wa-age = '30'.
             append wa to it_tab.
             wa-name = 'naresh1'.
             wa-age = '31'.
             append wa to it_tab.
    CALL FUNCTION 'SOTR_SERV_TABLE_TO_STRING'
    IMPORTING
       TEXT                      = tab_str
      TABLES
        TEXT_TAB                  = it_tab
    CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
      EXPORTING
        TEXT           = tab_str
    IMPORTING
       BUFFER         = lv_name
    CALL METHOD CL_WD_RUNTIME_SERVICES=>ATTACH_FILE_TO_RESPONSE
      EXPORTING
        I_FILENAME      = 'c:\test.txt'
        I_CONTENT       = lv_name
        I_MIME_TYPE     = 'TXT'
    Refer below links. This has been discussed many times :
    Re: download a file

  • How to attach a document  to a material

    Hi
      how to attach a document to the material.if i attach a document to a material. will get automatically pulled up to the bom and then to the
    production order.
    how to do this.

    Hi,
    First inCV01N transaction create document with proper document type which document u want to attach and continue,
    In the Orginals subscreen click it on the open original and upload the file which is in ur local system.
    Once u upload click it on the Object Link tab, In the Object link tab select the material master sub tab.
    In this sub tab  enter the material number and plant and save.
    Go to material master -->Basic data1 view --> In this view  click it on the basic data text tab, it will take u document sub tab in that select the document which u have attached and click it on the detail infomation, there u can view the document.
    Note: For Document maintainance in the SAP needs separate server.
    Regards
    Vijay

  • ALV grid on TABSTRIP- Subscreen

    Hi,
    How to display ALV grid screen on Tabstrip- Subscreen.
    Please send sample code.
    Thanks in advance.
    -Mohan

    Its not going to be different that what you do on a normal screen. I am assuming that you are using OO ALV control.
    Here you do this on the sub screen instead of the main screen. Take a look at my weblog.
    /people/ravikumar.allampallam/blog/2005/06/01/alv-reporting-using-controls--part-i
    regards,
    Ravi
    Note :Please close the thread if this resolves the issue

  • How to attach f4

    how to attach f4 value request for selection screen as subscreen. The values is not coming for selection screen field.
    looking for help
    Regards,
    Satya Vani

    Hi satya,
    You can use this syntax to implement the select-option:
    1. SELECT-OPTIONS sel FOR f.
    2. SELECT-OPTIONS sel FOR (f).
    Declaring a variable selection option
    Objects defined using this statement can have two purposes:
    In reports (programs with type 1 in the attributes):
    You can execute reports with the SUBMIT statement. The statements SELECT-OPTIONS and PARAMETERS determine the technical interface and the user interface. The parameters and selection options you specify are displayed on the selection screen for the user to enter values (see also the addition NO-DISPLAY or SUBMIT without the addition VIA SELECTION-SCREEN.
    In all programs (except subroutine pools, that is, programs with type S):
    Program-internal objects, that are filled at runtime by user input on selection screens. The SELECT-OPTIONS filled in this way can then be used in the WHERE clause of a SELECT statement for selecting data.
    Notes
    sel may be up to 8 characters long.
    <b>This statement defines an internal table sel with a fixed structure which consists of the fields sel-SIGN, sel-OPTION, sel-LOW and sel-HIGH. While sel-SIGN and sel-OPTION have a fixed format (type character, length 1 and 2 respectively), sel-LOW and sel-HIGH inherit the type and length of their reference field f in variant 1.</b>
    sample code :
    DATA SBOOK_WA TYPE SBOOK.
    SELECT-OPTIONS FL_DATE FOR SBOOK_WA-FLDATE.
    INITIALIZATION.
      MOVE: 'I'      TO FL_DATE-SIGN,
            'EQ'     TO FL_DATE-OPTION,
            SY-DATUM TO FL_DATE-LOW.
      APPEND FL_DATE.
      MOVE: 'BT'       TO FL_DATE-OPTION,
            '19960101' TO FL_DATE-LOW,
            '19960630' TO FL_DATE-HIGH.
      APPEND FL_DATE.
    Note :
    You can use this addtiton to your statement for your requirement :
    <b>... VALUE-REQUEST FOR LOW/HIGH</b>
    Effect
    This addition is allowed only for database-specific SELECT-OPTIONS in the include program DBxyzSEL (where xyz = logical database name). It allows you to implement self-programmed value help. (To implement self-programmed value help for report-specific SELECT-OPTIONS, you can use the event key word AT SELECTION-SCREEN ON VALUE-REQUEST FOR ....) If you specify only VALUE-REQUEST (without FOR ... ), the value help refers to both input/output fields of the SELECT-OPTION (i.e. to sel-LOW and sel-HIGH). Otherwise, it refers only to the specified field. The addition has two effects:
    The affected input/output fields are displayed on the selection screen with the pushbutton for F4 (possible entries).
    <b>When the user presses this button or F4</b>, this triggers the FORM routine sel-LOW_VAL or sel-HIGH_VAL in the database access program SAPDBxyz (if it exists). If this addition is specified - and even if the SELECT-OPTION with FOR points to a Dictionary field - this FORM routine is executed when the user presses F4 and the check table or the fixed values of the Dictionary field are not displayed. You can, for example, branch from the routine sel-LOW_VAL or sel-HIGH_VAL to a function module which offers a selection list of possible values. At the end of this FORM routine, the contents of the field sel-LOW or sel-HIGH are copied to the appropriate input/output field.
    Example
    INCLUDE DBXYZSEL
    SELECT-OPTIONS S_PTYPE FOR SAPLANE-PLANETYPE <b>VALUE-REQUEST FOR LOW.</b> ...
    REPORT SAPDBXYZ DEFINING DATABASE XYZ.
    TABLES SAPLANE.
    FORM S_PTYPE-LOW_VAL.
      CALL FUNCTION '...'.
    ENDFORM.
    Thanks and Regards,
    Kunal.
    Message was edited by: Kunal Kumar

  • How to attach screen(for ex: 0240) to dialog box

    Hi there,
    please explain me how to attach screen to dialog box and then how to perform operations(like add that screen data to DB table) on that screen.
    -Tulasi.

    Did you try using subscreen.
    Thanigs

  • Calling a Tabstrip subscreen from subscreen.

    hello to all,
    i want to know whether it is possible to place tabstrip control in a subscreen of the main screen in Dialog programming
    .if yes then how to call the subscreen of the tabstrip .
    for ex:i hv Main screen no.201  as noraml screen and in that i hv Subscreen Area in that i wanted to call Subscreen hving no. 1001,and in that 1001 subscreen i hv placed the tabstrip control.
    know in PBO of 201screen  i hv called the subscreen 1001 in the subscreen<area>.
    but from where should i call the tabstrip subscreen from ?
    so plz help me by providing some code etc.
    thanks,
    shikha

    It`s possible:
    refer SAP Help for documentation on this one:
    http://help.sap.com/saphelp_sm32/helpdata/EN/d1/801bd2454211d189710000e8322d00/content.htm
    Neha

  • How to attach multiple file in one mail

    Hi,
    I've problems with sending multiple files via Gmail account (Ipad version)  When sending the photo or video, I've to just click the photo and choose send to mail one by one. Any simpler way?  Sometimes i did sent both mpg and jpg but the reciepient didn't see any attachment too
    Anyone can help advise how to attach different file (doc, video, photo) in one mail will be a lot appreciated. Thank you so much

    You can attach multiple pictures to an email on an ipad2. Don't know about original iPad.
    Choose a photo or take a screen shot (hold down home button and button next to volume control at same time--screen shot now will appear in photos).
    Go to photos and edit your picture or screen shot, save it, then hold down on the image and copy it.
    Go to mail, create a new mail and paste it in.
    Save you mail as a draft.
    Go back to photos and select a different photo, copy it, and return to your draft, and paste it in. Repeat if you need to add more.
    Anything that you can take a screen shot or have an photo of can be pasted in one at a time into that draft email.
    If mail gets uncooperative, during this process, then double click on home button and quit multitasking mail, then open up mail again and send your draft. Uncooperative means gets frozen.

  • How to attach more than one picture on an email

    How to attach more than one picture on an email?

    Tap the square with arrow on top right and select pictures you want to send (max 5 pictures)
    http://i1224.photobucket.com/albums/ee374/Diavonex/f0bd7d73.jpg

  • How to attach a text in the center of the Ellipse using JXML ?

    How to attach a text in the center of the Ellipse using JXML ? Can we use labelFor="$topEllipse" ?
    <StackPane fx:controller="myfxml.ArchiveLogsController" id="Login" xmlns:fx="http://javafx.com/fxml">
    <children>
    <AnchorPane>
    <!-- Prevent AnchorPane so that it's max = pref. This causes it to center in StackPane -->
    <maxWidth><Double fx:value="-Infinity"/></maxWidth>
    <maxHeight><Double fx:value="-Infinity"/></maxHeight>
    <children>
    <Ellipse fx:id="topEllipse" centerX="100" centerY="100" radiusX="50" radiusY="10" strokeWidth="2" stroke="#FF0000" style="-fx-fill: linear-gradient(to right, white 0%, red 100%);"/>
    *<Label fx:id="ArchLogs_lb" text="My Ellipse Label" />*
    </children>
    <properties>
    <backgroundColor>
    <Color blue="1.0" green="1.0" red="1.0" />
    </backgroundColor>
    <elementLockSel>
    <Boolean fx:value="true" />
    </elementLockSel>
    </properties>
    </AnchorPane>
    </children>
    </StackPane>

    I'd suggest putting the Ellipse and the Label in a StackPane.
    I wonder why so many people call it JXML?
    It is so strange - I guess the JXML name just seems more natural to some people, though I don't know why.
    I think Greg is right and that labelFor is not what you want:
    http://docs.oracle.com/javafx/2.0/api/javafx/scene/control/Label.html
    "Labels also are useful in that they can have mnemonics which, if used, will send focus to the Control listed as the target of the labelFor property . . . A Label can act as a label for a different Control or Node. This is used for Mnemonics and Accelerator parsing. This allows setting of the target Node."

  • After update I am no longer able to open email attachments by just clicking on the attachment. I now have to click control and then click open linked file. How can I open attachments by simply clicking on them?

    After update I am no longer able to open email attachments by just clicking on the attachment. I now have to click control and then click open linked file. How can I open attachments by simply clicking on them?

    Unless you believe middle-click is yours and don't like it being usurped, mine is set globally to "Enter".

  • How to attach files in the new BT Yahoo system

    Can anyone tell me how to attach files to an email in the new system, please? I have a particular reason which is too complicated to go into here why occasionally I want to send files using web-mail rather than an email client (yes, I do know that's the best way). When I click the "attach" tab, I get an (apparently) helpful page which enables me to add several files at once. But there's no "continue" or "do it" button to get me back to the email I've started, and since ther's no tabs in the new system, I'm stumped.
    Solved!
    Go to Solution.

    Have you seen this thread? Not an elegant solution, but it appears to work for some bizarre reason.
    https://community.bt.com/t5/Email/Email-won-t-accept-attachments-error-18-temporary-It-isn-t/td-p/14...

  • How to attach .mdf file to sql server 2008 EXPRESS

    I have .mdf files created using SQL SERVER management studio 2012 in another computer and wish to attach the same to SQL SERVER 2008 EXPRESS in another computer. How should I do so? I tried this method :How
    to: Attach a Database File to SQL Server Express but then it shows an error that the database cannot be created due to compatibility issues.
    Msg 948: The database xyz cannot be opened because it is version 706. This server supports version 655 and earlier. A downward path is not supported..
    Any help??

    I have .mdf files created using SQL SERVER management studio 2012 in another computer and wish to attach the same to SQL SERVER 2008 EXPRESS in another computer. How should I do so? I tried this method :How
    to: Attach a Database File to SQL Server Express but then it shows an error that the database cannot be created due to compatibility issues.
    Msg 948: The database xyz cannot be opened because it is version 706. This server supports version 655 and earlier. A downward path is not supported..
    Any help??
    You are trying to attach SQL Server 2012  database files to SQL Server 2008 R2 which is not allowed, you either need to upgrade your SQL Server 2008 to 2012 or alternatively you can generate all scripts from SQL Server 2012 and execute it in SQL Server
    2008 R2.
    You can refer below link to how to generate script.
    http://blog.sqlauthority.com/2012/07/18/sql-server-generate-script-for-schema-and-data-sql-in-sixty-seconds-021-video/
    Please mark solved if I've answered your question, vote for it as helpful to help other users find a solution quicker
    Praveen Dsa | MCITP - Database Administrator 2008 |
    My Blog | My Page

Maybe you are looking for

  • ABAP webdynpro with interactive form - launching failure

    We are doing some prototype in the solution manager box using ABAP webdynpro and Adobe Interactive Form. I created a webdynpro with a very simple Adobe form embedded in an view. But when I test the webdynpro, I got the following error page in interne

  • Songs Cut Off Before Finished

    Can anyone tell me why on my Mini songs occasionally stop abruptly before they finish and the next song begins? The latest song to do this, which came off my CD, plays to completion on iTunes. Thanks. Sheldon

  • Suppressing 'Payment summary'  print out

    Hi does anyone know how to prevent the payment summary list from being printed ? We still require the Remittance advices to be printed, but the accounts team do not wish for pages and pages of the payment summary list to be printed out any ideas Than

  • IPhoto won't let me import photos from my camera

    I've been uploading my pictures from my camera to iPhoto for a while now and suddenly it's telling me that it can't import the photos because they're unreadable files but they're all jpegs! What do I do???

  • When i download an application, the adobe application manager is quitting why?

    When i need to download an application from this site as a trial version, the application manager is quitting! Can somobody resolve my problem?