Really urgent : display of 2 fields in a single field

HI,
I making a report in which i ahve to display the qty coming from two tables (MCHB and MSKA).
In dis i have to display d quantities(MCHB-CSPEM) and (MSKA-KASPE).
I have to displayboth of dem in a single filed.
example,
blk.qty                 net.wt           tot.wt
2(MCHB)                 1                    2
1(MSKA)                  2                   2
2(MCHB)                  2                   4
like dis i want to display but i am able to do dis,plzz help me out in solving dis problem as help will be deifntely rewarded.
HERES D CODE:-
REPORT  Z_BLOCK_STOCK_COPY no standard page heading LINE-SIZE 350.
TABLES: MCHB,MARA,MSKA.
DATA: BEGIN OF ITAB OCCURS 0,
      ITEMID LIKE MCHB-MATNR,
      CHARG LIKE MCHB-CHARG,
      WERKS LIKE MCHB-WERKS,
      CSPEM LIKE MCHB-CSPEM,
      NTGEW LIKE MARA-NTGEW,
      MEINS LIKE MARA-MEINS,
      GEWEI LIKE MARA-GEWEI,
      WTKG LIKE MARA-NTGEW,
      STOCK TYPE P LENGTH 10 DECIMALS 3,
      DESC LIKE MAKT-MAKTX,
      TOTWT LIKE MCHB-CSPEM,
      WT TYPE P LENGTH 12 DECIMALS 3,
      END OF ITAB.
DATA: BEGIN OF ITMSKA OCCURS 0,
      MATNR LIKE MSKA-MATNR,
      CHARG LIKE MSKA-CHARG,
      WERKS LIKE MSKA-WERKS,
      KASPE LIKE MSKA-KASPE,
      SOBKZ LIKE MSKA-SOBKZ,  "special stock indicator 'E'
       END OF ITMSKA.
DATA:  DESC LIKE MAKT-MAKTX.
WRITE: / 'ITEMID           DESCRIPTION                              STOCK.QTY  BATCH NO.           NETWT          TOTAL.WEIGHT '.
ULINE.
PARAMETERS : PLANT LIKE MSKA-WERKS OBLIGATORY.
SELECT AMATNR ACHARG AWERKS ACSPEM BNTGEW BMEINS B~GEWEI FROM MCHB AS A
    INNER JOIN MARA AS B ON BMATNR = AMATNR
        INTO TABLE ITAB WHERE AWERKS = PLANT AND ACSPEM > 0 .
DATA V_R LIKE ITAB-CSPEM.
V_R = ITMSKA-KASPE.
LOOP AT ITAB.
CLEAR V_R.
V_R = ITMSKA-KASPE.
SORT ITAB BY ITEMID.
   READ TABLE ITMSKA WITH KEY MATNR = ITAB-ITEMID.
    SELECT SINGLE MATNR CHARG WERKS KASPE SOBKZ FROM MSKA
      INTO ITMSKA WHERE KASPE > 0 AND SOBKZ = 'E' AND MATNR = ITAB-ITEMID.
      IF ITAB-NTGEW <> 0 .
        CALL FUNCTION 'ZGET_ITEM_WEIGHT'
         EXPORTING
           P_BUID         = ITAB-WERKS
           P_ITEMID       = ITAB-ITEMID
           P_QTY          = ITAB-NTGEW
           P_UOM          = ITAB-GEWEI
           P_UOM1         = 'KG'
         IMPORTING
           P_RETVAL       = ITAB-WTKG.
      ENDIF.
   CONVERTING ITEM QTY IN KG
      ITAB-WT = ITAB-STOCK.
      IF ITAB-MEINS = 'G'.
        ITAB-WT = ITAB-STOCK / 1000000.
      ELSEIF ITAB-MEINS = 'KG'.
        ITAB-WT = ITAB-STOCK / 1000.
      ELSEIF ITAB-MEINS = 'TO'.
        ITAB-WT = ITAB-STOCK * ITAB-WTKG / 1000.
     ENDIF.
    ITAB-TOTWT = ITAB-WTKG * ITAB-CSPEM.
   SELECT SINGLE MAKTX FROM MAKT INTO DESC WHERE MATNR = ITAB-ITEMID.
     WRITE:/ ITAB-ITEMID,15 DESC,50 ITAB-CSPEM,ITAB-CHARG,ITAB-WTKG,ITAB-TOTWT.
   MODIFY ITAB.
   ENDLOOP.

