Reg: Client Expression -Demantra 7.3.1

Hi All,
Using demantra 7.3.1 version,
I have a client requirement to calculate a* Sales % contribution* for each products in a product line.
For ex if my item is capacitor ,which is making sales/demand in US-east(region) what is the total contribution percentage of capacitor in US east.
Since to find the % contribution we usually calculate with total no of sales happen,In demantra there is nothing to point the summary,Please suggest me the work around.
Appreciate your response at earliest
thanks

Hi Experts
Can anyone help me to resolve the above issue

Similar Messages

  • Need explanation of Series expression and client expression

    Can someone explain me the importance of series expression when client expression is written.
    For example: In a series (series name : Revenue)
    I have written both the client and server expression to calculate the Revenue.
    As per documents client expression takes the precedence, so what is the need of having the server expression?
    Thanks,
    Padma

    Hi Padma,
    If a series has both Client expression and Server expression, Client Expression always takes precedence when we are viewing the series in the demantra worksheet. But in this case Server expression will be evaluated (not the client expression) when we try to export this series out of demantra like for example, ASCP and APCC using integration interfaces (export profiles). So the view or Mview will always hold the result of server expression and the same will be published.
    And in most cases the Client and Server expression match in terms of definition.
    Regards,
    Sudeep Bemidigi.

  • Using Oracle10g Client Express Edition

    Hi,
    I have just downloaded the Oracle Client10g Application Express Edition
    but it seems only the only available tools is the command-base "Run SQL Command Line" ?
    iand how can i actually create the TNS file ? i have already installed the Oracle Database10g Express Edition so i can i point the Oracle Client 10g to the TNS of Oracle Database 10g ?
    appreciate ur advise
    tks & rdgs

    10g Express installation automatically create the Listener (see in Windows Services).
    from you client, you can manually add tns entries in $ORACLE_HOME/network/admin/tnsnames.ora to connect to that listener. see $ORACLE_HOME/network/admin/listener.ora for the port number. You can always start and stop the listener from the command line or Windows Services.

  • Urgent : reg client proxy

    could any one pls provide ABAP code for client proxy with deep structures.Its urgent!!!

    Hi,
    Refer the below weblog and thread:
    /people/ravikumar.allampallam/blog/2005/03/14/abap-proxies-in-xiclient-proxy
    program on client and server proxy
    Thnx
    Chirag

  • Reg. Expression doesn't want to stop: /\*((.)*\s)*((\*)/)*

    I'm designing a regular expression tester that takes the regular expression in one jtextpane and applies it to the text in another jtextpane.
    The following code:
                Pattern pat = Pattern.compile(regExpPane.getText());
                Matcher m = pat.matcher(sdoc.getText(0, sdoc.getLength()));
                while (m.find() )
                    doLater(m.start(), m.end()-m.start(), matched, true);
    The doLater function is just a thread that applies setCharacterAttributes after the mutex on the styled document has been released.
    The regular expression:
    /\*((.)*\s)*((\*)/)*throws the while loop into an infinite loop ( I know this from limiting it to 10 cycles or less) when it finds text to match. The regular expression, as some of you may have already guessed, is for highlighting commented code between and including /* ... */
    On smaller cases, such as one or two lines, it works fine. The problem arises on larger cases. Why would this run infintely? Perhaps someone has some suggestions for improvement?

    Very poor solution...probably doesn't test everything...definitely doesn't test /* inside quotes.
    But it might help
    /* the first comment */
    // standard imports
    import java.util.regex.*;
    import java.util.*;
    import java.io.*;
    import java.nio.*;
    // import static java.lang.String.format;
    // import static java.lang.System.out;
    // local imports
    public class RegexExample
        private static Pattern SLASH_DOT_PATTERN;
        private static Pattern getSlashPattern()
            if (SLASH_DOT_PATTERN == null)
                String regex = "(?:[^/]|^)  /\\*  (?:[^*]  | \\*[^/])*   \\*/";
                //                     1      2            3               4
                // 1 Either starts at the beginning of the file or not a //* kind of
                // comment.
                // 2 Start of a slash-star comment
                // 3 The stuff inside the slash-dot comment cannot be a star-slash
                // 4 End of a slash-star comment.
                SLASH_DOT_PATTERN = Pattern.compile(regex,
                                                    Pattern.DOTALL | Pattern.COMMENTS);
            return SLASH_DOT_PATTERN;
        public static void main(String [] args)
            testCommentInFiles(args);
        private static void testCommentInFiles(String [] filenames)
            Matcher m = getSlashPattern().matcher("");
            for (int i = 0, maxi = filenames.length; i < maxi; i++)
                System.out.println("\n\n----------------\nTesting file: " +
                        filenames);
    boolean noMatchWasFound = testFile(filenames[i], m);
    if (noMatchWasFound)
    System.out.println("No slash star found in this file");
    else
    System.out.println("\nThat was file: " +
    filenames[i]);
    try
    Thread.sleep(noMatchWasFound ? 1000 : 2000);
    catch(InterruptedException ex)
    * this is more
    * commenting going on.
    private static boolean testFile(String filename, Matcher m)
    boolean noMatchWasFound = true;
    try
    File f = new File(filename);
    long l = f.length();
    int len = l > Integer.MAX_VALUE ? Integer.MAX_VALUE : (int)l;
    char [] data = new char[len];
    FileReader in = new FileReader(f);
    in.read(data);
    in.close();
    CharSequence seq = CharBuffer.wrap(data);
    m.reset(seq);
    while (m.find())
    noMatchWasFound = false;
    System.out.println("\nFound match: " + m.start()
    + ":" + m.end());
    System.out.println(m.group());
    catch(Exception ex)
    System.out.println(ex);
    return noMatchWasFound;

  • Reg:'XPATH' Expressions in Receiver Determination

    Hi All,
    My scenario is an IDoc type.
    Structure:
    ZABCD
    IDOC
    TEST1
    FIELD1
    FIELD2
    TEST2
    FIELD3
    FIELD4
    Condition:
    (field1 = "500" OR field1 = "800" ) AND (field3 = "EZTU" OR field4 = "BLKB")
    I am trying to achieve the above condition  through own XPATH expression in Receiver determination.
    Can anyone help me out in this.
    Thanks in Advance,
    Lavanya .B

    I have just simulated your structure in XML Spy
    <ZABCD>
         <IDOC>
              <TEST1>
                   <FIELD1>500</FIELD1>
                   <FIELD2></FIELD2>
              </TEST1>
              <TEST2>
                   <FIELD3>EZTU</FIELD3>
                   <FIELD4>BLKB</FIELD4>
              </TEST2>
         </IDOC>
    </ZABCD>
    and the XPath is /ZABCD/IDOC/TEST1[FIELD1 = '500' or FIELD1= '800' and /ZABCD/IDOC/TEST2[FIELD3 ='EZTU' or /ZABCD/IDOC/TEST2[FIELD4 = 'BLKB'
    consider that thread does not show the some character, so, put a ] after 800,'EZTU' and 'BLKB' if i put it the blog consider as a link everithing between [     ]
    I mean
    '800']
    'EZTU']
    'BLKB']
    refer to this link: /people/shabarish.vijayakumar/blog/2006/06/07/customise-your-xpath-expressions-in-receiver-determination
    Edited by: Rodrigo Alejandro Pertierra on Sep 15, 2010 10:46 AM
    Edited by: Rodrigo Alejandro Pertierra on Sep 15, 2010 10:49 AM

  • Reg - Client Copy - Urgent

    Hi Gurus,
      The developer need to test program in latest PRD DB they ask client copy the PRD System. 
    Only the copy the DB means which category to Select copy the system or i copy the SAP_ALL.
    Pls advise.  Now DEV DB is now 70%.
    Or
    if there any possible to Overide the Database.  Already we have Client 200 can i copy the latest one in Client 200.  Pls advise...
    Thanks
    Rajesh.
    Edited by: R Rajesh on Feb 28, 2008 11:57 AM

    Hi,
    If your requirement is to copy only the DB structure then you DB copy,
    If you want the data also to be copied then use SAP_ALL mentionening the desired tables.
    Regards
    Reward Points if useful

  • Reg : client level data,plant level data,storage location level data

    hi
    when we enter the data mm01 we select views.these views are based on cleint level,plant level,storage location level .i want the difference between all the three levels.how do we differentiate.

    As per our business process there are one company and in which many plants and storage location are available. In which many materials are available in different plant in different storage location.
    As per SAP Standard structure: -
    Company >> Company code1 & Company code2... >> Plant 1 & Plant 2 & Plant 3 .... >> Storage location 1 & 2 & 3........
    And in all plant and storage location have different data.
    Suppose in one plant we do quality testing for material and it may be possible in other plant we not perform quality testing for material. So in this case for same material quality data is different for different plants.
    Client Level: - Means data is same for all plant level like Basic data
    Plant Level: - Means data is based on plant level like Purchasing, Plant data, Quality data, Accounting view.
    Storage location level: - Means data is based on storage location level, for different storage location data will be different like Storage location stock data ..
    Due to this you can maintain different data on plant level & storage location level.
    Regards,
    Mahesh Wagh

  • Reg : client concept

    Can anybody list me what are clinet independent objects and client dependent objects in SAP .

    Hi Kamala,
                     All tables are client independent(i.e) the table structures can be viewed in all the clients but the records in the table are client dependant(i.e) the records created in one client cannot be viewed in other client.
                     You need to put the records created in a customizing request and manually import to other client.
    Example:
                  Say your server has two clients namely 100 and 200.             
    You can see the table MARA in both the client 100 and 200 but the contents of the MARA differs from one client to another.
    Hope it resolves your query.
    Thanks and Regards,
    Siva

  • Reg: Client User SAP*ALLOWED

    Hi
      How to clear the. program. and how to change cube.
      No changes for user SAP* allowed
    Choose 'Display object' or 'Cancel'.
    Thanks & Regards.
    S.N.Senthilkumar

    Hi,
    This is a special user with admin access.Please dont use this id and ask Basis people to
    create user with required authorization so that you can work    in rsa1.
    Thanks,
    Saveen Kumar

  • How to validate the Series Expresion in Demantra Business Modelor

    Hi,
    Is there any one having idea about how to fix the series expression in Demantra Business Modeler. Below is the
    expression "if( sum ( req_plan_ovr_percent ) >100 ,1,0)" that is invalid and i want to fix it.
    It will be helpfull if you provide some pointer on this.

    Hi,
    I presume that the series expression you are trying to define is a Client Expression.
    I checked the expression and it's valid but with another series other than "req_plan_ovr_percent", so you may check the series settings and that it exists in the "Client Expression Editor's" Series list.
    Thank you.

  • Final price in Demantra

    Hi All
    I am trying to set formula to derive final price of item from multiple price list setup. We have got 6 different pricelists. The item will have its price only in 1 pricelist. The item is not repeated in any other pricelist. Currently my client expression for series item_price has several if conditions checking each pricelist one by one. Can I use any other function to simplify this?
    Appreciate any help on this.

    An alternate option:
    While loading these price lists into Demantra, you may want to load another series which represents unit price for all the items. This can be done as part of load process with a simple customization.
    This will simplify your series expressions and would also help with performance of worksheets which use price list as series.
    Thanks
    Raj
    (http://oracledemantra.blogspot.com/)

  • Problem in installing 10g express edition on windows 8

    I have installed oracle 10g express on windows 8.it was successfully installed.when i try to make a qurey it says data not found.Though table is successfully created.But when i try to fetch the data from table using "select * from table_name" its says data not found.i dont no what is the problem..if anyone has the solution please mail me at [email protected]

    I have installed oracle 10g express on windows 8.
    Said that XE 10g is not certified for Windows 8 (Oracle&amp;reg; Database Express Edition), please post the exact commands you executed and error(s) you got.
    Did you insert data in that table ? and did you select from the same session, or another one ? if another one, did you commit after inserting ?

  • Client Install Fails: Log: ClientIdManagerStartup - Server rejected registration request: 3

    Trying to install the client onto Windows Server 2008 R2 Servers using ConfigMgr 2012R2. no PKI is being used. We do not see this issue on any workstations, only servers.
    It returns the following:
    Got registration response from MP. Client approval status: -1
    [RegTask] - Server rejected registration request: 3 ClientIDManagerStartup 
    Actions taken based on other Articles:
    1.Delete the c:\windows\smscfg.ini file
    2)    Run CCMDELCERT on the client
    3)    Restart the SMS agent Host service.
    Result: FAILED, it comes back with the same errors.
    MP_RegistrationManager.log shows:
    MP Reg: Client in-band certificate is not valid due to failures in certificate chain validation, Raising status event. Failure HR = 0x800b010a, In-band Cert SubjectName = Servername - SERVER
    Raising event:
    [SMS_CodePage(437), SMS_LocaleID(1033)]
    instance of MpEvent_CertInvalidChain
     ClientID = "GUID:D32A0A76-E832-49B6-A431-084DB435FD83";
     DateTime = "20140520175614.768000+000";
     MachineName = "Servername.tes.name.com";
     ProcessID = 3444;
     SiteCode = "XYZ";
     SubjectName = "Servername - SERVER";
     ThreadID = 17368;
     Win32ErrorCode = 2148204810;
    MP Reg: Registration request body is invalid.
    Any other ideas out there???
    David Baur

    Do the following to check the SMS self-signed certificates
    Start MMC.exe
    Add/Remove Snapin -> Select Certificates -> Select local computer
    Locate the SMS folder
    Find the SMS Signing certificate and SMS Encryption Cerrtificate - check if they have expired. If they have expired - delete them.
    Retry client installation

  • Demantra Integration Interface - export

    Hi all,
    I'm trying to export the results after each forecast and for that I created an workflow that containes a transfer step which refers to a Export Integration Interface.
    -I set the following series to be exported: sales_date, history, forecast, abs dev, abs % err, and the Item level
    -The time: fixed beginning with 01.01.07 until 12.31.08.
    The problem is:
    1. that the text file exported contains all the series but the abs dev and abs % err are 0 which is not the case retrospecting the information from the worksheets,
    2. and the series are exported beginning with 01.01.07 but they stop at 04.07.08 (with app. 8 months less than expected).
    Thanks in advance,
    AMC

    Hi vratna13,
    I agree with you and the other members that suggested using a server expression, but I don't know how to create a series with server expression that reproduce the client expression output dinamicaly.
    What I mean by that is that the last forecast is stored in the branch_data.fore_1, branch_data.fore_2, branch_data.fore_3 and so on, when I define the client expression and run the workflow that has several steps:
    1 load data
    2 run forecast
    3 export results
    I'm not stopping the workflow to redefine the client expression, this workflow runs 50 times without users interaction.
    So is there other series available in the client expression list that stores the last forecast or is there a way that I can use the series above so that the output will be everytime the last forecast without any redefining of the client expression and any users interference.
    Thanks
    AMC

