In SE51 in want to group 2 radiobuttons , i want it in Line editor

Hi ,
due do some technical problem graphical painter is not working only line editor is working.
Please help me in grouping 2 radio buttons in line editor.
if it is step by step it will be great.
Thank you in advance.

hi,
click on first radio button and click on graphical element then it takes u to the next screen where it ask for the expand graphic group there give one name for that group and select other radio button also in that screen such that they all come under one group.
i hope this will help u.
if useful reward points

Similar Messages

  • I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album?

    I have photos I want to group together in one album, but can't do this because some may have the same number. How can I combine them all into one album? I was trying to move several albums onto a USB drive and it stated all other files exist at this location.  They are pictures taken at different times and have the same number I guess.

    In iPhoto albums may contain photos with the same file name - iPhoto handles that just fine
    If you are exporting them to move somewhere else use the sequential file name feature of export to give each file a unique name
    LN

  • In contacts section for the groups section i want to delete old groups i have on the phone and then add a new group for easy access for work contacts for calling. rather then searching each individual contact when needed. is this possible?

    i currently have about 6 different groups listed on the iphone in my contact list section and i want to delete the old ones and create a new group for work puposes!
    i dont want any apps all i want is something similar to my favourites list but in a group so i can just go into that work group and scroll to the person i need to call and this way seperating my personal and work contacts.
    because i do alot of calls from my car i dont want to have to search my contact lists to find the right person i just want them all in a simple folder.
    is this possible because if i already have groups on my iphone i should be able to delete the old ones and create a new one?

    Deleting groups on the phone and creating new ones is not supported with iOS4, you'll have to do that on your computer and sync again.
    Let's see if they changed that in iOS5 when it is released.

  • (javascript) I want to group in existing pathitem

    <ai cs5><javascript>
    I creat 5 pathitem in the K_layer, i want to group them.
    code:
            var myDoc =  app.activeDocument;       
            var K_layer = myDoc.layers.add();
            var k01 = K_layer.pathItems.add();  k01.name='01';
            var k02 = K_layer.pathItems.add();  k02.name='02';
            var k03 = K_layer.pathItems.add();   k03.name='03';
            var k04 = K_layer.pathItems.add();  k04.name='04';
            var k05 = K_layer.pathItems.add();  k05.name='05';
            var mygroup = K_layer.groupItems.add();
            for (var i=0; i<K_layer.pathItems.length; i++)
                    K_layer.pathItems[i].move(mygroup, ElementPlacement.PLACEATEND);
    result:
         just 01,03,05 into the mygroup, 02,04 still in K_layer.
         I don't know why ?
    1.    I try K_layer.pathItems.length=5 is correct
    2.    and also i try
         K_layer.pathItems[0].move(mygroup, ElementPlacement.PLACEATEND);
         K_layer.pathItems[1].move(mygroup, ElementPlacement.PLACEATEND);
         K_layer.pathItems[2].move(mygroup, ElementPlacement.PLACEATEND);
         K_layer.pathItems[3].move(mygroup, ElementPlacement.PLACEATEND);
         K_layer.pathItems[4].move(mygroup, ElementPlacement.PLACEATEND);
         stop in the pathItems[3] and show 「error 1302 no such element」
    anybody to help, thx~

    result:
         just 01,03,05 into the mygroup, 02,04 still in K_layer.
         I don't know why ?
    when you remove k01 to move it into the group, all other rearrange their indexes, so k02 becomes pathItem[0] hence, in the next run, it gets skipped since your moving pathItem[1] (k03 at this point).
    do it like this
    var myDoc =  app.activeDocument;      
    var K_layer = myDoc.layers.add();
    var mygroup = K_layer.groupItems.add();
    var k01 = mygroup.pathItems.add();  k01.name='01';
    var k02 = mygroup.pathItems.add();  k02.name='02';
    var k03 = mygroup.pathItems.add();   k03.name='03';
    var k04 = mygroup.pathItems.add();  k04.name='04';
    var k05 = mygroup.pathItems.add();  k05.name='05';

  • Need to use Group By but only want to group some of the columns not all

    Hello all! I am having some issues here. I am rather new to SQL and I am getting stuck with grouping. I have the query below but I only want to group by these columns, instead of all the columns in my select statement.
    ah.fund,
    ah.dept,
    ah.org,
    ah.acct,
    t.fund,
    t.dept,
    t.org,
    t.acct
    This will eventually go into Oracle reports builder. Is there any way I can archive this at all? The query will return all the t for a given time period, but they need to be grouped by the fully qualified account number which consists of the fund, dept, org and acct columns.
    Thanks in advance!
    SELECT ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2) acct_no,
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct acct_no1,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO) J_NO,
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO) W_NO,
         t.VENDOR_NO,
         v.name||' ' ||v.first_name name,
         MIN(ah.eod_date)
    FROM ah,
         t,
         v
    WHERE ah.fund BETWEEN SUBSTR(:p_acct_from,0,3) AND SUBSTR(:p_acct_to,0,3)
         AND ah.dept BETWEEN SUBSTR(:p_acct_from,4,2) AND SUBSTR(:p_acct_to,4,2)
         AND ah.org BETWEEN SUBSTR(:p_acct_from,6,4) AND SUBSTR(:p_acct_to,6,4)
         AND ah.acct BETWEEN SUBSTR(:p_acct_from,10,5) AND SUBSTR(:p_acct_to,10,5)
         AND FLOOR(ah.acct/10000) IN (6,8)
         AND SUBSTR(ah.acct,3) != '000'
         AND ah.eod_date BETWEEN :p_from_date-1 AND :p_to_date
         AND t.fund (+) = ah.fund
         AND t.dept (+) = ah.dept
         AND t.org (+) = ah.org
         AND t.acct (+) = ah.acct
         AND TO_DATE(t.activity_date, 'dd-mon-yy') >= TO_DATE(:P_FROM_DATE,'dd-mon-yy')
         AND TO_DATE(t.activity_date, 'dd-mon-yy') <= TO_DATE(:P_TO_DATE,'dd-mon-yy')
         AND t.type IN( 'PI','JE','PR','VD','VU','AC','AD')
         AND (
              (:p_year = TO_CHAR(CURRENT_DATE,'YYYY')
              AND (t.po_no IS NULL
              OR (select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = TO_CHAR(CURRENT_DATE,'YYYY') ) )
              OR ((select TO_CHAR(open_date,'YYYY') FROM r WHERE po_no = t.po_no ) = :p_year )
    AND v.vendor_no (+) = t.vendor_no
    GROUP BY ah.fund,
         ah.dept,
         ah.org,
         ah.acct,
         t.fund,
         t.dept,
         t.org,
         t.acct,
         t.ACTIVITY_DATE,
         t.TYPE,
         t.AMT,
         t.description,
         t.TRANS_NO,
         t.RECEIPT_NO,
         DECODE(t.PO_NO,NULL,t.JOURNAL_NO,t.PO_NO),
         DECODE(t.WARRANT_NO,NULL,t.WIRE_NO,t.WARRANT_NO),
         t.VENDOR_NO,
         v.name||' ' ||v.first_name
    ORDER BY LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||SUBSTR(ah.acct,1,2),
         LPAD(ah.fund,3,0)||LPAD(ah.dept,2,0)||LPAD(ah.org,4,0)||ah.acct;

    In reports builder you can group the columns without having to group it in your query. It is also known as the break report which contains multiple groups in its data model.
        |            Q_1               |
                      |
                      |
        |       GRP_department         |
        | dept_no                      |
        | dept_name                    |
                      |
                      |
        |         GRP_employee         |
        | emp_no                       |
        | emp_first_name               |
        | emp_last_name                |
        | emp_middle_name              |
        | emp_date_of_birth            |
        | ...                          |
        ------------------------------

  • I want to group deliveries with the same BOLNR together

    I want to group deliveries with the same BOLNR together. Is there a FM or a BAPI for this?

    No,
    you will have to feed the data to the respective BAPi's to achieve this.
    BAPI_INB_DELIVERY_SAVEREPLICA
    BAPI_OUTB_DELIVERY_SAVEREPLICA

  • Cross tab template Formatting. Two Row Groups cannot be on the same line

    Hi
    I have a cross tab template(Vetsriselvan favor) where it has Multiple Row groups. In the RTF template I want them to be on the same line but somehow it works only if they are one below the other. In this template Comp is the First Group Row then Acct is 2nd Group Row and Expense is the 3rd Group Row. Period is the Column. I want all the Group rows start from the same line instead one below the other. Is it possible to do it?
    Comp Acct Expense Period
    &lt;?for-each-group:/BIOFASPRJ/LIST_G_SUMDEPR1PERACCT/ &lt;[?for-each-group@column:G_PERIOD_NAME[./PERIOD_NAME!=''];PERIOD_NAME|mailto:?for-each-group@column:G_PERIOD_NAME[./PERIOD_NAME!=''];PERIOD_NAME]?&gt;
    G_SUMDEPR1PERACCT/LIST_G_COMP_CODE/G_COMP_CODE;./COMP_CODE?&gt; F_comp
    &lt;?for-each-group:./LIST_G_ACCT/G_ACCT [LIST_G_DESCRIPTION/G_DESCRIPTION/LIST_G_PERIOD_NAME/G_PERIOD_NAME/LIST_G_DEPR1/G_DEPR1];ACCT?&gt; &lt;?variable@incontext:G1;current-group()?&gt;acc
    &lt;?for-each-group:./LIST_G_DESCRIPTION/G_DESCRIPTION[LIST_G_PERIOD_NAME/G_PERIOD_NAME/LIST_G_DEPR1/G_DEPR1];DESCRIPTION?&gt;&lt;?variable@incontext:G2;current-group()?&gt;acc

    Upload the template here
    http://apps2fusion.com/forums/viewforum.php?f=60
    or
    Send me the template and xml to fusionDOTobjectATgmail.com

  • So with iMessage, i am not getting messages on my 4S, only on my MacBook Pro.  I don't want this.  I only want texts sent to my phone.  HELP!

    so with iMessage, i am not getting messages on my 4S, only on my MacBook Pro.  I don't want this.  I only want texts sent to my phone.  HELP!

    did that.  now getting no messages on anything.  opened up messages on the Mac and saw i had been sent many that never showed up on my phone.
    I tried sending a text with iMessage turned off and while it said delivered, doesn't look like it was ever seen.

  • HT4009 Do you understand me ? I want money back.Because I have problem with LINE In App Purchase.And no one try to resolve this problem.And the answer of NEVER LINE JAPAN they don't have responsibility.I think it will be effect with APPLE image also.I wan

    Do you understand me ? I want money back.Because I have problem with LINE In App Purchase.And no one try to resolve this problem.And the answer of NEVER LINE JAPAN they don't have responsibility.I think it will be effect with APPLE image also.I want you to help me everyways to refound my monet back.Could you?

    Contact iTunes Store Support.

  • Want to know how to check for new line character in text file

    Hi All,
    I`m trying to read data from text file. However I`m not sure whether the data is in 1st line or nth line. Now I`m trying to read the text from the readline. But if text is "" and not NULL then my code fails. So I want to know how to check for new line character and go to next line to find the data. Please help.
    Thanks
    static int readandwriteFile(Logger logger,String filepath){
              BufferedWriter out = null;
              BufferedReader in = null;
              File fr = null;
              int get_count = 0;
              try     {
              if(new File(filepath).exists())
              fr= new File(filepath);
                        System.out.println("FileName: "+fr);
                   if(fr != null){
    in = new BufferedReader(new FileReader(fr));
                             String text = in.readLine();
                             if(text != null){
                             get_count = Integer.parseInt(text);
                             in.close();
                             else{
                                  get_count = 0;
         else{                    
    out = new BufferedWriter(new FileWriter(filepath));
         out.write("0");
                out.close();
                   }          //Reading of the row count file ended.
              catch(Exception e) {
                   e.printStackTrace();
              finally {
                   try{               if (in != null) {
                             in.close();
              if (out != null) {
                             out.close();
              catch(Exception e) {
                        e.printStackTrace();
              return get_count;
         }

    You are calling the readline() only once which means you are reading only the first line from the file...
    Use a loop (Do-While preferably)
    do{
    //your code
    }while(text == "")

  • Can i make a book in iPhoto without using any of the built in layout templates, which are too limiting when i have already cropped my pictures to show just what I want. Ideally I just want to drag and drop and arrange and size the pictures myself

    Can i make a book in iPhoto without using any of the built in layout templates, which are too limiting when i have already cropped my pictures to show just what I want. Ideally I just want to drag and drop and arrange and size the pictures myself

    If you have Pages you can create customs pages for your book as TD suggested. If you have Pages from iWork 09 or 11 this app will add 80 or so additional frames to those offered:  Frames and Strokes Installer. Don't use it on the latest Pages version, however.
    This tutorial shows how to create a custom page with the theme's background: iP11 - Creating a Custom Page, with the Theme's Background for an iPhoto Book.  Once the page is complete to get it into iPhoto as a jpeg file follow these steps:
    Here's how to get any file into iPhoto as a jpeg file:
    1 - open the file in any application that will open it.
    2 - type Command+P to start the print process.
    3  - click on the PDF button and select "Save PDF to iPhoto".
    NOTE:  If you don't have any of those options go to Toad's Cellar and download these two files:
    Save PDF to iPhoto 200 DPI.workflow.zip
    Save PDF to iPhoto 300 DPI.workflow.zip
    Unzip the files and place in the HD/Library/PDF Services folder and reboot.
    4 - select either of the files above (300 dip is used for photos to be included in a book that will be ordered).
    5 - in the window that comes up enter an album name or select an existing album and hit the Continue button.
    That will create a 200 or 300 dpi jpeg file of the item being printed and import it into iPhoto. For books to be printed choose 300 dpi.

  • When I send a Group message from my address book, the entire group gets listed in the "To" line. How do I get each member to receive the message individually without listing all members? Its just messy is all.

    When I send a Group message from my address book, the entire group gets listed in the "To" line. How do I get each member to receive the message individually without listing all members? Its just messy is all. Any help is greatly appreciated.

    Hey Grupo Castillo,
    Thanks for the question. You can actually configure this behavior from Mail preferences:
    1. Choose Preferences from the Mail menu.
    2. Click Composing.
    3. Deselect the checkbox for "When sending to a group, show all member addresses".
    When you send an email to the group, only the groups name will be seen.
    Mac OS X: Mail - How to Hide Address Book Group Member Names When Sending an Email
    http://support.apple.com/kb/TA21082
    Thanks,
    Matt M.

  • Im using a pci-6221 daq-card.I want to know the difference(use)of a line output and a port output.

    Im using a pci-6221 daq-card.I want to know the difference(use)of a line output and a port output.

    Hello Hellraiser24,
    This question has actually been discussed in another thread here:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=95895&requireLogin=False
    I hope this helps,
    E.Lee
    Eric
    DE For Life!

  • GRRRRRR I dont want a discussion I JUST WANT TECH SUPPORT - WILL SOMEBODY FROM ADOBE SORT THIS!!!

    GRRRRRR I dont want a discussion I JUST WANT TECH SUPPORT - WILL SOMEBODY FROM ADOBE SORT THIS!!!

    Just what I say Jeri.  I was persuaded to take up a montly sub for CS a year ago.  I pay every month but have never used any upgrade even once. We couldnt install it and despite spending hours trying to get support u just cant get anything - We are totally fed up with the whole time wasting excercise.
    Cant we simply get a set of discs for the current upgrade and go back to working sensibly.
    We could go bust here just mucking about with this stupid cloud thing - It could become a lifes work just trying to sort the ****** thing out. 
    To add insult to injury I now see that the D Debit is GBP46.88 /mnth for absolutely NOTHING.  Its a joke in bad taste.
    At one time it was Adobe that had the best cus service around and Quark that were the crooks.  Amazing how things turn around dont u think!!!

  • I had to reinstall Flash MX 2004 Professional  when my at work computer, a Dell PC, was replaced but it installed Flash MX 2004 instead. I Don't WANT Flash MX 2004 I want Flash MX 2004 Professional.What do I do?

    I had to reinstall Flash MX 2004 Professional  when my at work computer, a Dell PC, was replaced but it installed Flash MX 2004 instead. I Don't WANT Flash MX 2004 I want Flash MX 2004 Professional.What do I do?

    this is all that's available for mx, Error: Unable to Activate | Macromedia products
    and possibly here, ftp://ftp.adobe.com/pub/adobe/

Maybe you are looking for

  • Are there any new data sources?

    Hi I have a doubt. Please clarify. Are there any new data sources for 2LIS_01_S001, 2LIS_11_VAHDR, 2LIS_12_VCHDR. Because in an interview I told that I had extracted from these data sources. Then the interviewer had asked me, "Is there any specific r

  • Previous photo's deleted when syncing a new folder.

    Trying to sync photos with Itunes (windows 7)into separate albums, but when syncing a group or folder it deletes the previous album or photos. I can't see anything in Itunes to change to avoid this. Apple is not making "Photo" PC friendly. Any ideas?

  • In organizer I have a slide show prepared which I can click and watch, and I would like to make a CD

    In the organizer I click output, then I click burn to disc with the movie file checked, then the burn icon comes up .  I select NTSC but the OK option is dim and I can't select it.  Please help.    Thanks

  • Automator - IM to e-mail

    Is there a way to trigger an action when an IM is received through iChat? What I would like to do is set something up that would send a text message to my phone when an IM is received and I am not at my computer. I'm not too concerned with what is co

  • ICC profiles are being uninstalled on my HP photosmart printers using PSE9

    I have restored my PC (HP Omni Quad) to factory standards once to correct this problem.  The printers worked twice (HP Photosmart 7960 and 8250) and stopped printing photos,  The message stated that the ICC rofiles had been uninstalled.  I never had