Updating a datasource

Hello,
we have some trouble with updating an existing DataSource. The DataSource is based on an extraction structure which we expanded with an append structure.
We activated the append structure and did the same with the extraction structure. But still the new field doesn't show up in the DataSource (transaction <b>RSA6</b>).
I guess we’ve forgotten something between the activating and the view in <b>RSA6</b>.
Is there anybody who’s able to help us?
Greetings from Germany
Sebastian.

Hi Sebastian Hausen 
Be fore checking it in the Rsa6 ..
Did you activate it under a transport request..
Make sure of development client and then save it under a transport request..
It should show once you hav activated after apending it in to the structure.
By the way did u checked it in the source sytem end or in the BW system.
Make sure this transactions and everthing is appeared at source system..
if not just check the system parameters @ SPAM transaction..
Hope itz clear a little atleast...! if not please elobrate the issue with the detailed
information..
Greetings from <u><b>INDIA</b></u>
Thanks & Regards
R M K
***Assigning pointz is the only way of saying thanx in SDN ***
**Winners dont do different things,they do things differently**
> The filed is even not visible in the RSO2. The view
> on the DataSource is the same as in the RSA6. In both
> views the DataSource hasn't got the field. It's like
> the field is marked as "hidden" in the
> extract-structure
>
> Maybe it has something to do with the fact that we
> use a standard-DataSource (0customer)?

