RE: how to add attributes in graphical modulator in segment builder .

Hi Gurus,
can you please help me how to add attributes in graphical modulator in segment builder in sap CRM 7.0 WEB-UI.
thanks and regards
satyanarayana
Edited by: koradasatya on Oct 27, 2011 8:14 PM

Hi Gurus,
thanks for your reply my requirement from client is given below if you could answer this it will be a great help for me.
WKSC needs to be able to make selections (in segment builder) with the possibilities to use stored data on organizations. The information we are missing in Segment builder (SB) (and Account search for industrycode) are Industrycode (we want to see values not codes) and responsible salesrep (values not codes).
These variables together with regions and other marketing attributes is crucial for us. Without it we cannot use the functionality built.
We also need it so that we can extract smaller parts of our customers and prospects and update them with information from the thirdparty or adding new persons to them.
Everyone using the SB should be able to use the fields for selections. i.e. Marketers, marketing managers and power users.
Example
We would like to make selections that could look like this.
Region: A and B
Organization in Industrycode C
Sales rep: D, E, and F
Turnover: above 50000
CP on selected orgs
CP has title G or H
CP has Email not blank
thanks and regards
satya

Similar Messages

  • How to add new cost center to cycle segments

    Hello SAP Gurus,,
    How to add new cost center to cycle segments?
    needed badly and ASAP

    Hi
    Go to KSu2 and give the cycle name ad select the segment that you need to add cost center.
    If you are deal with cost cneter groups add new cost center to your cost center group KSH2.
    Kesh

  • How to add Attributes to an asset? [URGENT]

    Hi,
    We are developing an application that need to add attributes to an asset depending on Product associated. Someone knows how to add the attributes automaticlly?
    FYI. We have not licensed the Configurator module.
    Please need an answer ASAP.
    Thanks

    Hi,
    We are developing an application that need to add attributes to an asset depending on Product associated. Someone knows how to add the attributes automaticlly?
    FYI. We have not licensed the Configurator module.
    Please need an answer ASAP.
    Thanks

  • How to add attribute to UME and how to retrive the attribute value

    Hi Gurus,
    I have developped an application that retriving the data from back end for that we need to give input values .
    I have got the Logged user from the Iuser But Sales Organization of User [from user profile] and Brand value [from user profile] I want these input put values need to pass as a input .
    For this how can get the sales org and Brand value.
    Give me suggestions for this or how to pass attributes to UME and how to capture it.
    Advance thanks.
    thanks
    Lohi.

    Check if there are any available function modules for this functionality. One of the FM that comes to my mind is:
    a) BAPI_USER_GET_DETAIL
    Check with your SD guys , if there exists any such function module.
    Regards,
    Subramanian V.

  • How to add attribute to Element with SAX

    Hi,
    I'm parsing XML document with SAX using DefaultHandler.
    How can I add attribute to start tag?

    Is this right????????????Yes, it's right. Everything everybody except you has said in this thread has been right.

  • How to add attribute to Group in opensso

    I want to add a new attribute in opensso group as UsageControl. Presently while we create a group, we only get option to give id of the group. How to add an entry in that page? I want to give the value of Usagecontrol while creating a group, also I want that value to be present as an attribute.Please help.

    Hi,
    Can you please share the exact url for adding new fact group into OBIA load plan, altogether a new offering and  functional area.
    Regards,
    Priya

  • How to add attribute to already existing tag?

    Hello!
    Could you help me, please. I need to add attribute maxlegth to <h:inputTextarea>, but I don't know how to do it. Maybe, you know?

    <textarea> don't support maxlength by spec. You can use JavaScript instead.
    Or if you really want to create a custom component with this attribute added, check following tuts:
    http://www.jsftutorials.net/components/index.html
    http://www-128.ibm.com/developerworks/java/library/j-jsf4/
    http://java.sun.com/javaee/javaserverfaces/customcomponents.html

  • How to add attribute to Item ?

    Hi,
    I have a problem concerning OCS -> Content Service. I try to find out how scaleable the tool is. Do you know is it possible to add attribute to the Item? For example how to add some link to Document in repository?
    Best regards

    Content Services support adding attributes (we
    support Categories which are named collections of
    attributes) to documents.
    We also have support for document and folder links.so, there is no problem with adding an attribute to a document? Attribute could consist of a collection of links to any Document (Document, Folder etc.)?
    Regards

  • How to add attribute to characteristic already in production system

    HI Guru's ,
                     How to add a attribute to characteristic which already exist in production system.
    thanks in advance

    Hi Venkat,
    We don't make any design changes in production box. Usually you make changes in Development box then transport that object with request to Quality box. You test the changed object there, if no inconsistancies found you will transport the object to Production box with same request.
    In development box, if you want to add the new attribute to the characterstic, you need to delete the complete data in the characterstic.
    Thanks
    Sreekanth

  • How to add attributed string to JTextPane

    Hi all,
    Could you tell me how to add an attributed string into a Textpane.
    Textpane only takes a styledDocument. Is there any way to convert attributed string into a styled document.
    Are there any components , which we can include attributed string , instead of simple string. Becoz i want my text to have variable fonts.

    Hello,
    check this short course about [url http://developer.java.sun.com/developer/onlineTraining/GUI/Swing2/shortcourse.html#JFCStyled]JTextPane and StyledDocument.
    Heres a small example:import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.event.*;
    public class AttributedStringTest extends JFrame
         public static void main(String[] args)
              new AttributedStringTest();
         private JTextPane textPane = null;
         private StyledDocument doc = null;
         AttributedStringTest()
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              initMenuBar();
              initTextPane();
              setSize(500, 300);
              setLocationRelativeTo(null);
              setVisible(true);
         private void initMenuBar()
              JMenuBar mbar = new JMenuBar();
              JMenu menu = new JMenu("StyleConstants");
              JMenuItem item = new JMenuItem("Color");
              item.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        Color color =
                             JColorChooser.showDialog(
                                  AttributedStringTest.this,
                                  "Color Chooser",
                                  Color.cyan);
                        if (color != null)
                             MutableAttributeSet attr = new SimpleAttributeSet();
                             StyleConstants.setForeground(attr, color);
                             textPane.setCharacterAttributes(attr, false);
              menu.add(item);
              JMenu font = new JMenu("Font");
              font.add(item = new JMenuItem("12"));
              item.addActionListener(new StyledEditorKit.FontSizeAction("font-size-12", 12));
              font.add(item = new JMenuItem("24"));
              item.addActionListener(new StyledEditorKit.FontSizeAction("font-size-24", 24));
              font.add(item = new JMenuItem("36"));
              item.addActionListener(new StyledEditorKit.FontSizeAction("font-size-36", 36));
              font.addSeparator();
              font.add(item = new JMenuItem("Serif"));
              item.setFont(new Font("Serif", Font.PLAIN, 12));
              item.addActionListener(
                   new StyledEditorKit.FontFamilyAction("font-family-Serif", "Serif"));
              font.add(item = new JMenuItem("SansSerif"));
              item.setFont(new Font("SansSerif", Font.PLAIN, 12));
              item.addActionListener(
                   new StyledEditorKit.FontFamilyAction("font-family-SansSerif", "SansSerif"));
              font.add(item = new JMenuItem("Monospaced"));
              item.setFont(new Font("Monospaced", Font.PLAIN, 12));
              item.addActionListener(
                   new StyledEditorKit.FontFamilyAction("font-family-Monospaced", "Monospaced"));
              font.addSeparator();
              menu.add(font);
              mbar.add(menu);
              setJMenuBar(mbar);
         private void initTextPane()
              doc = new DefaultStyledDocument();
              textPane = new JTextPane(doc);
              JScrollPane scroll = new JScrollPane(textPane);
              getContentPane().add(scroll);
              final JTextField text = new JTextField();
              text.setToolTipText("Please enter something");
              text.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             doc.insertString(doc.getLength(), text.getText(), textPane.getInputAttributes());
                        } catch (BadLocationException bad)
              getContentPane().add(text, BorderLayout.SOUTH);
    //not formatted version:import javax.swing.*;
    import javax.swing.text.*;
    import java.awt.BorderLayout;
    import java.awt.Color;
    import java.awt.Font;
    import java.awt.event.*;
    public class AttributedStringTest extends JFrame
         public static void main(String[] args)
              new AttributedStringTest();
         private JTextPane textPane = null;
         private StyledDocument doc = null;
         AttributedStringTest()
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              initMenuBar();
              initTextPane();
              setSize(500, 300);
              setLocationRelativeTo(null);
              setVisible(true);
         private void initMenuBar()
              JMenuBar mbar = new JMenuBar();
              JMenu menu = new JMenu("StyleConstants");
              JMenuItem item = new JMenuItem("Color");
              item.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        Color color =
                             JColorChooser.showDialog(
                                  AttributedStringTest.this,
                                  "Color Chooser",
                                  Color.cyan);
                        if (color != null)
                             MutableAttributeSet attr = new SimpleAttributeSet();
                             StyleConstants.setForeground(attr, color);
                             textPane.setCharacterAttributes(attr, false);
              menu.add(item);
              JMenu font = new JMenu("Font");
              font.add(item = new JMenuItem("12"));
              item.addActionListener(new StyledEditorKit.FontSizeAction("font-size-12", 12));
              font.add(item = new JMenuItem("24"));
              item.addActionListener(new StyledEditorKit.FontSizeAction("font-size-24", 24));
              font.add(item = new JMenuItem("36"));
              item.addActionListener(new StyledEditorKit.FontSizeAction("font-size-36", 36));
              font.addSeparator();
              font.add(item = new JMenuItem("Serif"));
              item.setFont(new Font("Serif", Font.PLAIN, 12));
              item.addActionListener(
                   new StyledEditorKit.FontFamilyAction("font-family-Serif", "Serif"));
              font.add(item = new JMenuItem("SansSerif"));
              item.setFont(new Font("SansSerif", Font.PLAIN, 12));
              item.addActionListener(
                   new StyledEditorKit.FontFamilyAction("font-family-SansSerif", "SansSerif"));
              font.add(item = new JMenuItem("Monospaced"));
              item.setFont(new Font("Monospaced", Font.PLAIN, 12));
              item.addActionListener(
                   new StyledEditorKit.FontFamilyAction("font-family-Monospaced", "Monospaced"));
              font.addSeparator();
              menu.add(font);
              mbar.add(menu);
              setJMenuBar(mbar);
         private void initTextPane()
              doc = new DefaultStyledDocument();
              textPane = new JTextPane(doc);
              JScrollPane scroll = new JScrollPane(textPane);
              getContentPane().add(scroll);
              final JTextField text = new JTextField();
              text.setToolTipText("Please enter something");
              text.addActionListener(new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        try
                             doc.insertString(doc.getLength(), text.getText(), textPane.getInputAttributes());
                        } catch (BadLocationException bad)
              getContentPane().add(text, BorderLayout.SOUTH);
    regards
    Tim

  • How to add a nice graphic box to code??

    How do you add a nice graphic box to code? i wanted to add a little back ground colour and title with a white box for imput like
    http://img211.imageshack.us/img211/4563/examplejb4.jpg
    here is my code so you see what im doing it with
    //logtest.java
    import java.util.*;
    import java.io.*;
    public class logtest
         public static void main(String[] args)
              FileOutputStream out;
              PrintStream p = null;
              boolean quit = false;
              String fileName = "", fileLine = "", date = "", classes = "";
              Scanner file = null;
              Scanner s = new Scanner(System.in);
              double exitword, sample;
              System.out.print ("Enter the date: ");
              date = s.nextLine();
              while (!quit)
                   System.out.print ("Enter a filename: ");
                   fileName = s.nextLine();
                   if (fileName.equals("quit"))
                   System.exit(0);
                   else
              try
                   out = new FileOutputStream(fileName, true);
                   p = new PrintStream( out );
              catch (Exception e)
                   System.out.println ("Error writing to file");
                   System.exit(-1);
              System.out.print ("What classes are you doing? : ");
              classes = s.nextLine();
              p.print( date + " ");
              p.print(classes + " ");
              p.println ( "" );
              p.close();
    }thanks
    Edited by: kingryanj on Feb 23, 2008 11:36 AM

    i have examples of that but i cant brake it up
    //  Fahrenheit.java       Author: Lewis/Loftus
    //  Demonstrates the use of text fields.
    import javax.swing.JFrame;
    public class Fahrenheit
       //  Creates and displays the temperature converter GUI.
       public static void main (String[] args)
          JFrame frame = new JFrame ("Fahrenheit");
          frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
          FahrenheitPanel panel = new FahrenheitPanel();
          frame.getContentPane().add(panel);
          frame.pack();
          frame.setVisible(true);
    }the panel part
    //  FahrenheitPanel.java       Author: Lewis/Loftus
    //  Demonstrates the use of text fields.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class FahrenheitPanel extends JPanel
       private JLabel inputLabel, outputLabel, resultLabel;
       private JTextField fahrenheit;
       //  Constructor: Sets up the main GUI components.
       public FahrenheitPanel()
          inputLabel = new JLabel ("Enter Fahrenheit temperature:");
          outputLabel = new JLabel ("Temperature in Celsius: ");
          resultLabel = new JLabel ("---");
          fahrenheit = new JTextField (5);
          fahrenheit.addActionListener (new TempListener());
          add (inputLabel);
          add (fahrenheit);
          add (outputLabel);
          add (resultLabel);
          setPreferredSize (new Dimension(300, 75));
          setBackground (Color.yellow);
       //  Represents an action listener for the temperature input field.
       private class TempListener implements ActionListener
          //  Performs the conversion when the enter key is pressed in
          //  the text field.
          public void actionPerformed (ActionEvent event)
             int fahrenheitTemp, celsiusTemp;
             String text = fahrenheit.getText();
             fahrenheitTemp = Integer.parseInt (text);
             celsiusTemp = (fahrenheitTemp-32) * 5/9;
             resultLabel.setText (Integer.toString (celsiusTemp));
    }

  • How to add an image/graphic to a form webpage?

    Dear All,
    When we execute our Oracle Forms application, it opens in a webpage with a white background. This looks too bland.
    Is there a way we can add an image/graphic to the webpage to improve its look and feel? Please suggest.
    Thanks,
    Amit

    Hello,
    You have two tags in the /forms/server/formsweb.cfg file to put images in the background:
    splashScreen=no
    background=noreplace the NO value by a .GIF or JPG existing file name on the server.
    You can also hide the blank page (when separate frame=yes) as soon as it dosplays with the following in your concerned section:
    HTMLbodyAttrs=onLoad='javascript:self.moveTo(2000,2000)'Francois

  • How to add attributes in Cost Objects via Data Bridge?

    Hi everyone,
    I need your help. I want to know if is possible to add attributes via Data Bridge in Cost Objects tables like the country or address of a customer?
    Thanks for all.
    Sincerely,
    Pedro Sousa

    Hi,
    Jef is right you need to use the different values in the "Attribute Flag" field for creating attribute hierarchy using data bridge.
    For attribute Hierarchy you need to use option 12 & 15 depending on your requirement.
    12  - Attribute Assignment  - Used for assigning attribute to a member of the main hierarchy
    15  - Attribute Hierarchy only - used for creating hierarchy within attribute hierarchy.
    As mentioned by Jef for details you can refer the Data bridge user guide section 4.3.
    Regards,
    Niraj

  • How to add attributes to a DATS type characteristic

    I need to add some attiributes to a 0CALDAY type of characteristic.  I need to be able to do automatic time conversion in my transformations (e.g. from Cal Day to Cal Month or Cal Year).  I also need to have intelligent variable offsets in my queries too (e.g. the month of January-01 with a negative offset of 1 would be 12, not 00). 
    However I need to add some attributes to this Calendar Day characteristic such as "day of the week", "Week Number", etc...
    I need this as attributes and not as seperate InfoObjects such as 0CALDAY, 0CALMON, AND 0CALYEAR.  I need to be able to use the same date throughout my entire report, but then using the nav attributes, restrict based on what they selected in the variable screen.

    Hi Adam,
    It is not possible to define your own time characteristics or add attributes to any time characteristic.
    Time characteristics form the time reference frame for many data analyses and evaluations. They are delivered with Business Content.
    Examples:
    -->Timecharacteristic with the largest granularity: Calendar Day
    (0CALDAY)
    -->Time characteristic with the smallest granularity: Calendar Year
    (0CALYEAR) or Fiscal Year (0FISCYEAR).
    -Vikram

  • How to add attributes in the xml tag

    hi,
    i have two tables employee,department
    employee table
    empno number,
    empname varchar2(100),
    deptno number,
    department table
    deptno number,
    deptname varchar2(100)
    i want xml file in the above mentioned two tables.The xml file is as follows,
    <?xml version="1.0" encoding="UTF-8" ?>
    <EmployeeInfo>
    <Data type="employee">
    <empno>1</empno>
    <empname>siva</empname>
    <deptno>10</deptno>
    </data>
    <Data type="department">
    <deptno>10</empno>
    <deptname>IT</empname>
    </data>
    </EmployeeInfo>
    can anybody please give plsql code for this requirement.i need to add attributes in the xml tag.Its urgent
    By
    Siva

    A general example (based on the OE sample data/tables)
    SQL>SELECT XMLElement("Emp",
      2                     XMLAttributes(employee_id AS "id"
      3                                  , '10' "dept"),
      4                     first_name||' '||last_name) as result
      5 FROM   employees e
      6 WHERE  department_id = 10;
    RESULT
    <Emp id="200" dept="10">Jennifer Whalen</Emp>

