How can I place the tabstrip on spitter container?

How can I place the tabstrip on spitter container

Hello Lykin
You cannot. Controls only can hold other controls (e.g. tree, ALV, TextEditor).
The tabstrip element is part of a screen yet outside of any container.
Regards
  Uwe

Similar Messages

  • How can i find the tables which dont contain any data under my database ?

    Can you please suggest me a way to find the tables which dont contain any data under my database ?
    Regards,
    Renu

    Can you please suggest me a way to find the tables which dont contain any data under my database ?
    For the schema that you've logged in to, you could do something like this:
    test@XE>
    test@XE> @test
    test@XE> --
    test@XE> set serveroutput on size 1000000
    test@XE>
    test@XE> declare
      2    n_count  number;
      3  begin
      4    for rec in (select object_name from user_objects
      5                where object_type = 'TABLE')
      6    loop
      7      execute immediate 'select count(*) from '||rec.object_name
      8      into n_count;
      9      if (n_count = 0) then
    10        dbms_output.put_line(rec.object_name);
    11      end if;
    12    end loop;
    13  end;
    14  /
    BONUS
    RUN_STATS
    PL/SQL procedure successfully completed.
    test@XE>
    test@XE>For the other schemas, you could query from dba_objects and probably display the owner as well.
    HTH
    isotope

  • How can I find the yahoo toolbar which contains "identity safe" which contains all of my passwords?

    I can't find the yahoo toolbar which included identity safe, where all my automatic passwords were located.

    While Finder is active, press Command-F (Find in the File menu).
    In that window you can set search criteria. In the second sub-toolbar should be a couple of buttons representing pulldown menus; by default, the first usually shows "kind". Click that one.
    In the menu that opens, if "Size" or "File Size" is not available, select "Other". Then in the new window select "Size" or "File Size" and okay the window. From then on that choice will be available in the first pulldown menu.
    You can use that to search your drive.
    Note - by clicking the "+" button at the far right of the strip containing the pulldown menus, you can add additional search criteria, thus restricting a search to exactly what you want.

  • How can we place the MultipagesPDF, with spceify the position through InDesign CS6?

    when we import pdf file through script of placemultipagepdf in InDesign CS6, we are unable to specify the position, and percentage of document. Pl

    In case you mean the sample script in Applications/Samples/[Insert Programming Language]/PlaceMultipagePDF: What is your question?
    1. "The script does not ask for these values". That seems to be correct. It does not, and never did. So it is working as intended.
    or
    2. "We want to enhance the script and add this functionality but we are unable to do so ..."
       2a. ".. because we cannot find the proper commands to insert." Placing PDFs has been asked before (many times), search this forum for tips.
       2b. ".. because we cannot write scripts, plz do the useful". That is not what this forum is for.
    Way more likely is that you are confusing Adobe's example script with the much more powerful MultiPageImporter by Scott Zanelli (http://indesignsecrets.com/zanelli-releases-multipageimporter-for-importing-both-pdf-and-i ndd-files.php).

  • SAP RM: How can I update the open record view container

    Hi,
    I add a custom method to import a document in to the record tree. Every thing works fine, but only the open record view is not updated. So I stll see the model node and not the instance node.
    I think I forgot a action after I replace the node with the instance. But I don't found a method for this.
    When I close the record and open it again. The view of the tree is correct.
    Regards
    Thomas Fanninger
    Code-Example:
    CALL METHOD ME->CREATE_INSTANCE_CHILD
        EXPORTING
          GID                    = gid
          ACTION                 = 'ADD'
          CHILD_SPSID            = 'Z_RM_PS_SPS_DOCUMENT_TEMPLATE'
        IMPORTING
          NEW_GID                = new_gid
        EXCEPTIONS
          NOT_FOUND              = 1
          CANCELLED              = 2
          CARDCHECK_FAILED       = 3
          NOT_ALLOWED            = 4
          INTERNAL_ERROR         = 5
          NOT_COMPATIBLE         = 6
          SUBTREE_NOT_COMPATIBLE = 7
          others                 = 8.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      doc_role_line = '*'.
      APPEND doc_role_line to doc_role_tab.
      CALL METHOD GLOB_INSTANCE_XMLDOM->REPLACE_ELEMENT_BY_GID
        EXPORTING
          ELEMENT_GID     = new_gid
          DESCRIPTION_TAB = doc_descr_tab
          AREA_POID_TAB   = tab_area_poid
          SRM_POID_TAB    = tab_srm_poid
          SP_POID_TAB     = tab_sp_poid
          SPSID           = str_sps_id
          ROLE_TAB        = doc_role_tab
          RELA_TAB        = doc_rela_tab
        EXCEPTIONS
          REPLACE_FAILED  = 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.

    Hi Thomas,
    ViewContainer is used to hold the views which have to share the same
    screen area..
    That is, If you more than two vies and want to show one view to be visible
    for an operation you will use this ViewContainer.
    You can specify a view to be displayed, bu using Plugs.
    wdThis.wdFire<PlugtoView>();
    pls check these examples:
    Example :
    Updating fields
    swc_set_element wi_container 'ORDER_NO' rbselbest-ebeln.
    Modify container
    CALL FUNCTION 'SWW_WI_CONTAINER_MODIFY'
    EXPORTING
    wi_id = wi_id "Workitem ID
    do_commit = 'X'
    TABLES
    wi_container = wi_container. "New container merged with the workflow container.
    IF sy-subrc 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    That's strange because If I try to update directly in the method it works !!
    swc_set_element wi_container 'ORDER_NO' '123132132'.
    This MF works in 4.6B but not in ECC6.0 ???
    Answer: There are lot of changes mainly with respect to SWW_WI* function modules when you move from 4.6 to ECC 6.0.
    Some of these SWW_WI* doesnt gurantee the correct behavioud and we did face this problem. Please change all your SWW_WI* function modules with SAP_WAPI* equivalents.
    I knew SWW_WI* are working fine in some scenario's in ECC but it doesnt gurantee the behaviour always and even if you raise a message to SAP, SAP came back saying from ECC onwards developers should use SAP_WAPI* and SWW_WI* may not be supported !!
    Better please replace your SWW_WI* FMs with equivalent SAP_WAPI. We have all equivalents. For SWW_WI_CONTAINER_MODIFY equiavalent is SAP_WAPI_WRITE_CONTAINER. Check for all SAP_WAPI in SE37 for a list of all SAP_WAPI FMs.
    hope this helps u.
    kindly reward if found helpful.
    cheers,
    Hema.

  • How can i use the same communication channel to place the file in 2 differe

    Hello Guys,
    We have a requirement where I need to archive the file that i am sending to the legacy FTP server in a Idoc to file scenario.
    How can i place the file in 2 different locations. In this case place the file in the FTP server and a copy of it in the local NFS folder.

    >
    Rajeev kumar wrote:
    > Hello,
    > As per the standards we are supposed to use only one channel.
    > that is one idoc, one message in the sxmb_moni.
    Rajeev,
    You can use an ftp job and save it on XI's folder.
    Process the file into tmp directory on local file system and run operating system command to run ftp job to send the file to your file server and then copy the file to your archive folder and then delete the file from tmp.
    This should solve your problem.
    Regards,
    AV.

  • How can I change the default apple ID for app store. I bought the macbook from my school when I left and I'm the ID in place of mine is the computer departments one. How can i change it to mine?? Thanks

    How can I change the default apple ID for app store. I bought the macbook from my school when I left and I'm the ID in place of mine is the computer departments one. How can i change it to mine?? Thanks

    http://support.apple.com/kb/ht5621

  • How can I remove the Apple ID authorization only on one computer and authorize another in his place?

    how can I remove the Apple ID authorization only on one computer and authorize another in his place?

    De-authorize the computer in question.
    Then authorize the new computer.
    Or de-authorize all computers and authorize only the ones that actually exist.

  • My computer crashed so i had to reformat, but the only problem is i lost my old itunes account, had to download new version. Now i have an ipod full of music but how can i place all my music I have on the ipod into my new itunes account??

    my computer crashed so i had to reformat, but the only problem is i lost my old itunes account, had to download new version. Now i have an ipod full of music but how can i place all my music I have on the ipod into my new itunes account??

    Not if you first do a sync and have iTunes make a backup. However, if your only copy of the iTunes data is in the Touch, then you need to first copy the data to a new iTunes Library using third-party software such as Phone To Mac.

  • How can i convert the firefox-history-timestamp in places.sqlite into a normal date format? The firefox-timestamp is not equivalent to the unix-timestamp, that's why I ask. I could not find a conversion function. Does anyone know something about this?

    As I opened the places.sqlite with an sqlite-editor I found out that firefox saves the last_visit_date via a timestamp which is 16 digits long. I realized that the first 10 digits are similar to the corresponding unix-timestamp but not equal. So.. how can i convert the firefox-timestamp into a normal date? Or into the corresponding unix-timestamp?

    Write a bash script or 'C' program to change the date format and then use the sql update function to receive the stdio output 'where date_field='embeded date value'.

  • In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    Hello,
    Please make sure that the next button is pinned to the right side as there in the attached image.
    If it is already pinned, you can try removing any embedded HTML code and checking it.
    Regards,
    Neha

  • When I open a new website, the page does not open, instead it places a tab in the bottom task bar? How can I change the settings so as when I open a new website the page is automatically displayed on my desktop. Thank You!

    When I open a new website, the page does not open, instead it places a tab in the bottom task bar? How can I change the settings so as when I open a new website the page is automatically displayed on my desktop. Thank You!

    Tools > Options > Tabs - is the last preference there check-marked??

  • I have a video that I created for my daughter's first birthday.  The hard drive on my computer crashed and I lost the video file.  The only place I have it is on my iPod Classic.  How can I transfer the video from my iPod to my new hard drive?

    I have a video that I created for my daughter's first birthday.  The hard drive on my computer crashed and I lost the video file.  The only place I have it is on my iPod Classic.  How can I transfer the video from my iPod to my new hard drive?

    You are in luck, Refer to this recent post by tt2, on recovering media using 3rd Party Software.
    He has made a comprehensive list, browse through them and decide which  suits your requirements.
    Have a nice day!

  • How can I change the place of a photo in iPhoto?

    How can I change the place label of a photo in iPhoto?

    http://support.apple.com/kb/PH2381
    LN

  • What are the tools to create a digital magazine for ipad version and how can be place it in newsstand?

    Hello..
    "what are the tools to create a digital magazine for ipad version and how can be place it in newsstand?"
    I am very tired after done a week of R&D on this issue..
    But i doesn't get any fair solution for this one..
    I hope this is best option to place my issue here to get quick solution..
    Thanks and Regards..

    We are all users here.
    There is no one here from Apple.
    In order for you to develop and distribute content for the iPad, you need to become an apps developer.
    Not sure where you sign up for this or who you have to call.
    There should be a place on Apple's site that refers to a section of the site if you want to be an Apple iOS content developer.
    It cost, I believe $99 U.S. to become an Apple apps developer. You'll agree to Apple's Non-disclosure rules.  You'll receive Apple's app/software developers kit,and access to Apple's app developer site.
    No one here is going to be able to help you.
    Good Luck.