Similar Messages

  • Update two DataSources one Query?

    I am building a dynamic site using Dreamweaver CS5 and Coldfusion 9.
    Ok after messing with this particular page for almost five hours now and still have not figured this out I thought I would ask someone (anyone that reads this) who has a better clue than me at this.
    I made a registration page which gets data put into two separate databases "QBs" table-Customer gets contact info "Access" table-Logininfo gets some contact info and username + password +access level. Now I wanted to create a contact update page to allow the user to change any of the information he/she typed in on the registration page. I wanted both sources to be updated in one submit button because the two sources reference each other on different pages so they both need to be updated with the same info. For instance both sources-tables have a column FullName and it gets used as a session variable throughout the site so if the customer changes either first or last name it needs to be updated in both sources at one instant for the site to maintain operation.
    The error I keep getting is this:
    Error  Executing Database Query.
    [Macromedia][SequeLink JDBC  Driver][ODBC Socket][QODBC] Expected lexical element not found:
    The  error occurred in C:\inetpub\wwwroot\CFIDE\testsite\Pages\User  Pages\user_contact_info.cfm: line 97
    95 : Email=<cfqueryparam value="#Email#" cfsqltype="cf_sql_carchar" maxlength="75"/>
    96 : )
    97 : WHERE ListID=<cfoutput>'#Session.ListID#'</cfoutput>
    98 :   </cfquery>
    99 :   <cfquery datasource="Access">
    VENDORERRORCODE
      11015
    SQLSTATE
      42000
    SQL
       UPDATE Customer SET  VALUES ( Salutation= (param 1) , FirstName= (param 2) , LastName= (param 3) ,  Name= (param 4) , BillAdressAddr1= (param 5) , BillAddressAddr2= (param 6) ,  BillAddressCity= (param 7) , BillAddressState= (param 8) ,  BillAddressPostalCode= (param 9) , Contact= (param 10) , Phone= (param 11) ,  AltPhone= (param 12) , Email= (param 13) ) WHERE ListID='80000025-1246408045'
    DATASOURCE
      QBs
    Now this is my code for the Query and I will also list my table because maybe there is something I am missing from that. I have a feeling what I am trying to do is not possible??? thus the lack of success in fiddling with the code for hours. Any help is very much appreciated!!!!!!
    HEAD:
    <cflock scope="Session" type="ReadOnly" timeout="30" throwontimeout="no">
      <cfset MM_Username=Iif(IsDefined("Session.MM_Username"),"Session.MM_Username",DE(""))>
      <cfset MM_UserAuthorization=Iif(IsDefined("Session.MM_UserAuthorization"),"Session.MM_UserAuthor ization",DE(""))>
    </cflock>
    <cfif MM_Username EQ "" OR MM_UserAuthorization EQ "" OR ListFind("User,Admin",MM_UserAuthorization) EQ 0>
      <cfset MM_referer=CGI.SCRIPT_NAME>
      <cfif CGI.QUERY_STRING NEQ "">
        <cfset MM_referer=MM_referer & "?" & CGI.QUERY_STRING>
      </cfif>
      <cfset MM_failureURL="unauthorized.cfm?accessdenied=" & URLEncodedFormat(MM_referer)>
      <cflocation url="#MM_failureURL#" addtoken="no">
    </cfif>
    <cfquery name="Update_info" datasource="Access">
    SELECT ID, FullName, FirstName, LastName, Username, Password
    FROM Logininfo
    WHERE ID=<cfoutput>#Session.ID#</cfoutput>
    </cfquery>
    <cfquery name="update_contactinfo" datasource="QBs">
    SELECT ListID, Name, FullName, CompanyName, Salutation, FirstName, LastName, BillAddressAddr1, BillAddressAddr2, BillAddressCity, BillAddressState, BillAddressPostalCode, Phone, AltPhone, Email
    FROM Customer
    WHERE ListID=<cfoutput>'#Session.ListID#'</cfoutput>
    </cfquery>
    <cfquery name="listvariables" Datasource="Access">
    SELECT Salutation FROM ListVariables
    </cfquery>
    <cfset CurrentPage=GetFileFromPath(GetBaseTemplatePath())>
    <cfif IsDefined("FORM.MM_UpdateRecord") AND FORM.MM_UpdateRecord EQ "UpdateContactInformation">
    <cfquery datasource="QBs">  
       UPDATE Customer SET
      <cfif IsDefined('form.salutation') and len(form.salutation) NEQ 0>
      <cfset #Salutation#=form.salutation/>
      </cfif>
      <cfif IsDefined('form.firstname') and len(form.firstname) NEQ 0>
    <cfset #FirstName#=form.firstname/>
      </cfif>
      <cfif IsDefined('form.lastname') and len(form.lastname) NEQ 0>
        <cfset #LastName#=form.lastname/>
        </cfif>
      <cfset Name=#FirstName#&' '&#LastName#/>
      <cfset BillAddressAddr1=#Salutation#&' '&#FirstName#&' '&#LastName#/>
        <cfif IsDefined('form.streetaddress') and len(form.streetaddress) NEQ 0>
        <cfset #BillAddressAddr2#=form.streetaddress/>
      </cfif>
        <cfif IsDefined('form.city') and len(form.city) NEQ 0>
        <cfset #BillAddressCity#=form.city/>
        </cfif>
        <cfif IsDefined('form.state') and len(form.state) NEQ 0>
        <cfset #BillAddressState#=form.state/>
        </cfif>
      <cfif IsDefined('form.zipcode') and len(form.zipcode) NEQ 0>
        <cfset #BillAddressPostalCode#=form.zipcode/>
        </cfif>
    <cfset Contact=#FirstName#&' '&#LastName#/>
      <cfif IsDefined('form.dayphone') and len(form.dayphone) NEQ 0>
        <cfset #Phone#=form.dayphone/>
      </cfif>
      <cfif IsDefined('form.eveningphone') and len(form.eveningphone) NEQ "">
        <cfset #AltPhone#=form.eveningphone/>
      </cfif>
      <cfif IsDefined('form.email') and len(form.email) NEQ "">
        <cfset #Email#=form.email/>
      </cfif>
    VALUES (
    Salutation=<cfqueryparam value="#Salutation#" cfsqltype="cf_sql_varchar" maxlength="15"/>,
    FirstName=<cfqueryparam value="#FirstName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    LastName=<cfqueryparam value="#LastName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    Name=<cfqueryparam value="#Name#" cfsqltype="cf_sql_varchar" maxlength="50"/>,
    BillAdressAddr1=<cfqueryparam value="#BillAddressAddr1#" cfsqltype="cf_sql_varchar" maxlength="80"/>,
    BillAddressAddr2=<cfqueryparam value="#BillAddressAddr2#" cfsqltype="cf_sql_varchar" maxlength="50"/>,
    BillAddressCity=<cfqueryparam value="#BillAddressCity#" cfsqltype="cf_sql_varchar" maxlength="50"/>,
    BillAddressState=<cfqueryparam value="#BillAddressState#" cfsqltype="cf_sql_varchar" maxlength="25"/>,
    BillAddressPostalCode=<cfqueryparam value="#BillAddressPostalCode#" cfsqltype="cf_sql_varchar" maxlength="13"/>,
    Contact=<cfqueryparam value="#Contact#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    Phone=<cfqueryparam value="#Phone#" cfsqltype="cf_sql_varchar" maxlength="15"/>,
    AltPhone=<cfqueryparam value="#AltPhone#" cfsqltype="cf_sql_varchar" maxlength="15"/>,
    Email=<cfqueryparam value="#Email#" cfsqltype="cf_sql_carchar" maxlength="75"/>
    WHERE ListID=<cfoutput>'#Session.ListID#'</cfoutput>
      </cfquery>
      <cfquery datasource="Access">
    UPDATE Logininfo SET
    <cfif IsDefined('form.firstname') and len(form.firstname) NEQ 0>
    <cfset #FirstName#=form.firstname/>
    </cfif>
    <cfif IsDefined('form.lastname') and len(form.lastname) NEQ 0>
    <cfset #LastName#=form.lastname/>
    </cfif>
    <cfset FullName=#form.firstname#&' '&#form.lastname#/>
    <cfif IsDefined('form.username') and len(form.username) NEQ 0>
    <cfset #Username#=form.username/>
    </cfif>
    <cfif IsDefined('form.password') and len(form.password) NEQ 0>
    <cfset #Password#=form.password/>
    </cfif>
    VALUES (
    FullName=<cfqueryparam value="#FullName#" cfsqltype="cf_sql_varchar" maxlength="80"/>,
    FirstName=<cfqueryparam value="#FirstName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    LastName=<cfqueryparam value="#LastName#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    UserName<cfqueryparam value="#Username#" cfsqltype="cf_sql_varchar" maxlength="41"/>,
    Password=<cfqueryparam value="#Password#" cfsqltype="cf_sql_varchar" maxlength="41"/>
    WHERE ID=<cfoutput>'#Session.ID#'</cfoutput>
    </cfquery>
    <cflocation url="updated_contactinfo.cfm">
    </cfif>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html><!-- InstanceBegin template="/Templates/customer_template.dwt.cfm" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <!-- InstanceBeginEditable name="title" --><title>Update Contact Information</title><!-- InstanceEndEditable -->
    <link href="../../styles/Main.css" rel="stylesheet" type="text/css">
    <script src="../../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="../../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <!-- InstanceBeginEditable name="head" -->
    <script src="../../SpryAssets/SpryValidationConfirm.js" type="text/javascript"></script><script src="../../SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
    <link href="../../SpryAssets/SpryValidationConfirm.css" rel="stylesheet" type="text/css" />
    <link href="../../SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css"><!-- InstanceEndEditable --></head>
    BODY:
    <body>
    <div id="Container">
      <div id="header"><img src="../../Images/Website-Image.gif" width="393" height="217" alt="TS Landscaping Logo and Name of company"></div>
      <div id="menu_bar1">
        <ul id="MenuBar1" class="MenuBarHorizontal">
          <li><a class="MenuBarItemSubmenu" href="../../index.cfm">Home</a>
            <ul>
              <li><a href="#">Item 1.1</a></li>
              <li><a href="#">Item 1.2</a></li>
              <li><a href="#">Item 1.3</a></li>
            </ul>
          </li>
          <li><a href="#">About Us</a></li>
          <li><a href="#">Services</a></li>
          <li><a class="MenuBarItemSubmenu" href="#">User Account</a>
            <ul>
              <li><a href="../../login.cfm">Login</a></li>
              <li><a href="../../registration_page_contact.cfm">Register</a></li>
              <li><a href="../../members_page.cfm">Customer Page</a></li>
            </ul>
          </li>
          <li><a href="#">Contact Us</a></li>
        </ul>
      </div>
      <div id="Main">
        <div id="side_bar"><!-- InstanceBeginEditable name="sidebar" -->Content for  id "side_bar" Goes Here<!-- InstanceEndEditable --></div>
        <div id="main_body">
    <p align="left"><a href="../../invoice_page.cfm">Customer Invoices</a> | <a href="../../service_request_page.cfm">Request Services</a> | <a href="user_contact_info.cfm">Change Contact Info</a></p>
          <hr>
    <!-- InstanceBeginEditable name="mainbody" -->
    <h1><cfoutput>#Session.FullName#</cfoutput> Contact Information</h1>
    <table width="auto" border="1">
      <tr>
        <td><div align="center">Update Your Contact Information</div></td>
        </tr>
      <tr>
        <td> 
          <form method="post" name="UpdateContactInformation" action="<cfoutput>#CurrentPage#</cfoutput>">
            <table align="center" >
              <tr valign="baseline">
                <td nowrap align="right"><div align="right"><label for="salutation">Salutation</label></div></td>
                <td><select name="salutation" id="salutation" accesskey="n" tabindex="15">
                  <cfoutput query="listvariables">
                    <option value="#listvariables.Salutation#" <cfif (isDefined("Session.Salutation") AND listvariables.Salutation EQ Session.Salutation)>selected="selected"</cfif>>#listvariables.Salutation#</option>
                  </cfoutput>
                </select>
                  <tr valign="baseline">
                    <td nowrap align="right"><div align="right">FirstName:</div></td>
                    <td><input type="text" name="FirstName" id="firstname" value="<cfoutput>#update_contactinfo.FirstName#</cfoutput>"  size="32"></td>
                    </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">LastName:</div></td>
                <td><input type="text" name="LastName" id="lastname" size="32" value="<cfoutput>#update_contactinfo.LastName#</cfoutput>"></td>
                </tr>
              <tr valign="baseline" >
                <td nowrap align="right"><div align="right">Street Address:</div></td>
                <td><input type="text" name="streetaddress" id="streetaddress"  size="32" value="<cfoutput>#update_contactinfo.BillAddressAddr2#</cfoutput>"></td>
                </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">City:</div></td>
                <td><input type="text" name="city" id="city"  size="32"value="<cfoutput>#update_contactinfo.BillAddressCity#</cfoutput>"></td>
                </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">State:</div></td>
                <td><input type="text" name="state" id="state" size="32" value="<cfoutput>#update_contactinfo.BillAddressState#</cfoutput>"></td>
                </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">Zip Code:</div></td>
                <td><input type="text" name="zipcode" id="zipcode" size="32"value="<cfoutput>#update_contactinfo.BillAddressPostalCode#</cfoutput>"></td>
                </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">Day Phone:</div></td>
                <td><input type="text" name="dayphone" id="dayphone" size="32" value="<cfoutput>#update_contactinfo.Phone#</cfoutput>"></td>
                </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">Evening Phone:</div></td>
                <td><input type="text" name="eveningphone" id="eveningphone"  size="32" value="<cfoutput>#update_contactinfo.AltPhone#</cfoutput>"></td>
                </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">Email:</div></td>
                <td><input type="text" name="email" id="email" size="32" value="<cfoutput>#update_contactinfo.Email#</cfoutput>"></td>
                </tr>
              <td nowrap align="right"><div align="right">Username:</div></td>
                <td><input type="text" name="username" id="username" size="32" value="<cfoutput>#update_info.Username#</cfoutput>"></td>
                </tr>
              <tr valign="baseline">
                <td nowrap align="right"><div align="right">Password:</div></td>
                <td><input type="password" name="password" id="password" accesskey="n" tabindex="45" size="32" value="<cfoutput>#update_info.Password#</cfoutput>"></td>
                </tr>
              <td nowrap align="right"><div align="right"><label for="confirmpassword">Confirm Password:</label></div></td>
                <td><span id="spryconfirm1">
                  <input type="password" name="confirmpassword" id="confirmpassword" accesskey="n" tabindex="50" size="32">
                  <span class="confirmRequiredMsg">A value is required.</span><span class="confirmInvalidMsg">The values don't match.</span></span></td>
                </tr>
              <tr valign="baseline">
                <td colspan="2" align="right" nowrap><div align="center">
                  <input type="submit" value="Update Contact Info">
                  </div></td>
                </tr>
              </table>
            <input type="hidden" name="MM_UpdateRecord" value="UpdateContactInformation">
            </form>
          <p> </p></td>
        </tr>
    </table>
    <p> </p>
    <script type="text/javascript">
    var spryconfirm1 = new Spry.Widget.ValidationConfirm("spryconfirm1","password");
    </script>
        <!-- InstanceEndEditable -->
        </div>
      </div>
      <div id="footer">
        <p>Home | About Us | Site Map </p>
        <p>&copy; TS Landscaping LLC 2010</p>
      </div>
    </div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
        </script>
    </body>
    <!-- InstanceEnd --></html>

    Meensi just wanted to update you so you didn't put to much time into my problem I have discovered this line of code to work. Obviously it does not include all that I want to update but tomorrow I will add in each line and test as I go to see where I get the error. So far now I think I am at a point where I can figure this out. I am sure there is some value in the database that can't be updated although I looked at the charts for the databases and they all said UPDATABLE I am thinking maybe a typo but I'll find out tomorrow. Thanks again for you help!
    <cflock scope="Session" type="ReadOnly" timeout="30" throwontimeout="no">
      <cfset MM_Username=Iif(IsDefined("Session.MM_Username"),"Session.MM_Username",DE(""))>
      <cfset MM_UserAuthorization=Iif(IsDefined("Session.MM_UserAuthorization"),"Session.MM_UserAuthor ization",DE(""))>
    </cflock>
    <cfif MM_Username EQ "" OR MM_UserAuthorization EQ "" OR ListFind("User,Admin",MM_UserAuthorization) EQ 0>
      <cfset MM_referer=CGI.SCRIPT_NAME>
      <cfif CGI.QUERY_STRING NEQ "">
        <cfset MM_referer=MM_referer & "?" & CGI.QUERY_STRING>
      </cfif>
      <cfset MM_failureURL="unauthorized.cfm?accessdenied=" & URLEncodedFormat(MM_referer)>
      <cflocation url="#MM_failureURL#" addtoken="no">
    </cfif>
    <cfquery name="Update_info" datasource="Access">
    SELECT ID, FullName, FirstName, LastName, Username, Password
    FROM Logininfo
    WHERE ID=<cfoutput>#Session.ID#</cfoutput>
    </cfquery>
    <cfquery name="update_contactinfo" datasource="QBs">
    SELECT ListID, Name, FullName, CompanyName, Salutation, FirstName, LastName, BillAddressAddr1, BillAddressAddr2, BillAddressCity, BillAddressState, BillAddressPostalCode, Phone, AltPhone, Email
    FROM Customer
    WHERE ListID=<cfoutput>'#Session.ListID#'</cfoutput>
    </cfquery>
    <cfquery name="listvariables" Datasource="Access">
    SELECT Salutation FROM ListVariables
    </cfquery>
    <cfset CurrentPage=GetFileFromPath(GetBaseTemplatePath())>
    <cfif IsDefined("FORM.MM_UpdateRecord") AND FORM.MM_UpdateRecord EQ "UpdateContactInformation">
    <cfset #FistName#=Form.FirstName/>
    <cfquery datasource="QBs">
    UPDATE Customer Set
    FirstName=<cfqueryparam value='#FirstName#' cfsqltype="cf_sql_varchar" maxlength="41"/>
    WHERE ListID=<cfoutput>'#Session.ListID#'</cfoutput>
    </cfquery>
    <cfset #FirstName#=Form.FirstName/>
    <cfquery datasource="Access">
    UPDATE Logininfo Set
    FirstName=<cfqueryparam value='#FirstName#' cfsqltype="cf_sql_varchar" maxlength="41"/>
    WHERE ID=<cfoutput>#Session.ID#</cfoutput>
    </cfquery>
    <cflocation url="updated_contactinfo.cfm">
    </cfif>

  • Purchase Order History 0SRPO_D1 no update from Datasource 2LIS_02_ITM

    Version
       SapNetwear 2004s
       SAP_BW Patch 14
       BI_CONT Patch 5
    From Business Content I activated ODS 0SRPO_D1-Purchase Order History and all components as datasource 2LIS_02_ITM. Version is 3x with Transfer Rule, InfoSource and update rule.
    Datasource is with Delta Process type ABR.
    Data are correctly extracted from R/3 (Version ECC6.0) to the PSA. But 0 data are updated in the ODS.
    I have the same the problem with ODS 0SRCT_DS1-Contract Management.
    Is someone has any idea?

    Problem solved.
    It was necesary to determine the Industry Sector before sending items from MM.
    Transaction SBIW / Settings for Application-Specific DataSources (PI) / Logistics / Settings: Purchasing / Determine Industry Sector
    By default, the option "None" is flagged.

  • How to update the datasource 0CRM_LEAD_H using the BWA1 t-code from CRM

    Hi all,
    I would like to know how I can update the extractor 0CRM_LEAD_H from BWA1 t-code in CRM.
    If I see the datasource thru RSA5 the extract structure doesn't have the STATUS_LEAD field. but thru BWA1 I see the field in the extract structure, and the field has an "A" in the Selection column and I can't change it, the values could be:
    Field Attribute     Short Description
    A          Field in OLTP and BW Hidden by SAP
    M          Selection Required, Visible
              No Selection Possible, Visibility Set
    P          Selection Adjustable, Visibility Set
    X          Selection Adjustable, Visibility Set
    1          Pure Selection Field, Selection Set
    2          Pure Selection Field, Selection Set
    3          Selection Adjustable, Visibility Adjustable
    4          No Selection Possible, Visibility Adjustable
    The field is not In the Mapping tab.
    Do you know how I can include the field in the extraction?
    Regards, Federico

    In CRM badis are only used to do enhancement either for EEWB or enhancements (with filter or non filter).
    Still the standard exits (EXIT_SAPLRSAP_001,..004) can be used for populate the appened extract structure.
    How ever you can apply some tricks to make a dynamic call to function module.. or class methods (as the subroutine call are not advisable in OOPs concept)..
    Thanks,
    -J

  • How to avoide duplicacy when doing Full Update from Datasource to Infocube

    Hi,
    I am loading the data from 0HR_PA_OS_1 datasource to infocube 0PAOS_C01 infocube.Implementing the standard Business content.
    The Plan is to load the data Monthly Once.
    If by mistake, if the data is loaded more than once in a month the duplicates will happen in the infocube.I need to avoid this situation.
    I have 2 ways to avoid.But am looking for some effective ways in which it handles the upload effectively.
    1)Giving the Option of Overlapping request by means of process chain.
    2) Give the selections for the calmonth at the infopackage selections tab.
    The drawback of the 1st method is that its just like deleting the number of records existing and loading a new request.
    Say for eg in the month of June i have loaded the data which is around 1000 records.
    If am going to load the data for the month of July which is around 10,000 records, then with the 1st methos what i have mentioned i need to delate the previous request containing 1000 records and in effect doing a full update which includes 10,000 records of july + 1000 records of june.
    I don't want to do this since as the months go by the number of records gets increased in a single request.
    regarding the 2nd method am not quite sure how much it will be effective.
    Please let me know any possible ways other than this.
    Thanks,
    Rajesh Janardanan

    Hi ravi,
    The problem with the 1st method is that as the day goes by the number of records in a single request increases which in turn will take quite a long time to get load and sometimes fails.
    Is there any other way to handle the situation.
    Thanks for the reponse,
    Rajesh Janardanan

  • Weblogic 12c console doesn't update with datasources defined

    Hi Guys,
    I've observed this behaviour.. which seems to me as a bug somewhere.. Here is what happens..
    1. I define a datasource
    2. Then I try to create JDBCStore for JMS messages.. I don't see my defined datasource in step-1 in the dropdown list..
    3. Worst part is, even if I define a new datasource from the create JDBCStore screen, I don't get to see it back in the dropdown list..
    Could someone please try it?
    Thanks,
    Prasad

    From the WLS documentation:
    You cannot configure a JDBC store to use a JDBC data source that is configured to support global (XA) transactions. The JDBC store must use a JDBC data source that uses a non-XA JDBC driver. In addition, you cannot enable Logging Last Resource or Emulate Two-Phase Commit in the data source. This limitation does not remove the XA capabilities of layered subsystems that use JDBC stores. For example, WebLogic JMS is fully XA-capable regardless of whether it uses a file store or any JDBC store.
    Because the JDBC store implements the XAResource interface, it acts as it’s own resource manager and handles the transactions above the JDBC driver level. That is, the store itself implements the XAResource and handles the transactions without depending on the database (even when the messages are stored in the database).
    This means that whenever you are using a JDBC store and a database (even if it is the same database where the JMS messages are stored), then it is two-phase commit transaction.
    So only non-XA datasources will show up in the console list for JMS JDBC stores and you cannot use that same datasource for an EJB global transaction.
    This has always been the case.

  • Update jta-datasource property with deployment plan

    hi,
    weblogic server needs the jta data source as a vendor parameter into the persistence xml? right?
    looks like:
    <properties>
    <property name="eclipselink.target-server" value="WebLogic_10" />
    <property name="javax.persistence.jtaDataSource" value="mysql" />
    </properties>
    so now i want to change the value (in my case mysql) to another with a deployment plan... but how does this work? i cannot change the attributes of the tag with my deployment plan, can i?
    my Deployment plan looks like:
    <variable-definition>
    <variable>
    <name>DataSource</name>
    <value>mysqltest</value>
    </variable>
    </variable-definition>
    <module-descriptor external="false">
    <root-element>persistence</root-element>
    <uri>META-INF/persistence.xml</uri>
    <variable-assignment>
    <name>JDBCDataSource</name>
    <xpath>/persistence/persistence-unit[name="serverpool"]/properties/property[name="javax.persistence.jtaDataSource"]</xpath>
    </variable-assignment>
    </module-descriptor>
    but after this my application dont work because the persistence xml isnt correct.
    so how can i change the attribte value of the tag property of my persistence.xm to change the jta-datasource of my application?
    thank you

    Firstly, I would validate with support that deployment plans cover the persistence.xml deployment descriptor. Someone else has encountered issues with deployment plans before and I believe they are only supported on certain types of deployment descriptor files. See this previous post:
    Problem with hibernate, JPA, and deployment plan
    Secondly even if it is supported, your XPATH is incorrect for the variable assignment. I'm not exactly sure what it would be since you're replacing an attribute value as opposed to the contents of an element itself, but it would look more like this:
    /persistence/persistence-unit/properties/property[@name='javax.persistence.jtaDataSource']@value
    But I'm sure that's wrong. I'm not sure I've seen an example that replaces an attribute value, the ones I've seen are usually a node value.

  • Updating Datasource in CR Server

    Hi, my organization delivers reports in two ways.  We use CR Server and our ERP has a built in report viewer where users can run reports on demand.  These two systems use two different connections types to the same database.
    We are upgrading to a new version of our ERP and with that comes a new database.  My question is twofold. 
    In terms of the reports on CR Server is there a way to update the datasource on all of the reports without having to update them individually?  I have tried using the Schedule Manager but my test report fails to run after changing the datasource. 
    Second, Is it possible to update the datasource of reports sitting in a folder (not in CR Server) in bulk without having to open each one up and updating it manually?

    Hi,
    Try with below steps.
    !) Go to the Crystal Reports Job Server >> Destination >> Host.
    2) Use the IP address instead of SMTP server name and click on Save & Close button.
    3) Repeat the same steps (1-2) for Destination Job Server.
    4) Restart the Crystal Reports Job Server and Destination Job Server.
    Thanks,
    Amit'

  • Update Table from Datasource

    Hi
    I don't know how to update from datasource object directly.
    Help me if you have a solution or example code.
    Sorry for my bad english.

    Hi there,
    Here you'll have some sample code, hope it helps.
    As you can see I first make a reference to my datasource and my matrix. (SAPForm is the active form)
    Then I flush all data from my matrix to the datasource and loop through the datasource and get each record.
    <b>Code for getting values from the matrix (C#):</b>
    // Get the datasource
    DBDataSource ds = (DBDataSource)SAPForm.DataSources.DBDataSources.Item("@TABLENAME");
    // Get the matrix object
    Matrix oMatrix = (Matrix)SAPForm.Items.Item("LocMatrix").Specific;
    oMatrix.FlushToDataSource();
    // Loop through each row, so we can update the values...
    for(int i = 0; i < (ds.Size - 1); i++)
      // Get the codeID
      string sCode = ds.GetValue("Code", i).Trim();
      // Get the LocationName
      string sLocName = ds.GetValue("U_SomeField",i);
      // Do something with the values
      DoSomeUpdates(sCode, sLocName);

  • Update DataSource not Working for Views

    i am developing one lightswitch HTML application using Visual studio ultimate 2013, i have inherited the Datasource from the SQL Server and using the same, but after i had added the tables and views in my DB through SQL server 2012. when i update the datasource
    in my lightswitch only tables are getting added and Views are not even getting displayed. What i need to do to select my Views. Even i tried to load my External DB in fresh projects, only i can able to load my tables alone. Any suggestion or turnaround to
    overcome this issue ?
    Thanks

    Got the Solution, i need to include Primary Key on the select query , so that, the particular view will have the PK in its column. Once i included the PK, the View is getting loaded while i click Update data source.
    thanks
    Glad that you have solved this issue, and thanks for sharing your solution. :)
    Best regards,
    Angie
    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.

  • Creation of a web service datasource in APO BW

    I am using APO V5, which includes BW V7.
    I need to create a 'web service' datasource in APO BW, so that I can receive XML data from XI to update the datasource.
    How can I create the 'web service' datasource?... should the 'logical system' be the connected XI system?
    Thanks,
    Bob Austin

    You will require to create source System for Web Service Folder - Where you will require to maintain Logical System Name, Source System Name,  Type and Release

  • Work Around on Datasource 0GLACCEXT

    Hi Gurus,
    I'm currently implementing a BW project for FI Balance Sheet. But I encountered a problem regarding the Datasource. Since the R3 we are connecting is version 4.6b and the patches are not updated, the datasource 0GLACCEXT is missing. Is there any work around that i might be able to implement w/o applying any plugins or patches. Thank you.
    - Kit

    Hi,
    Do you have the below document for 0GLACCEXT?
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2f6d9790-0201-0010-dcbc-e099c7c049a2?quicklink=index&overridelayout=true
    It might give some idea .
    Thanks.

  • Modify DataSource to include new fields from view

    Hello all, I have been tasked to bring new fields into a DataSource from a view. The new required fields are in the table and view below the DataSource. How do I update the DataSource to recognize the new fields in the view?
    I am pretty sure I just need to have the DataSource extract structure ZOXDEV0038 regenerated and then unhide the fields in the DataSource, but I can't figure out how to get it to regenerate.
    Thanks in advance,
    Justin

    Hi,
    Example of a view
    Hope you have this joining condition in your view.
    Tbales
    VBAP
    VBAk
    Join Conditions
    VBAP MANDT = VBAK MANDT
    VBAP VBELN = VBAK VBELN
    and <b>InView Flds Tab</b>
    all field whihc you want see in datasourcelike
    MANDT
    VBELN
    <b>[Have to added this new fields in this tab]</b>
    and foe your error
    Re: Generic Extraction : Invalid Extract structure
    Hope i m clr.
    Regards,
    San!
    Message was edited by: San!

  • Update PowerView report EntityDataSource information by PowerShell

    Hi,
    Is there a way to update the entitydatasource connections for PowerView reports through PowerShell? I have over 25 reports I need to update the datasource for and I would prefer not to do it manually.
    Thanks,
    Georgi
    Georgi

    Hi Georgi,
    According to your description, my understanding is that you want to update the data source of PowerView reports.
    As far as I know, there is no  solution in PowerShell for updating PowerView date source due to there is no programmatic hook into Power View.
    So I recommend you modify the Data Source of the Power View manually. You can refer to the blog:
    http://blogs.lessthandot.com/index.php/webdev/business-intelligence/modify-power-view-data-source/
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How to switch Datasource from OLE to ODBC for existing report

    I have a report that must be deployed to an app that requires all datasource connections to be ODBC. I do not have access to the source for this app since it is from/developed by a 3rd party.
    My report has 3 commands (Command, Command_1, Command_2) against an OLE datasource. I cannot figure out how to switch these over from OLE to my ODBC datasource and still maintain all the existing Crystal internal references to fields for the content, formulas, etc.
    Thank you in advance for your assistance!

    Hi Marvin
    There is a SAP note that helps us to update the Datasource location. The Note # is 1215594.
    Link to the Note is as given below:
    https://bcp.wdf.sap.corp/sap(bD1lbiZjPTAwMQ==)/bc/bsp/sno/ui_entry/entry.htm?param=690076005F006D006F00640065003D003000300031002600690076005F007300610070006E006F007400650073005F006E0075006D006200650072003D0030003000300031003200310035003500390034002600
    Hope this helps.
    Thanks

Maybe you are looking for

  • How to use SOAP in ColdFusion

    Hi All, The code set am using as follows index.cfm <cfsavecontent variable="soap"> <?xml version="1.0" encoding="UTF-8"?> <soapenv:Envelope         xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"         xmlns:xsd="http://www.w3.org/2001/XM

  • Power button not working since 8.1

    I just updated my phone to the new iOS 8.1 and now my power button is not working...does anyone know a solution or a fix other than sending it into apple to get it fixed?

  • Java font smoothing

    I am running JDK 1.4 on a Windows XP machine, and I have cleartype activated. Most fonts on my system look good and smooth, but no text in Java gets antialiased. Does anyone have an idea?

  • Overlapping two JPanels on a JLayeredPane

    I am having some problems overlapping two JPanels on a JLayeredPane for some reason only one of them shows when I compile the program! Any help would be greatly appreciated The code is the following: import java.lang.*; import javax.swing.*; import j

  • Problem printing with Epson 3800 and Photoshop CS5

    I came across a problem trying to print with my Epson 3800 in Photoshop CS5.  I recently upgraded to Photoshop CS 5 (and Lightroom 3).  I tried to print using my Epson 3800 with CS5 but could not adjust Print Settings, Color Mamagement, Paper Configu