Need some Infor regarding Query Previliges

Hello Friends,
I am having a query which is doing a select from a collection of tables.
The query makes use of a procedure where I am passing some values.
But when I run it I get
ORA 01031-Insufficient Previliges Exception.
but when i comment the procedure part/line in the query.
It gets executed (here anyway it shows empty tables,but atleast it executes).
SO I thought if there is something in oracle,that, we can set previliges for the procedure which are different than the query itself(SELECT...). Considering the case above.
I hope you have got my problem.
I don't have any idea what needs to be done.
Thanks
Vishal

Does the user trying to run the procedure have EXECUTE access on the procedure? You would grant this privilege with something like
GRANT EXECUTE ON <<procedure name>>
   TO <<user name>>Justin
Distributed Database Consulting, Inc.
http://www.ddbcinc.com/askDDBC

Similar Messages

  • I need some help Regarding Cumulative totals

    Hi ,
    i have a requirement
    1) we have columns calender Periods and actual to date. The requirement is we need cumulate the actual to date. i have applyed RSUM function in column formula.
    2) it is working fine. But again the requirement is this cumulative solution is changed based on selected calender periods. but this is not expected.
    3) ex:-
    calender period actual Units Cumulative Units
    oct - 2010 10 10
    Nov-2010 9 19
    Dec-2010 15 34
    Jan-2011 25 59
    Feb-2011 12 71
    March-2011 19 90
    April - 2011 13 103
    May - 2011 18 121
    June - 2011 24 145
    this is the reqiurement but i have a Prompt Like
    i hve selected resource categery some xyz and stert period is Jan -2011 and end period is May - 2011
    the values disply's like bellow
    Resource Category start Period End Period
    xyz Jan - 2011 May - 2011
    Jan-2011 25 25
    Feb-2011 12 37
    March-2011 19 58
    April - 2011 13 71
    May - 2011 18 89
    But this is not actual cumulative units the actual value for Jan 2011 cumulative value is 59 not 25
    can any one help me regarding this issue
    regards,
    ramesh

    Hi,
    Refer this link abt iview properties & set authorization ...
    http://help.sap.com/saphelp_nw04/helpdata/en/13/81a66d100011d7b84b00047582c9f7/frameset.htm
    Color- you have to change portal theme...
    Width- create a new Loyout..
    Regards,
    Senthil K.

  • Access Web App - Need some advice with query (text to number problem)

    In an Access Web App I want to create a query.
    I have two tables which are related but in a bit complicated way. For some reason I have a text field in which I save a number. This number relates to the ID of another table. When I combine these two tables in a query, it's not working because the textfield
    cannot query the (ID)number field.
    Is there a way, in this query so that I covert the text field to a number so the query will work?
    I tried to do it with the "Parse" function but no luck, so far.
    Thanks, Mike

    Hi Mike,
    Based on the description, you want to create a query by joining a text filed with number filed?
    Did I understood correctly? If so, as far as I test, it works in Access 2013 web app. Here is the screen shot for your reference:
    If I misunderstood, please feel free to let me know.
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Need Some Calculation in Query

    i have following sample data
    select * from temp ;
    CODE DDATE            STAT CO_CODE    COM          FND_CODE       FUND      AMOUNT      UNITS    UBAL
    76 24/06/2010     I      1       A B C            28      X Y Z        59854592   5787134.11     5787134.11
    76 29/06/2010     R      1       A B C            28      X Y Z                   -1690984.6     4096149.47
       07/07/2010     I      1       A B C            28      X Y Z                   143454.173     4239603.65
    76 19/07/2010     R      1       A B C            28      X Y Z                   -1393464.6     2846139.00
    I need a query that will display all feilds with this calculation
    continuee after UBAL
    59854592(amount) / (Units) 5787134.11 = Avg (10.3427)
    CODE DDATE    STAT CO_CODE COM   FND_CODE   FUND       AMOUNT       UNITS        UBAL         Avg      ABal
    76 24/06/2010  I      1    A B C 28         X Y Z        59854592   5787134.11  5787134.11   10.3427   59854592
    2nd line
    If STAT = R then
    -> Units * Above AVG = amount
    -> Above ABal (59854592) - Current Line Amount (17489346) = ABal 42365246
    -> Abal / Ubal = Avg
    76 29/06/2010 R      1     A B C 28        X Y Z         17489346   -1690984.6  4096149.47  10.3427   42365246  
                                   (1690984.6*10.3427)
    3rd Line
    If STAT = I
    ->   Abal same as Above 42365246
    ->   Abal / Ubal = Avg
       07/07/2010 I      1     A B C 28        X Y Z                   143454.173   4239603.65  9.9927    42365246 
    4th line (same as 2nd line)
    If STAT = R then
    -> Units * Above AVG = amount
    -> Above bal - Current Line Amount  = ABal
    -> Abal / Ubal = Avg
    76 19/07/2010 R      1     A B C 28       X Y Z          13924473  -1393464.6    2846139.00  9.9927    28440773
         Need your Help

    Ahmed,
    You may have to tweak the rounding a little, but this'll get you started:
    SQL> create table mytable (code,ddate,stat,co_code,com,fnd_code,fund,amount,units,ubal)
      2  as
      3  select 76, date '2010-06-24', 'I', 1, 'A B C', 28, 'X Y Z', 59854592, 5787134.11, 5787134.11 from dual union all
      4  select 76, date '2010-06-29', 'R', 1, 'A B C', 28, 'X Y Z', null, -1690984.6, 4096149.47 from dual union all
      5  select null, date '2010-07-07', 'I', 1, 'A B C', 28, 'X Y Z', null, 143454.173, 4239603.65 from dual union all
      6  select 76, date '2010-07-19', 'R', 1, 'A B C', 28, 'X Y Z', null, -1393464.6, 2846139.00 from dual
      7  /
    Table created.
    SQL> select code
      2       , ddate
      3       , stat
      4       , co_code
      5       , com
      6       , fnd_code
      7       , fund
      8       , amount
      9       , units
    10       , ubal
    11       , myavg "Avg"
    12       , abal "ABal"
    13    from mytable
    14   model
    15         partition by (co_code,com,fnd_code,fund)
    16         dimension by (row_number() over (partition by co_code,com,fnd_code,fund order by ddate)-1 rn)
    17         measures (code,ddate,stat,amount,units,ubal,0 myavg,0 abal)
    18         rules iterate (100) until (ddate[iteration_number+1] is null)
    19         ( amount[iteration_number] = case stat[iteration_number]
    20                                      when 'R' then round(abs(units[iteration_number]) * myavg[iteration_number-1])
    21                                      else amount[iteration_number]
    22                                      end
    23         , abal[iteration_number]   = case stat[iteration_number]
    24                                      when 'I' then nvl(abal[iteration_number-1],amount[iteration_number])
    25                                      when 'R' then abal[iteration_number-1] - amount[iteration_number]
    26                                      end
    27         , myavg[iteration_number]  = round(abal[iteration_number] / ubal[iteration_number],4)
    28         )
    29   order by co_code
    30       , com
    31       , fnd_code
    32       , fund
    33       , ddate
    34  /
          CODE DDATE               S    CO_CODE COM     FND_CODE FUND      AMOUNT      UNITS       UBAL        Avg       ABal
            76 24-06-2010 00:00:00 I          1 A B C         28 X Y Z   59854592 5787134.11 5787134.11    10.3427   59854592
            76 29-06-2010 00:00:00 R          1 A B C         28 X Y Z   17489346 -1690984.6 4096149.47    10.3427   42365246
               07-07-2010 00:00:00 I          1 A B C         28 X Y Z            143454.173 4239603.65     9.9927   42365246
            76 19-07-2010 00:00:00 R          1 A B C         28 X Y Z   13924474 -1393464.6    2846139     9.9928   28440772
    4 rows selected.Regards,
    Rob.

  • Just needed some clarification regarding the Viewer Builder and actually publishing your App...

    If someone could let me know if my understanding is correct, that'd be a huge help... So I've designed my publication in InDesign and exported the .zip file from the Folio Producer. I've created all of my certificates/splash screens/icons. Lastly, I just recently went through the steps of the Viewer Builder. I'm now at the stage of this process that requires me to purchase the $395 single edition so that I can enter the serial number in the last stage of the Viewer Builder. Now, to my knowledge, once I get the serial number, Viewer Builder will then give me access to an .ipa file and a .zip file. The .ipa file is for me to test on my iPad, and the .zip would be used to distribute to the App Store. I guess this is where I get confused... Let's say after I test the .ipa on my iPad, I don't like some part of my publication. I know how to update my own documents obviously, and I understand that I would have to export another .zip file from the Folio Producer, in turn requiring me to edit the exported folio link in the Viewer Builder. If I had to do that, would I need to purchase another single edition serial number since the original App was edited? Or would the same serial number apply since I'm editing that same App in the Viewer Builder? My next question is somewhat similar. Let's say all of the information is up to date and I go ahead and publish the App to the App Store. However, maybe a month later or some time in the future, I needed to update a phone number or email address--some little detail like that. Again, I understand that I'd have to update the export link in the Viewer Builder, but would I then need to create a new app since my app was already published? Would I then have to purchase another $395 single edition serial number just so that I can update my information? This seems to be the only thing in this whole process that I could use some clarification on so that I don't run into any surprises in the future. Any help would be great, thanks!

    Hi Joshua,
    When you have purchased the serial, you can rebuild your app with your updated content, as long as you use the same bundleID (applicationID), that is tied to your Apple mobile provisioning profile. The serial number is valid for a one year period.
    After you have submitted your app to Apple and it has been approved, please read: http://forums.adobe.com/message/4172167#4172167
    With kind regards,
    Klaasjan Tukker
    Adobe Systems

  • Need some help regarding validation of input in a text field

    Hello everyone,
    i am new to all this website designing stuff and is working on my first website (treausre hunt types) and expecting some guidance over here.   :-)
    I have successfully managed to validate the login page using server behaviour.
    Let me explain what i need guidance with.
    After login , the user is redirected to a page where a question is asked and he has to type the answer in the given text field and click on the submit button. Now i want to validate the given answer with the correct one and if it is answered correctly then the user is redirected to the next page.
    the question is what and how am i supposed to do this?  i am using adobe dreamweaver cc and wampserver as localhost.

    This becomes complicated to do it the way you want BUT YOU CAN do it - you just need to be a bit more efficient and get a template together.
    Copy the 4 documents below and paste into seperate DW files to see how this works then look at the code and see if a pattern becomes noticeable to you. What we are doing is adding 1 to each level and checking the user has accumulated a score to that level - if not they are bumped down to the level which they have reached or in the case of not reaching any level to question 1.
    question_1.php:
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == "Green" || $answer == "green")) {
    $_SESSION['question'] = 2;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_2.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 1.</h3>
    <h2>What color is grass?</h2>
    <form id="quiz" action="question_1.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>
    question_2.php
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    // This sends the user to question 1 if SESSION question has not been set
    if(!isset($_SESSION['question'])) {
    header('Location: question_1.php');
    // This sends the user back if SESSION question is LESS than 2
    if($_SESSION['question'] < 2) {
    header('Location: question_1.php');
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == "Blue" || $answer == "blue")) {
        $_SESSION['question'] = $_SESSION['question']+1;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_3.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 2.</h3>
    <h2>What color is the sky?</h2>
    <form id="quiz" action="question_2.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>
    question_3.php
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    // This sends the user to question 1 if SESSION question has not been set
    if(!isset($_SESSION['question'])) {
    header('Location: question_1.php');
    // This sends the user back if SESSION question is LESS than 3
    if($_SESSION['question'] < 3) {
    header('Location: question_2.php');
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == "Yellow" || $answer == "yellow")) {
        $_SESSION['question'] = $_SESSION['question']+1;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_4.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 3.</h3>
    <h2>What color is the sun?</h2>
    <form id="quiz" action="question_3.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>
    question_4.php
    <?php
    // Start the session
    session_start();
    ?>
    <?php
    // This sends the user to question 1 if SESSION question has not been set
    if(!isset($_SESSION['question'])) {
    header('Location: question_1.php');
    // This sends the user back if SESSION question is LESS than 4
    if($_SESSION['question'] < 4) {
    header('Location: question_3.php');
    if (isset($_POST['submit'])) {
    $answer = trim($_POST['answer']);
    if(($answer == 4 || $answer == 4)) {
    $_SESSION['question'] = $_SESSION['question']+1;
    $correct = "<p>Correct Answer</p><p>You will automatically be taken to the next level</p>";
    header( "refresh: 5; url=question_5.php" );
    else {
    $wrong = "<p>Wrong, please try again,</p>";
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Quiz</title>
    <style>
    p {
    font-size: 20px;
    color:#930;
    margin: 0;
    padding: 10px 0 8px 0;
    </style>
    </head>
    <body>
    <h3>Question 4.</h3>
    <h2>What  is 2 + 2?</h2>
    <form id="quiz" action="question_4.php" method="post">
    <label for="answer">Answer<br>
    <input type="text" name="answer" id="answer"></input>
    <input type="submit" name="submit" value="Sumbit">
    </label>
    </form>
    <?php
    if(isset($wrong)) {
        echo $wrong;
    elseif(isset($correct)) {
    echo $correct;
    ?>
    </body>
    </html>

  • Need some Guide regarding Configuration of Sender Mail Adapters....

    Hellow All Members,
      Can anybody refer me to some blogs other than SAP's own help which talks about use and configuration of sender mail adapters...
    Thanks in Advance,
    Sugata

    Hi Sugata,
    These links i guess should help you understand clearly as to how to configure your sender mail adapter.
    <a href="http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/frameset.htm">Configuring the Sender Mail Adapter</a>
    <a href="/people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure Adapter scenarios – SAP Exchange Infrastructure</a>
    <a href="/people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address Adapter (XI) - how to implement dynamic mail address</a>
    Also refer these links:
    http://www.microsoft.com/exchange/evaluation/compare/ClientCompare.mspx
    http://www.microsoft.com/exchange/evaluation/whatis.mspx
    http://www.trincoll.edu/depts/cc/documentation/email/IMAP_vs_POP/default.htm
    http://www.imap.org/papers/imap.vs.pop.brief.html
    Also please go through these notes:
    <b>804102</b>
    xi 3.0 mail adapter with pop3 user authentication problem
    <b>810238</b>
    XI 3.0 Mail Adapter for POP3 may not report some errors
    Just an additional info <b>"sender mail adapter is to convert e-mails to XI messages"</b>
    Regards,
    abhy

  • Need some info regarding BWA1 transaction in CRM

    Hi,
      I am trying to understand few things for the BWA1 transaction. Looks like we need to explore the BWA1 transaction for data source enhancement before trying the classical Data source enhancement method (Append structure in the Data source ) in RSA6.
    1> The Data source fields visible in transaction RSA6 is stored in TABLE ROOSFIELD.
    2> In BWA1 transaction the visible field (in the 'extract structure’ tab in the Field 'selection <> 'A' ) matches with the Data source fields in RSA6
       However the entry in the 'Mapping' tabs in Transaction BWA1 is stored in table SMOXRELP.
    3> All the fields from the “Extraction Structure’ TAB rightly belong to the extraction structure maintained in the ‘Metadata’ tab.
    After that I seem to loose my way.
    For example take the example of data source 0CRM_SALES_ORDER_I, the above two assumptions are correct.
    But when I look at the extraction structure (CRMT_BW_SALES_ORDER_I) AND the segments in the Mapping tabs (ORDERADM_H, ORDERADM_I etc)
    I don’t seem to relate them, I know there these comes from the BDOC BUS_TRANSACTION_MESSAGE (as mentioned in the ‘Metadata’ Tab in BWA1) but don’t really understand the correlation.
    Also please note that I am not able to change the value for ‘Selection’ field in the ‘Extract Structure’ tab.  I that case, how can I really enable some field which are by default hidden from the BW data source? Also how can I extend the whole thing to take into some custom fields as well that I have created for the Sales Transaction as well.
    Thanks
    AGN

    hi Arun,
    take a look oss note 692195, steps if you add new fields.
    try to read bw350 course material, there is one chapter talk crm extraction, explain bw adapter, bdoc, etc.
    and perhaps check bi best practice
    http://help.sap.com/bp_biv235/BI_EN/index.htm
    ->customer relationship management
    692195 - FAQ: Sales Analytics and CRM-BW data Extraction
    Question 4: How can I extract the fields, which are not provided in the standard  data source extraction .
    Suggestion 4: Follow the steps mentioned below.
    1. Enhance Extract Structure with the required fields. (Create & include
       an append structure to the extract structure via transaction RSA6).
    2.a) Release the fields of the append  for usage. (  To do this, double
       click on the Datasource and remove the flags in the column 'Hide
       Field' for all fields of Append. )
    2.b)If the new fields cannot be seen in the extract structure of
        the transaction BWA1 then change and save the datasource, and then
        activate it in RSA6.
    3. Define your mappings in BADI (CRM_BWA_MFLOW) to fill these fields.
    Goto SPRO .
    Follow the path ->
    SAP Implementation guide ->Implementation with other mySAP components ->
    Data transfer to the Business Information Warehouse->
    Settings for the application specific datasources (CRM)->
    Settings for BW adapter->
    Badi :BW adapter :Enhancement of datasources in messaging flow.
    4. Replicate the new Datasource to BW.
    5. Expand the Communication Structure in BW.
    6. Maintain transfer Rules for the new Datasource.
    7. Activate the trasfer rules and perform the upload.

  • Need some material regarding sap crm base customization

    hi to
    this is nagaraju want some material about base customization in sap crm ,
    if any one having plz forward to me
    my mail id [email protected]

    Hi nagaruju,
       Look at best practices.
    -<a href="http://help.sap.com/bp_crmv250/CRM_DE/index.htm">SAP Best Practices for Customer Relationship Management - V2.50</a>
    Regards.
    Manuel

  • Need some guidance - SQL Query Bind Variables for VO Object

    Hi,
    I'm trying to customize a custom page and I'm new to this. Can you please guide me or send me an example on how to do this?
    1) VO is having the query as "SELECT INVOICE_NUM, INVOICE_DATE, INVOICE_AMOUNT, ...... from AP_INVOICES_ALL" (no parameters in the where clause)
    2) Added VO to AM
    3) XML PG is designed with MainRN, QueryRN, and Instance of VO1 as Table region. Selected INVOICE_NUM, INVOICE_DATE as Searchable. QueryRN is ResultbasesSearch.
    4) Deployed to E-Biz and users were able to query using INVOICE_NUM or INVOICE_DATE fields that are available in the QueryRN.
    Now, they want to add FROM_INVOICE_DATE and TO_INVOICE_DATE to the Search Condition. So, I have added the condition in the VO Query as "SELECT INVOICE_NUM, INVOICE_DATE, INVOICE_AMOUNT, ...... from AP_INVOICES_ALL WHERE INVOICE_DATE between :0 and :1".
    How to add these fields FROM_INVOICE_DATE and TO_INVOICE_DATE to the QueryRN? These are not part of VO.
    How to bind them to :0 and :1? I don't see any controller here? Do I need set a new controller and write logic for getting result set?
    Any sample script or link would really help.
    Thanks in advance.
    Ram

    Hi Ram,
    Hmmm, it is interesting.
    Add two attributes to the page fromDate and toDate and in the controller class capture the values (like String fromDate = pageContext.getParameter("FromDate");) and invoke a method from AM and pass these parameters.
    In the AM method call a method of VO and the VOImpl set and pass the bind parameters and execute the query again.
    like
    setWhereClause(" from_date = :1 AND to_date = :2");
    setWhereClauseParams(null); // Always reset
    setWhereClauseParam(0, fromDate);
    setWhereClauseParam(1, toDate);
    executeQuery();
    Hope this will answer your question.
    Krishna.

  • Need some help with query

    Hey all, I have the following scenario,
    Table A
    Column1
    2
    3
    5
    Table B
    Column2
    7
    5
    4
    Table C
    Column1, Column2
    2,7
    3,8
    5,10
    So basically I need to compare in a way that the combination of the values in A AND B match the recordset in C as such,
    select column1, column2 from Table A, Table B
    where a combination of both those columns exists in Table C. Therefore in the above example, this query should return "2,7" as the output. Any ideas would be appreciated.

    This should do?
    SQL> select c.col1, c.col2
      2  from c
      3  where (c.col1, c.col2) in (select col1, col2
      4                            from (select c.col1 col1
      5                                  from C, a
      6                                  where c.col1 = a.col1) q1
      7                                ,(select c.col2 col2
      8                                  from C, b
      9                                  where c.col2 = b.col1) q2
    10                            )
    11  /
          COL1       COL2
             2          7Cheers
    Sarma.

  • Need some help regarding the component usage

    Dear ALL,
    I have one scenario something like this .
    I have a main component say ZComp1  and in it i have created one view in which we two drop downs and i have 28 view containers depending upon the drop down values these view containers will be visible here all the view container i am using for displaying by means of component usage (i.e 28 compoenents i am calling into my main ). So now when i run my main application it is taking minimu of 2 mins to display the screen .  To test whats the problem i have written some code in the handle default of main window and  set the break point what i observed is quite surprising that when i run the apllication it takes hardly 2 mins of time to reach my handledefault method (which is the first one to trigger when i run the apllicatin) . Please suggest me what can be doen to overcome this issue. or suggest some alternative to improve  performance.
    Note : When there is less amount of data in the screen then it takes less time to execute or else it takes hell lot of time plz suggest :(.
    Awaiting for your valuable suggestions.
    Regards,
    Sana.

    Hi Misbah,
    28 VCO are too much in  a view.
    So, try to revamp teh design and reduce the VCO's in a view.
    Another thing would be, Every WDDOINIT, and WDDOMODIFY view of the used components would be called when you try to load the component at first.
    In your case that is happening, and please check and confirm it.
    A proper modular design would be a better approach in handling the situation.
    Good day!
    Regards,
    Shashikanth. D

  • I need some information regarding the Enable-SPSessionStateService commandlet

    I am our TFS Admin and by default a pseudo SharePoint 2010 admin as well.  We have a couple users who can design and build pages, portals, web parts, etc..  Anyway, one of those users tried to add a web part for SQL Reporting Services
    and in doing so caused an error to occur any time someone attempts to access that page/portal (It is actually a dashboard for TFS).
    After some digging around, the real error (behind the unexpected error with correlation ID) is "Microsoft.Reporting.WebForms.SessionDisabledException: Session state has been disabled for ASP.NET.  The Report Viewer control requires that session
    state be enabled in local mode."
    As a potential solution to this error I found this: 
    http://geekswithblogs.net/naijacoder/archive/2010/06/14/140408.aspx
    among others referencing the same commandlet.
    To my actual questions.
    1.  This commandlet creates a state service database.  Where?  Locally or on the DB server SharePoint is using?  In my case this is a separate machine.
    2.  I noticed on my server running SharePoint 2010 I have an ASP.Net State Service running and a state DB on my DB server.  Do I need to create a new one?  I restarted the service without errors, this did not correct my error.
    3. This commandlet alters the web.config files for the farm. In what way? Is there an easy revert which will change them back should this not solve my problem or make my problem worse somehow?
    I tried to find some deeper documentation on this but couldn't, so maybe a link to that is all I need. 
    Thanks Everyone,  Stu

    The database is created on the default SQL Server/Instance in use by SharePoint, unless you use the -DatabaseServer parameter to specify the server/instance.
    Do you have a State Service Service Application in Manage Service Applications in Central Admin?
    I believe it adds session state to enabled. Just disable or remove the State Service Service App to revert.
    Trevor Seward
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • Need some help regarding PO numbering

    This is for a Real Estate Company. Here each Project is Inventory Org.
    Presently we are following automatic numbering for purchase orders.
    However here client is insisting for Purchase order numbering to be automatic- alpha numeric and again the crucial requirement is that it should be inventory organization(project) wise i.e. different alphanumeric numbering sequence for each inventory org.
    Eg: If we have two inventory orgs (say A, B) , then Purchase orders for A should follow numbering like A-001,A-002.......
    Similarly for inventory org B, it should be B-001,B-002....
    Can anyone suggest is there any way to achieve this..
    Ram

    So I have seen this done, but none of it was standard. You would leave your normal numbering system in place, but then have a SQL guy create a custom script to upload PO directly into your system. Typically with these loaders you can script in the use of any PO numbering scheme that you designate. If you migrated Oracle from a previous system you may have some of these tools especially if you had your historical data uploaded prior to going live. We used to call these PO Loaders, but the function operates in a similar fashion to a requisition loader which takes a flat file and uploads it directly into the system.

  • Need some help regarding the backgrounds

    I am new to adobe dreamweaver & I would like to ask some sort of a stupid question
    When I save a website over the net, the folder always contains the background & the other images as small tiny images while when using Dreamweaver if I want to use a background image, I just load it.
    My question is do they actually load the background image as small parts or the browser devides the image to smaller parts when saving the page?
    Thanks for ur help & I hope some 1 gonna answer me soon enough.

    If you (or someone else) use a repeating background image (128X128 for instance) the browser, per instructions from the HTML or CSS, will "tile" the same image over and over to create the background. This doesn't display multiple copies of the image, but references it over and over alongside and below itself until the page reaches it's end.
    One exception to this is when there is a single large image (1024X768 for instance) used as a background, which usually doesn't repeat. In that case, if you were to download it, it would download as the one large image.
    Another exception is if the image is cut into pieces and put back together in divs inside the page. Often this is done to create the illusion of an image in a layer above the page, unrestricted by the square dimensions of HTML layout.

Maybe you are looking for

  • SSL in Soap receiver communication channel

    Hi, I have a webservices that works fine in Soap UI. The webservice provider uses the SSL, but works like a web browser, doesn´t need to install a certificate before access the webservice. But when i try to use SAP PI using the soap receiver communic

  • Hyperlink in F1 help

    Hello Experts, My requirement is to have a hyperlink in the F1 help which will open an external website. I am adding this F1 help to a data element. For example in the F1 help of BUKRS there is a link to 'company code'. I want such a link to open ano

  • After last maverick update macbook pro can't be shut down anymore - only by using the power button

    Hello! I hope that someone can help: after the last Maverick update I can't shut down the computer anymore - or restart. I need to use the power button. Furthermore several apps don't close when they are supposed to be closed - I always have to check

  • Apple TV and 2 Macs

    I have my Apple TV synced with my MacBook. The MacBook has the music and TV shows that I want on Apple TV. However, my other iMac has all my iPhoto pictures. Is it possible to sync with iMac to get photos on Apple TV and then resync with my MacBook w

  • CF7 setting for BOM change transfer.

    Hello All, Can some one explain the importance of having CF7 parametre set for the users. And also, when the integration models for PPM are generated and activated, is it necessary to schedule a job with user having CF7 setting for both generation an