Maybe you are looking for

  • Help Fix erorr Contentpresenter

    Hi All I using weblogic portal 10.3, i use porlet Content Presenter have get content in CMS, but many times throws erorr such as: ####<Aug 9, 2012 9:12:52 AM ICT> <Error> <netuix> <portalXXXXXXXXXX> <MS0XXXXXXXXXXX> <[ACTIVE] ExecuteThread: '113' for

  • 802.1x: Possible to connect pre-login?

    I need to find a way to get the WiFi connection to become/remain active before a user logs in. I've got a configuration profile (Encryption: WPA/WPA2 Enterprise, Enterprise Mode: Loginwindow, Enterprise Mode: System, EAP Type: PEAP, Auto Join: True)

  • Lenovo Thinkpad T410 is not detecting transcend 250 GB external hard disk

    Lenovo Thinkpad T410 is not detecting transcend 250 GB external hard disk I have XP installed I have updated my bios also. It is also not shown in Disk Management. My hard disk is being detected on other desktops and laptops. My hard disk has only go

  • How to map two fields to one field

    Hi, All, I have three datastore objects (three data fields): Year, term, and period key. Their relationship is like this: If year = 2010, term = '010', period key will be "1010".  In selection screen, I want users to input year (2010) and term (010),

  • Reset PMU worked.... but....

    The screen has darkened again. I will try resetting PMU again, however, I am concerned that at some point this won't work. How do I determine the cause of my monitor going dark (hard drive is running but monitor remains dark)? This computer suits our