Maybe you are looking for

  • When I try to open a Hyperlink in Excel, the Firefox pop up the page I request with an extra tab of error message. How to fix it?

    Hey guys. The problem actually bothers me for a while. If I input a URL in an (microsoft) Excel Cell then turn it into a hyperlink, when I click on it. The Firfox, which is my default net browser will pop up and show the page I request. But there alw

  • GRC AC 10 ERM Configuration

    Dear All We are on GRC AC 10 SP 6 ... and configuring Business Role Management (ERM). I have activated all the relevant BC Sets in inst guide (Page 33) and GRAC_ROLE_MGMT_LANDSCAPE. However, I am not able to find any default configuration for Role Ma

  • Java Web Start and DOM

    My app uses DOM to parse an XML file. It works fine but when I launch it through Java Web Start it cannot even create a DocumentBuilderFactory object. Does anyone know what's wrong. I'm new to Java Web Start. Thanks for your help.

  • Printout of single journal entry

    Hi All, We have a requirement where client wants to give range of GL accounts in the selection screen but want each and every document, i.e., journal entry to be printed separately. I checked Standard SAP reports, but if we select a document number r

  • HELP:About the OCP exam with Oracle Reports??

    Hello Can i achieve OCP with SQL exam , PL / SQL exam and oracle 9i reports exam / xml publisher exam I'm not intrested in giving an oracle forms exam. I'm working as an oracle reports writer on oracle applications. Kindly guide me in the right direc