Is it possible to create characteristic hierarchies programatically?

Hi all,
I have a BW 3.0b system and want to create characteristic hierarchies programatically?  Is this possible?
I can find BAPIs to programatically create cubes, infoobjects, etc., but not hierarchies.
Thanks!  Points will be awarded

Hi DAVID,
Please evaluate FMs from BMEN  function group and the following FMs:
COM_HIERARCHY_CREATE
COM_HIERARCHY_UI_CREATE
COM_PME_HIERARCHIE_CREATE
RSA1_HIERARCHY_0SOURCE_CREATE
RSAR_HIERARCHY_CREATE
RSHJ_HIERARCHY_CREATE
RSSH_HIERARCHY_CREATE
RSSHIER
RS_TREE_CREATE
Best regards,
Eugene

Similar Messages

  • Is it possible to create hierarchical tree report (not group tree) CR2008?

    Hi,
    Is it possible to create hierarchical tree kind report using CR 2008(no group tree in the report)?  The report somewhat look like below and a node can have multiple Child and so and so. Is there any magical way either as a chart or any object which supports the below structure.
                                                          Parent1
                                           Child1              Child2             Child3             Child4          Child5
                     Child1A     Child1B      Child1C
        Child1Aa  Child1Ab
    its hierarchical tree  structure and it should be in detail section of the report so that print in paper is possible.
    Please help first of all, can we able to create a report in above structure(each item needs to be surronuded with box and the each last child will contain a table valued data.
    (if I post this thread, it may look like plain text, please consider the above data as a hierarchical tree  structure with child having N number of children)
    Thanks

    Moved from .NET Development - Crystal Reports forum to Crystal Reports Design forum.
    Ludek

  • Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format

    Is it possible to create a Webservice in BI which takes XML as an input and gives PDF as output with an additional requirement that Siebel expecting the XSD from BI to send data in the BI requested format. Siebel wants to send the data as xml to BI but not sure of the BI capabilities on giving WSDL embedded with XSD (input is a hierarchical)

    Hi All,
    I am able to fulfil above requirement. Now I am stuck at below point. Need your help!
    Is there any way to UPDATE the XML file attached to a Data Definition (XML Publisher > Data Definition) using a standard package or procedure call or may be an API from backend? I am creating an XML dynamically and I want to attach it to its Data Definition programmatically using SQL.
    Please let me know if there is any oracle functionality to do this.
    If not, please let me know the standard directories on application/database server where the XML files attached to Data Definitions are stored.
    For eg, /$APPL_TOP/ar/1.0/sql or something.
    Regards,
    Swapnil K.

  • How do you create Marketing hierarchies in your company?

    Hello,
    What procedure you follow to create Marketing plans, elements and campaigns in your company? Is it not painful to create each element  manually with so many fields. And  this activity usually  is repeated every fiscal.
    Want to get ideas on the best possible way to create Marketing hierarchies. We are looking for some functionality like upload from Excel . Can somebody comment if this is possible with 7.0?
    We received reply from SAP that MS project integration is no more possible with SAP CRM Marketing. So this option is ruled out.
    Best Regards,
    Shaik

    hi,  in our project,  we develop some RFC interface,  and when external BPM process finish their workflow, it will call the RFC, then create TP in CRM to execute.
    In my opinion,  so many content is not  suitable to user to input in CRM UI.   And the CRM UI is not friendly enough to user.
    But to create a TP in backgroud is also a difficult task,  you will meet some problem like how to fill the BPS plan of TP in background, how to generate the fund usage correctly in background.    We have spend a log of time to solve them, fortunately we compalished.  So this way can be achieve, but it need effort.  Please aware this, and do your judgement.

  • Create Resultset/Rowset programatically

    How can I create a resultset/rowset programatically from scratch, without connecting to database. Actually I'm designing an N-tier intranet app. The page controller (JSP) has to pass the data of the HTTP request to the buiness tier in a generic form. As our business tier is using resultset for its methods (for efficiency and simplicity we avoided using a pure object oriented business tier whose objects have the state as their fields. Instead we have resultsets of the whole query that has the data of a single business transaction).
    Is it possible to create rowset without database connection? How?

    You can do it using CachedRowSet:
    import java.sql.*;
    import javax.sql.*;
    import sun.jdbc.rowset.*;
    public class RowSetExample
    public static void main(String args[])
    try {
    // create a new rowset and populate it...
    sun.jdbc.rowset.CachedRowSet crs = new sun.jdbc.rowset.CachedRowSet();
    sun.jdbc.rowset.RowSetMetaDataImpl rsmdi = new sun.jdbc.rowset.RowSetMetaDataImpl();
    int colCount = 2;
    rsmdi.setColumnCount(colCount);
    rsmdi.setColumnDisplaySize(1, 5);
    rsmdi.setColumnName(1, "ID");
    rsmdi.setColumnType(1, java.sql.Types.INTEGER);
    rsmdi.setColumnTypeName(1, "INTEGER");
    rsmdi.setTableName(1, "MY_TABLE");
    rsmdi.setAutoIncrement(1, false);
    rsmdi.setSearchable(1, true);
    rsmdi.setColumnDisplaySize(2, 20);
    rsmdi.setColumnName(2, "NAME");
    rsmdi.setColumnType(2, java.sql.Types.VARCHAR);
    rsmdi.setColumnTypeName(1, "VARCHAR");
    rsmdi.setTableName(2, "MY_TABLE");
    rsmdi.setAutoIncrement(2, false);
    rsmdi.setSearchable(2, true);
    crs.setMetaData(rsmdi);
    java.util.Map map = new java.util.HashMap();
    map.put(new Integer(1), "AAA");
    map.put(new Integer(2), "BBB");
    map.put(new Integer(3), "CCC");
    java.util.Iterator iter = map.entrySet().iterator();
    while (iter.hasNext()){
    java.util.Map.Entry entry = (java.util.Map.Entry) iter.next();
    int idx = 0;
    crs.moveToInsertRow();
    crs.updateObject(1, entry.getKey());
    crs.updateObject(2, entry.getValue());
    crs.insertRow();
    crs.moveToCurrentRow();
    crs.beforeFirst();
    while (crs.next()){
    System.out.print(crs.getObject(1));
    System.out.println(": " + crs.getObject(2));
    }catch (SQLException ex) {
    System.err.println("SQLException: " + ex.getMessage());
    }

  • How to create Characteristic group in CO-PA for assessment purpose

    Hi,
    Can anybody guide me as how to create Characteristic group in CO-PA for assessment of cost center balance to CO-PA?
    Thanks,
    Bijay

    You need to be more specific in your request - are you looking for a sender, or a receiver grouping? Which characteristic? Is it to be all the values in a characteristic, or is it to be groups of those characteristics.
    Have a look at the setting up of hierarchies for characteristics in COPA master data.

  • CO-PA Characteristic hierarchies in reports

    Hi Experts,
    I am aware that characteristic hierarchies can be used in CO-PA reports by specify in the hierarchy dialog box while defining characteristics in reports - but this is during creating/changing the reports
    My requirement is that I should be able to use this while executing the report.
    From SAP help, I understand that we can also use this hierarchy function while executing the report also by selecting Edit --> Hierarchy --> Choose...in report executed - I am not able to use this function. When I go to the specified place in edit....this choose hierarchy option is greyed out and so not able to select it. This is not an issue of SAp access
    Could you help me in using Characteristic hierarchies while executing the reports.
    I am pasting here wordings here from SAP help  -
    "If hierarchies exist for a characteristic, you can have the system display that characteristic in a hierarchy either when you define the report or after you have executed it. This function displays the chosen hierarchy in its entirety. The characteristic values not contained in the hierarchy appear in the report list in the row "Other characteristic values". You can also drill down on this row if you wish.
    To do so, choose the function Extras --> Choose hierarchy when you define the report or Edit --> Hierarchy --> Choose... after executing it"
    Regards,
    SKD

    Hi DSK
    This statement means that in the case of Customer or Product hierarchy, you can choose the hierarchy list after you have executed the report...
    Similarly, if you create hierarchy for others chars in KES3, I think you should be able to choose the hierarchy once you have executed the report
    Regards
    Ajay M

  • Create Characteristic with multiple units of measure

    Hello Friends,
    I want to create characteristic (CT04) which has multiple units of measure.  At present  a  Characteristic is created with a single unit of Measure. I have to create characeristic and assign it in MIC. MIC specifications are customer dependent. Customer may give specifications in different unit of measure. While creating sales order, I am entering the specifications for characteristics, as material is created with varient.
    I am creating Single Characteristic multiple times for different Unit of Measure and assigning it to the class.
    Therefore according to the Customer requirment and his specifed Unit of Measure, that Characteristic is choosen having same UoM as of Customer.
    Insead of doing this, Is it possible to assign multiple units of measure to single characteristic?
    Waitng for reply!
    Regards,
    Kiran

    Hi,
    With Multiple Unit Of measures, I don't think its possible.
    You can Use CHAR for characteristics, to Use.
    Instead for Fixed Units. Let Marketing/sales Enter the req.
    But you shall make it Multiple Selection, Since you can use them in Selection Condition.
    Hope this is Useful.
    Regards
    Raghu

  • $CL - Create Characteristic with multiple Unit of Measure

    Hello Friends,
    I want to create characteristic (CT04) which has multiple units of measure.  At present  a  Characteristic is created with a single unit of Measure. I have to create characeristic and assign it in MIC. MIC specifications are customer dependent. Customer may give specifications in different unit of measure. While creating sales order, I am entering the specifications for characteristics, as material is created with varient.
    I am creating Single Characteristic multiple times for different Unit of Measure and assigning it to the class.
    Therefore according to the Customer requirment and his specifed Unit of Measure, that Characteristic is choosen having same UoM as of Customer.
    Insead of doing this, Is it possible to assign multiple units of measure to single characteristic?
    Waitng for reply!
    Regards,
    Kiran

    What UOM's are we talking about?
    Are you talking about ppm vs. %? Or ppm vs. ppb?
    SAP can make some of these conversion automatically.  I encourage clients to standardize what their lab people report on in inspection lots.  I.e. they should always record ppm or always record % in the inspection lots.
    In the certificates you can use the certificate profile to change the UOM actually reported on the COA to the customer. So you can record by ppm in the lab, but in the cert for the characteristic, you indicate that it should be reported in %.  The system will automatically make this conversion for you.
    If you are talking somethign like screens, I recommend doing all in the lab as either thru or on and doing calculated characterisitcs to calculate the opposite for those customers that want thru instead of on, or vice versa.
    FF

  • Possible to create presentation objects outside of JDeveloper?

    Is it possible to create BI presentation objects (graphs, tables, crosstabs) outside of JDeveloper? I have been searching OTN forums, BI Beans javadoc and the OLAP API guide and have not found whether this is possible. I have seen where you can programatically create BI OLAP objects like queries and calculations, but not if/how you can create presentation objects.
    Regards,
    Steve Locke

    Got it! I was able to extend the "New Presentation" sample to allow users to save their newly-created presentations back to the BI catalog. Here's how:
    1) add a menu item for "Save"; add a listener for it
    m_mnuSave = new JMenuItem("Save...");
    m_mnuSave.setMnemonic('S');
    fileMenu.add(m_mnuSave, 4);
    m_mnuSave.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e) {
    mnuSave_ActionPerformed(e);
    2) in mnuNew_ActionPerformed, add code to save the presentation to a module-level variable
    Dataview dv = npw.getDataview();
    m_objPresentation = npw.getDataview(); // new code
    3) write the Save action handler
    void mnuSave_ActionPerformed(ActionEvent e) {
    String sName = "";
    int result = 0;
    if (m_objPresentation == null)
    JOptionPane.showMessageDialog(null, "No presentation to be saved");
    return;
    /* Create InitialPersistenceManager */
    InitialPersistenceManager pmRoot = (InitialPersistenceManager)getPersistenceManager();
    /* Create PersistenceObjectChooser */
    PersistenceObjectChooser dialog = new PersistenceObjectChooser(pmRoot);
    JFrame frame = new JFrame();
    result = dialog.showSaveDialog(frame);
    if (result == PersistenceObjectChooser.OK_OPTION)
    PersistenceManager pmCurrent = (PersistenceManager)dialog.getCurrentDirectory();
    sName = dialog.getSelectedObjectName();
    if (sName != null)
    try
    //if name is not bound, then rebind will bind it
    pmCurrent.rebind(sName, m_objPresentation);
    catch (Exception ex) {
    showExceptionDialog(this, ex);
    } // if sName != null
    }// if result == OK_OPTION  

  • Is it possible to create a Functional module dynamically?

    Hello All,
    Does any one know whether is it possible to create a FM dynamically and write some code in it?
    Regards,
    Lisa.

    Hi,
    Yes it is possible.
    Use this FM to create a function module on the fly programatically.
    RS_FUNCTIONMODULE_INSERT.
    Here is an example
    Here an example how to call it:
    call function 'RS_FUNCTIONMODULE_INSERT'                                                   
      exporting                                                                               
    funcname                      = '/TEST40P/FB_TEST_EVE99'                               
        function_pool                 = 'CRAS1'                                                
    *   INTERFACE_GLOBAL              = ' '                                                    
    *   REMOTE_CALL                   = ' '                                                    
        short_text                    = 'TEST Anlage FB'                                       
       suppress_corr_check           = ' '                -----------------> means with transport popup                                                 
       update_task                   = '1'                                                     
    *   corrnum                       = 'B20K8A0V3F'                                           
       namespace                     = '/TEST40P/'                                             
    *   suppress_language_check       = 'X'                                                    
    *   AUTHORITY_CHECK               = 'X'                                                    
    *    save_active                   = ' '                                                   
        new_source                    = it_report[]                                            
    * IMPORTING                                                                               
    *   FUNCTION_INCLUDE              =                                                        
    *   CORRNUM_E                     =                                                        
    tables                                                                               
    import_parameter              = if_import                                               
       export_parameter              = if_export                                               
       tables_parameter              = if_tables                                               
       changing_parameter            = if_change                                               
       exception_list                = if_except                                               
       parameter_docu                = if_docu_tab                                             
    *   SOURCE                        =                                                        
    exceptions                                                                               
    double_task                   = 1                                                       
       error_message                 = 2                                                       
       function_already_exists       = 3                                                       
       invalid_function_pool         = 4                                                       
       invalid_name                  = 5                                                       
       too_many_functions            = 6                                                       
       no_modify_permission          = 7                                                       
       no_show_permission            = 8                                                       
       enqueue_system_failure        = 9                                                       
       canceled_in_corr              = 10                                                      
       others                        = 11.
    Regards,
    Sesh

  • It is possible to create something like this in AE?

    Hi, i want to know if its possible to create something like this in AE (not in 3D) but particles that 'builds up' the text in some way? i have a text that is a vector, and the same as PNG, it is possible? Please tell me!

    It's amazing what Google can find:
    Red Giant - RGTV - Sand to Text Transitions
    Something similar from a zillion years ago:
    Flowing Title Effects using Adobe After Effects : Adobe After Effects Tutorial

  • NTLM Authentication : why is it not possible to create more than one NTLM realm ?

    Hello,
    I'm wondering why it is not possible to create more than one NTLM realm on a wsa.
    Can you explain exactly what is the blocking point ?
    Thanks in advance
    Regards

    Well, at this point (pre 7.5), there isn't an agent, the WSA is joined to the domain, just like a Windows box, it authenticates via that trust relationship.  From that point it is all based on how NT/Active Directory domains work.   As long as there is a trust between the domains, you can can auth users from as many domains as you like.
    There is an agent in the works.  The ADAgent will be released with 7.5.  The code is already available, it was released with the ASA ver 8.4, and it will be used to pass authentication info to the WSA.  At this point, current versions still require trust relationships between all of the domains touched.
    Taken from the setup guide: http://www.cisco.com/en/US/docs/security/ibf/setup_guide/ibf10_install.html#wp1054011
    Before you configure even a single domain controller machine using the
    adacfg dc create
    command, ensure that the AD Agent machine is first joined to a domain (for example, domain
    J
    ) that has a trust relationship with each and every domain (for example, domain
    D[i]
    ) that it will monitor for user authentications (through the domain controller machines that you will be configuring on the AD Agent machine).
    Depending on your Active Directory domain structure, the following scenarios are possible:
    1. Single Forest, Single Domain—There is only one domain, D[i] for all domain controller machines, which is one and the same as domain J. The AD Agent machine must first be joined to this single domain, and since no other domains are involved, there is no need to configure any trust relationship with any other domain.
    2. Single Forest, Multiple Domains—All the domains in a single forest already have an inherent two-way trust relationship with each other. Thus, the AD Agent must first be joined to one of the domains, J, in this forest, with this domain J not necessarily being identical to any of the domains D[i] corresponding to the domain controller machines. Because of the inherent trust relationship between domain J and each of the domains D[i], there is no need to explicitly configure any trust relationships.
    3. Multiple Forests, Multiple Domains—It is possible that domain J might belong to a forest that is different than the forest to which one or more of the domains D[i] corresponding to the domain controller machines belong. In this case, you must explicitly ensure that each of the domains D[i] has an effective trust relationship with domain J, in at least one of the following two ways:
    a. A two-way external trust relationship can be established between the two domains, D[i] and J
    b. A two-way forest trust relationship can be established between the the forest corresponding to domain D[i] and the forest corresponding to domain J

  • Creating characteristic Relationship in IP

    Hi all,
    How do I create characteristic relationship in IP?
    I want to derive Employees based on certain Cost Center.
    This works well in BPS.
    But in IP, when I go to Characteristic Relatioship tab, there is no option/button to create a new relation.
    How do I do this?
    All help is highly appreciated.
    Thanks.
    Anand

    Did you try selecting other real time infoproviders. Do remember char-relationships can be created only for real-time cubes not for multiproviders or actual cubes.
    Also check the real time cube that u selected is set to plan mode in RSA1.
    If the problem is not solved, ask the basis team to look into it. probably a refesh to J2EE engine might solve the problem at times.

  • Is it possible to create a link on the content of a text annotation??

    Is it possible to create a link on the content of a annotation??? Like the content of an annotation is some notes as well as a link...
    content -
    this is my first annotation(notes)
    http://www.google.co.in/(link)
    is it possible to create a link for the url given in the content of an annotation??? On click on the url...it should get opened...
    please reply its really urgent....

    How/where do you want to accomplish it?
    Within the document? Using Acrobat? Using another application?
    Using Acrobat within the document would be possible using Acrobat JavaScript. You can access the annotation objects of your document, and you then can evaluate the properties of each of these objects. Have a closer look at the Annotation Object section in the Acrobat JavaScript documentation.
    You will look for the contents property, and evaluate its content. When you have found something looking like a URL, you can create a link (using the rect property of the annotation), and you have what you want; you might then think to destroy the annotation, as it may overlay the link.
    Hope this can help.
    Max Wyss.

Maybe you are looking for

  • Can ARD 3 now share a screen across 2 different subnets

    We have one central office. Clients access that office via a VPN. We can then share our screen with them as we work on a proof of a project. It's a great solution, however, we can't with ARD 2.2 get it to work with two clients at once over the VPN. A

  • Passing UNC path as parameter in URL

    Hello All, I used the application creation wizard (APEX 3.1) to create an application (report + form) based on a table who's primary key is a UNC path to an image (\\servername\folder\image.tiff). The report page (page 1) has a link to the form where

  • Gnome-do won't start

    I am getting a segfault while trying to open gnome-do, here is the output: [Error 16:33:25.653] [PluginManager] Encountered error loading plugin: TargetInvocationException "Exception has been thrown by the target of an invocation." (Do:16261): Wnck-C

  • Web Control Consumer 3.0

    Anyone know if .NET 2.0 portlets work ok against the .NET Web Control Consumer version 3.0? Any known issues using Framework 2.0 vs. Framework 1.1 SP1?

  • LOCKBOX TIMING OUT

    Hi Gurus, I'm trying to sort out a solution for Lockbox. User times out after 45 mins of idle time on sap, which is sap standard. What i want to do is somehow disable the timeout so when someone is doing a transaction in the lockbox and they leave fo