Maybe you are looking for

  • Trying to change account type in MAIL to allow POP3 to connect to my Yahoo?

    Can anyone help me with this mail feature... I am trying to add my yahoo mail account to the MAIL option/ feature on my MAC, and it is not letting me without signing up to Yahoo Plus account. However, I have found this site: http://help.yahoo.com/l/u

  • VM Server's Total Memory in VM Manager

    Hey all: Here's the particulars, VM Server (2.2.1) cluster with 3 Dell R710's, each VM Server has 72GB physical Memory installed and 8 cpu's. VM Manager is running as VM Guest. In the VM Manager Front End, VM Server 1 in VM Pool1 is showing total Mem

  • How to get selected annoatation thru notification

    Hi , I want to know that thru which notification, I can get selected annotations. I tried to use AVDocDidSetSelection but this works when I select only one annoation . And whenever I select more annotation using ctrl key then I don't get DidSetSelect

  • ORACLE 11G XE-Materialized view info/issue

    Hi, I have two Oracle XE databases with the version 11g, now i want to sync both of this dbs using materialized view feature. I have created base table in primary db and created materialized view in secondary db using db link. It got created and am a

  • Code Signing Error with AIR.app on MAC OS

    Hi, I have an application that runs on Windows and MAC.  The last release of the application was signed in February of this year without any issues on both of the target patforms.  Now, when signing the latest release on MAC I am getting an error. co