Hi
If u try to see the F1 Help for Concatenate..U will get complete idea about this..
Check below for ur ref :
l_f_peinhnew1(15) TYPE c
l_f_bprmenew1(15) TYPE c,
l_string TYPE string,
   CONCATENATE l_f_peinhnew1 l_f_bprmenew1
               INTO l_string SEPARATED BY SPACE.
If 
l_f_peinhnew1 = 10 and  l_f_bprmenew1 = 12
L_string will be  10 12 .
Hope it helps.
Praveen

Similar Messages

  • Copy Multi block field value in single field

    HI!
    I have a multi block text item i want to copy its contents in single filed text item.
    1. I am using Forms 6i.
    Thanks & Regards!

    Hi,
    Try this code.
    DECLARE
         Str_Field                VARCHAR2(3000);
         Num_Total_Records NUMBER;
         Num_Loop_I                     NUMBER;
    BEGIN
         :<master_block_name>.<field_name> := '';
         FIRST_RECORD;
         LAST_RECORD;
         Num_Total_Records := TO_NUMBER(NAME_IN('SYSTEM.CURSOR_RECORD'));
         FIRST_RECORD;
         FOR Num_Loop_I IN 1..Num_Total_Records LOOP
              Str_Field := Str_Field || ',' || :<detail_block_name>.<field_name>;
              NEXT_RECORD;
         END LOOP;
         :<master_block_name>.<field_name> := SUBSTR(Str_Field, 2, LENGTH(Str_Field)-1);
    END;Regards,
    Manu.

  • F4 help for a single field in interactive form

    Hi Experts,
    I am working in HRAS process.I created a Form Scenario and an Adobe Form.  I linked my interactive form in portal using standard Start Processes iView . Now I have to create a value help(F4 help) for 'STATE' field based on 'COUNTRY' field value in adobe form.  I filled the Input value Help in the corresponding Form Scenario field. But in portal the adobe form shows the field as a single field only.
    How I can I attach the manual F4 help to 'COUNTRY' field?
    The how to  vary the F4 help values in 'STATE'  fied based on 'COUNTRY'  field?
    Do I need to code  in Java script for this?
    Please provide some inputs with code sample
    Thanks in advance,

    Lek,
    Check Nikhil's reply in this [thread|Re: Reg: value help from BADI is not displayed in the HCm form;. It should probably help you.
    Chintan

  • Really urgent: Collective display of material changes made f

    hi,
    i had been assigned a work in which  i have to display that from this time period 1.12.2007 to 31.12.2007, these are the materials in which these are the changes made by these persons.
    can anybody provide me tcode for this ,as help will be definately rewarded.
    plzzz its really urgent.

    HI,
    BUT IWANT TO HAVE COLLECTIVE DISPLY FOR IT.
    PLZZ DAT TCODE . I KNOW DAT DIS TCODE MM04 BU TIT SHOWS FOR SINGLE MATERIAL BUT I WANT IT FOR COLLECTIVE MATERIAL.

  • Really urgent: reagrding alv format for like (internal tables)

    Hi,
    I making a report in which i am using the concept of 2 internal tables and i am usnig the concept of likes in a internal table .
    for instance,
    DATA : BEGIN OF ITAB OCCURS 0,
              ITEMID LIKE CHVW-MATNR,      
              WERKS LIKE CHVW-WERKS,   
              CHARG LIKE CHVW-CHARG,       
              SHKZG LIKE CHVW-SHKZG,       
              MENGE LIKE CHVW-MENGE,     
              MEINS LIKE CHVW-MEINS, 
    END OF ITAB.
    DATA: BEGIN OF ITAB1 OCCURS 0,
               MATNR TYPE BSEG-MATNR,  
               LIFNR TYPE BSEG-LIFNR,       
               AUGDT TYPE BSEG-AUGDT,     
               WRBTR TYPE BSEG-WRBTR,      
             END OF IT_BSEG.
    and i am able to create ALV for 1 itab only as i had declared all fields in a 1 itab ,but now i have to declare 1 more itab and i  dont know how to perform ALV with 2 itabs..
    Plzz help me out as it is really urgent to me.
    Edited by: ric .s on Apr 22, 2008 11:45 AM
    Edited by: ric .s on Apr 23, 2008 7:21 AM
    Edited by: ric .s on Apr 23, 2008 7:55 AM

    Hi Ric,
    Yes, You can .
    Check the sample ALV  program which helps u in displaying output using ALV . Comments have been made everywhere .
    report  zvenkat_alv_2_grid_description.
    types:
          begin of t_mard,
           werks type mard-werks,
           lgort type mard-lgort,
           matnr type mard-matnr,
           insme type mard-insme,
           einme type mard-einme,
           speme type mard-speme,
          end of t_mard.
    data:
          w_mard type t_mard.
    data:
          i_mard type standard table of t_mard.
    " ALV Declarations
    "     ALV internal tables and Structures
    "     To refer ALV tables(slis tables) and structures.SLIS must be
    "     declared under TYPE-POOLS(see below).SLIS is a Type group which is
    "     defined in Dictionary.Internal tables and structures and constants
    "     are defined under type group.(Double click on SLIS).
    * Types Pools
    type-pools:
       slis.
    * Types
    types:
       t_fieldcat         type slis_fieldcat_alv,
       t_events           type slis_alv_event,
       t_layout           type slis_layout_alv.
    * Workareas
    data:
       w_fieldcat         type t_fieldcat,
       w_events           type t_events,
       w_layout           type t_layout.
    * Internal Tables
    data:
       i_fieldcat         type standard table of t_fieldcat,
       i_fieldcat1        type standard table of t_fieldcat,
       i_events           type standard table of t_events.
    *&      START-OF-SELECTION
    start-of-selection.
      perform get_data_from_database .
      "      END-OF-SELECTION
      "     Steps to create simple ALV program
      "      1. Pass an internal table with the set of output information
      "      2. Pass a field catalog as an internal table
      "      3. Pass a structure with general list layout details
    end-of-selection.
      perform build_fieldcatalog.
      perform build_events.
      perform build_layout.
      perform display_data.
      "      Form  build_fieldcatalog
      "     Fieldcatalog Internal table
      "    1. It contains descriptions of the list output fields
      "       (usually a subset of the internal output table fields).
      "    2. A field catalog is required for every ALV list output.
    form build_fieldcatalog .
      clear :
        w_fieldcat,
       i_fieldcat[].
      perform build_fcat using:
            "Field   Int.Table Column headings
            'WERKS' 'I_MARD' 'WERKS',
            'LGORT' 'I_MARD' 'LGORT',
            'MATNR' 'I_MARD' 'MATNR',
            'INSME' 'I_MARD' 'INSME',
            'EINME' 'I_MARD' 'EINME',
            'SPEME' 'I_MARD' 'SPEME'.
    endform.                    " build_fieldcatalog
    *&      Form  display_data
    form display_data .
      data :program like sy-repid value sy-repid.
      call function 'REUSE_ALV_LIST_DISPLAY'
        exporting
          i_callback_program = program
          is_layout          = w_layout
          it_fieldcat        = i_fieldcat
          it_events          = i_events
        tables
          t_outtab           = i_mard.
      if sy-subrc <> 0.
        message id sy-msgid type sy-msgty number sy-msgno
                with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      endif.
    endform.                    " display_data
    *&      Form  get_data_from_database
    *       text
    form get_data_from_database .
      clear :i_mard,
             i_mard[].
      select werks lgort matnr insme einme speme
      from mard
      into corresponding fields of table i_mard
        up to 100 rows.
    endform.                    " get_data_from_database
    *&      Form  top_of_page
    *       text
    form top_of_page.
      data :
      i_header type slis_t_listheader,
      w_header like line of i_header.
      data:l_date1 type datum,
           l_date2 type datum.
      w_header-typ = 'S'.
      w_header-info = sy-title.
      append w_header to i_header.
      clear w_header.
      w_header-typ = 'H'.
      w_header-info = sy-repid.
      append w_header to i_header.
      clear w_header.
      call function 'REUSE_ALV_COMMENTARY_WRITE'
        exporting
          it_list_commentary = i_header
          i_logo             = 'ENJOYSAP_LOGO'.
    endform.                    "top_of_page
    *&      Form  BUILD_FCAT
    form build_fcat  using  l_field l_tab l_text.
      w_fieldcat-fieldname = l_field.
      w_fieldcat-tabname   = l_tab.
      w_fieldcat-seltext_m = l_text.
      append w_fieldcat to i_fieldcat.
      clear w_fieldcat.
    endform.                    " BUILD_FCAT
    "      Form  build_events
    "     Events
    "    1. When we use ALV,certain events TOP-OF-PAGE ,END-OF-PAGE,
    "       AT LINE-SELECTION,AT USER-COMMANDs are not triggered.
    "    2. To perform those Functions ,we have to build Events table and
    "       pass this table through REUSE_ALV_LIST_DISPALY Function.
    form build_events .
      clear :
             w_events,i_events[].
      w_events-name = 'TOP_OF_PAGE'.
      w_events-form = 'TOP_OF_PAGE'.
      append w_events to i_events.
      clear w_events.
    endform.                    " build_events
    "&      Form  build_layout
    "     Layouts
    "  Use :We change the display of our list using layouts.
    "  ===
    "  Features
    "  ========
    "    The layouts that you can use vary according to the type of list:
    "   1-->In all lists, you can do the following:
    "       (a).Choose one of the std layouts supplied with the std system.
    "       (b).Change the current layout of the list .
    "   2-->In lists that use only the standard layouts in the std system
    "       you cannot save your changes to the current layout.When you
    "       choose the layouts, only the standard layouts will be proposed.
    "   3-->In some lists, you can also save the layouts that you have
    "       defined as our own layouts.
    "      User-defined layouts are generally saved for all users. They can
    "       then be used by all users. All users will be able to choose from
    "       the user-defined layouts as well as the standard layouts.
    "   4-->In some lists, you can also save user-specific layouts that you
    "       have defined . When you choose the current layout,only these
    "       layouts are available to you.
    "   5-->You can delete or transport layouts, or define them as initial
    "       layouts
    "   6-->STRUCTURE :SLIS_LAYOUT_ALV.
    form build_layout .
      clear:
            w_layout.
      w_layout-colwidth_optimize = 'X'.
    endform.                    " build_layout
    Regards,
    Venkat.O

  • Really Urgent: Problem in making link b/w sales order and production order

    Hi,
    I am trying to make link b/w the sales order delivery(VL03) by taking its Batch Number(LIPS- Delivery table) and linking with AFPO(Production order Table) field (batch no) so that i can see the fruther operations done o dat production order made against sales order,but it is not coming .
    I want to have help which allows me to make link b/w delivery (vf03) and the productiona order.
    plzz help me out it is really urgent.
    Edited by: ric .s on Apr 11, 2008 7:43 AM
    Edited by: ric .s on Apr 11, 2008 7:59 AM
    Edited by: ric .s on Apr 11, 2008 9:23 AM

    You have delivery no(VBELN) & itam no (Posnr)from lips table.
    Now
    1. go to VBFA table end get the corresponding sales oredr no and order item no.
    In VBFA table pass the delivery no in VBELN and delivery item in POSNN and 'J' in VBTYP_N and 'C' in VBTYP_V.
    Now VBELV & POSNV will return the sales order no and sales order item.
    2. Got to VBAP table and get the corresponding AUFNR to the order no and item no.
    3. Now with that AUFNR you will get a connection with AFPO(Production order Table.

  • Need to display value from ztable to a free field in a standard tcode...

    Hello Experts,
    I have a requirement wherein I need to get some data from a custom table and
    need to display it in one of the free fields of transaction FBL1N(Vendor line item display).
    I really do not have any idea how to go about this. Hope you can help me guys.
    Thank you and take care!

    Hi!
    You will have to look for an appropriate user-exit (if there are any) for transaction FBL1N. In the user-exit you can fetch the data from the custom table and populate the fields of the std transaction. Alternative - The fields in FBL1N are populated from the FI documents. So you can create a substitution rule (using a user-exit) and populate the field in the FI Doc. For this you might require the help of your functional consultant.
    Hope this helps
    Cheers!

  • Report Help------------PLZ really Urgent

    Hi
    we are having 2 DIM in row Job Category and Cost Center,there are around 10 Job Categories and 5 Cost Centers and thesetobe selected Dynamically
    now the requirement is
    - After 10 Job Categories in 10 rows in 11th row Cost Center Member shoud display, generally Cost Center will come in second ROW how to bring it in first ROW just below to Job Category
    forEx:
    JC1
    JC2
    JC3
    .JC10----------> JC DIM
    CC1------------->Cost Center DIM
    these CC and JC are selected Dynamically (@Desc or @Child.....) how can we display this???
    this is really urgent please help me.....
    Edited by: Kumar on Feb 10, 2011 9:03 AM

    Hi
    Wont take the Dimension as DIM to BOTTOM just select the members manually in to rows according to the user requirement this will work in WEB ANALYSIS.
    selecting members manually differs from the tools

  • Display values of a single field in a multiple rows in a table region

    Hi Tech-Gurus,
    I want to display values of a single field ( which is in a table region) in multiple rows and also need to restrict the values from decimal number. If i click save, then it will throw exception "Decimal not allowed".
    xxxxxx
    yyyyyy
    Reg.No
    1234
    5678
    7654
    I need to display the values of REG.NO in different rows like,
    1234
    5678
    7654
    and also need to validate as well against Decimal values.
    Please help me with the code how i will iterate ?

    Hi,
    I am assuming you are talking about displaying substrings from the Reg No in different rows. For this you would need to write a query which identifies the substrings and creates a separate row for each (ensure you choose values for all other columns in the table row). Kindly let me know if the understanding is incorrect.
    To validate against decimal value you can use the java code by checking the difference of the number and the number on which modulus has been applied. Hope that helps.
    Regards
    Sumit

  • Displaying data from a list into a single field with comma separated values

    Hi,
    I have a requirement to change a report with an XML structure (simplified version) as below
    <Protocol>
    <ProtocolNumber>100</ProtocolNumber>
    <SiteName>Baxter Building</SiteName>
    <ListOfActivity>
    <Activity>
    <Description>Communication Memo Description.</Description>
    <Name>James</Name>
    </Activity>
    <Activity>
    <Description>Visit 4</Description>
    <Name>James</Name>
    </Activity>
    <ListOfActivity/>
    </Protocol>
    On the report I need to display all the 'Names' for each of the Child (Activities) in a single field at the Parent (Protocol) level, with each Name separated by a comma.
    How do I go about getting this to work?
    Thanks

    Take a look at this: http://blogs.oracle.com/xmlpublisher/entry/inline_grouping
    You could do this (ofcourse, you will need to add extra logic to ensure that there is no comma added after the last name..)
    <?for-each@inlines:Name?><?.?><?', '?><?end for-each?>
    Thanks,
    Bipuser

  • Condition Surpression in HFR-----Really Really Urgent

    Hi All,
    we are having a requirement from our client that
    If he selelcts the current year then the Scenario shud be Actual, if he selects the next year then the scenario shud be Plan can any one help me in solving this
    Actual Requirement from the client
    FYadmin = Current fiscal year
    MONTHadmin = Current month
    LASTQRUPLANadmin = Last scenario (QRU1, QUR2, QRU3, PLAN…)
    Current position on the report :
    FYreport = Fiscal year selected in the report
    MONTHreport = March (default last month of the fiscal year at SOITEC)
    Actual_QRU calculation rule:
    IF ( FYreport < FYadmin ) OR ( (FYreport = FYadmin) AND (MONTHreport < MONTHadmin) )
    THEN Scenario = ACTUAL
    ELSE Scenario = LASTQRUPLANadmin
    This a really urgent isuee
    Regards
    Vijay
    Edited by: Kumar on Mar 8, 2011 5:16 PM

    Im using Condition Suppressing for columns
    I have taken Year, Period and Scenario in Column
    In Col A: I used User POV for Year, Actual as Scenario and User POV for Period
    Condition Suppression1: Not Suppress if Member Name Year Equal to ActualYear(Sub Var for CurrYear)
    Condition Suppression2: Not Suppress if Member Name Year Contains Previous Year1(Sub Var for Previous Year)
    Condition Suppression3: Not Suppress if Member Name Period Equal to ActualPeriod (Sub Var for CurrPreiod)
    Condition Suppression4: Not Suppress if Member Name Period Contains to PreviousPerid (Sub Var for Previous Period)
    In ColB: I used Same as Col A for Year and period and Scenario will be Prompt for user.
    Condition Suppression1: Suppress if Member Name Year NotEqual to ActualYear(Sub Var for CurrYear)
    Condition Suppression2: Suppress if Member Name Year NotContains Previous Year1(Sub Var for Previous Year)
    Condition Suppression3: Suppress if Member Name Period NotEqual to ActualPeriod (Sub Var for CurrPreiod)
    Condition Suppression4: Suppress if Member Name Period NotContains to PreviousPerid (Sub Var for Previous Period)
    Will this work???
    Regards
    Vijay
    Edited by: Kumar on Mar 10, 2011 12:35 PM

  • Display a single field in one table as 2 colums

    Hi all..,
    I am using oracle 8.1.5.,I have two tables table 1 and table 2, i have one single field
    as name how to display it in 2 columns....
    here i have given the thing,,,,,
    create table table1(user_id int,name varchar(50))
    create table table2(host_id int,user_id int)
    /* here host_id refers to the user_id in the table1 */
    insert into table1 values(1,'Arul')
    insert into table1 values (2,'Bala')
    insert into table1 values(3,'Karthik')
    insert into table1 values(4,'Chandru')
    insert into table1 values(5,'Pandi')
    insert into table1 values(6,'Sathya')
    /* here user_id 1,2 are the hosts, so i assign the users to the host in the table2 as follows*/
    insert into table2 values(1,3)
    insert into table2 values(1,4)
    insert into table2 values(2,5)
    insert into table2 values(2,6)
    /* here host_id refers to the user_id in the table1 */
    now i want to diaplay the host_name and user_name as follows..
    i.e.,
    =========================
    host_name | user_name |
    =========================
    | |
    Arul | Karthik |
    Arul | Chandru |
    Bala | Pandi |
    Bala | Sathya |
    ==========================
    how to do this...
    null

    You can get the result by this sql as below,
    select t1_1.name || '|' || t1_2.name || '|'
    from table2 t2
    inner join table1 t1_1 on t2.host_id = t1_1.user_id
    inner join table1 t1_2 on t2.user_id = t1_2.user_id;You would better post to the 'SQL and PL/SQL forum' in next time.

  • HT204088 hello there, this is really urgent i would like to ask if there is a way to deactivate/lock my Mini Ipad because it was stolen, i hope you can provide me a way to do so, thank you for the support and i really hop you can help me, i bought this mi

    hello there, this is really urgent i would like to ask if there is a way to deactivate/lock my Mini Ipad because it was stolen, i hope you can provide me a way to do so, thank you for the support and i really hop you can help me, i bought this mini ipad not too long ago.

    Unless you enabled Find My iPad on it before it was stolen then there isn't any way to locate it. If you did enable it then you could try locating and/or remotely wiping it either via http://icloud.com on a computer or Find My iPhone on another device - but that will only work if it's connected to a network and the device hasn't already been wiped and/or Find My iPad disabled on it.
    If you haven't already done so then you should report it to the police. You should also change your iTunes account password, your email account passwords, and any passwords that you'd stored on websites/emails/notes etc., and if it was a cellular model you should also contact your carrier.

  • How to display zero in the screen's input field using numc type

    Hi,
    I want to display the zero value in the input field , when I  using the NUMC input field on the screen .
    The zero will be changed to blank ,when I click the Enter key.
    What I should do for it?
    Any help is appreciated.
    Regards,
    Trevor

    Hi ,
    Thanks for your quickly answer!
    I use the numc input field in the dialog's screen.
    I am not sure how to do the realize the function like 'UNPACK'?
    In fact, I can't changed my input field's data type.
    When the status of my input field is display, I can display the zero on the screen. But when the input field is input status , there is blank!
    Regards
    Trevor

  • How to display 7 values of  single field in row wise.

    hi,
    how to display 7 values of  single field in row wise.
    thankx in advance.

    hi ,
    do it like this :
    1 Place ur UI element in tranparent container with Layout as Row Data and Layout Data as Row Head Data
    2 Ur first  UI , which contains the first value as Row Head Data ,
    3 Others as Row Data
    u can do it with Matrix Data as well
    if u want to give space , u can use HORIZONTAL GUTTER and set its width to medium / large / Xlarge
    also there is a UI element "INVISIBLE ELEMENT" ,
    1 u can use this UI element to provide space between ur other UI elements in the view
    2 u can insert a text element as well , and in the Text property of the element press ALT + 0160.
    u can give the space bw UIs as desired.
    regards,
    amit

Maybe you are looking for

  • CMP Entity Bean with database specific features

    Hi there, I�m studying Entity Beans and I'm doing some experiences with SQL Server. At first, I built a CMP Bean and marked in deploytool to create the tables. Ok, it worked. Now, I'm trying to interact to an existent database. But, I got a problem:

  • How to configure OCS mail to send out s

    dear all, i have OCS R2 on Linux AS. i can send send/recive emials localy but we need to start send/recive email outside the domian to send to hotmail, yahoo...etc. i search alot and tried to configer the SMTP relay server but i am still not able to

  • New "Questions Answered" Spotlight Award

    I'm pleased to announce our new "Questions Answered" Spotlight Award.  The first awardee will be recognized in March. Questions Answered Award:  This  award is intended to recognize a Support Community member whose  contributions have resulted in ans

  • Update Retriever doesn't run on Windows 8

    Hi - I have started working with Microsoft's MDT 2012 update 1 to prepare for deployment of Windows 8 in our organization.    I'd like to use "Update Retriever" so I can easily import a large number of Lenovo Thinkpad drivers. However when I launch U

  • Serial number status problem

    Dear all, I have the following problem: A material (serial number relevant) was sent out with a delivery and came also back with a return delivery. This means we have it back in stock. The status of the serial still says "Assigned to delivery". Now I