New Utilities Section added to HTML DB Studio

All,
We have added a new section called Utilities to the HTML DB Studio (http://htmldb.oracle.com/studio).
This section is meant for any code snippets and utilities which you may have developed for use with HTML DB. We have pre-seeded the section with a couple of our own.
Please check it out and thanks for your support!
Thanks,
- Scott -

Chris,
Thanks for pointing that out - URL was correct, the way that the Forum displayed it was not (it was including the ")" as part of the link.
Try this one:
http://htmldb.oracle.com/studio

Similar Messages

  • New Performance Section Added to the UWL/UWL Sizing Guide

    Hi Everyone,
    Happy New Year!  I just wanted to inform you of some new documentation.  On the main UWL WIKI with the help of our development support colleagues, have added a Performance section in this WIKI.  It's worth taking a look.
    [Universal Worklist Wiki|http://wiki.sdn.sap.com/wiki/x/ehU]
    Also, our colleagues in development support put together a handy sizing guide for UWL. You can find the document under this path: [Sizing documentation|www.service.sap.com/sizing]  --> sizing guidelines --> Solutions and Platforms New Structure --> SAP NetWeaver  --> scroll down to find Universal Worklist.  Here you will find the new sizing guideline for working with the Universal Worklist.
    Beth Maben
    EP - Senior Support Consultant II
    SAP Active Global Support
    Global Support Centre Ireland
    **SDN Forum Moderator:
    SAP Enterprise Portal: Application Integration
    **SDN Universal Worklist Wiki:
    http://wiki.sdn.sap.com/wiki/x/ehU

    Hi r rajyalakshmi 
    it may be wrong forum for this question. but you can follow the below link for some idea.
    http://wiki.sdn.sap.com/wiki/display/BPX/UWL+FAQ
    hope it helps.
    Deep

  • Oracle HTML DB Studio Updated

    All,
    We've updated the HTML DB Studio with a new look, and also added a couple 1.6-specific applications.
    http://htmldb.oracle.com/studio
    You'll notice that all content is flagged by version - either 1.5.x or 1.6. Keep in mind that 1.5.x applications should import into 1.6 environments, but not the other way around.
    We've also added a Search feature, which searches all content (applications, themes, utilities and tips & tricks) in the Studio.
    Look for a few more 1.6 applications over the next couple of days from the HTML DB team.
    Please feel free to post any feedback or comments here.
    Thanks,
    - Scott -

    Scott,
    Looks great!! I look forward to the upcoming sample applications from the HTML DB team.
    It would be nice if the use of XML and Java is used in one of the upcoming samples.
    Thanks.

  • Askus (asktom) application for html db studio

    Hello,
    according to Tom Kyte you (the oracle html db team) wrote the basic "AskUs" Application which is used by asktom.oracle.com.
    Have you ever thought of providing the ask tom application/functionality as a sample application on html db studio?
    I would appreciate this as i'm searching for an easy to manage framework for publishing answers to questions, providing technical news information and rss-integration. This would be a good point to start.
    BR,
    Martin

    Scott,
    Thanks a lot for adding this demo app to your already tight schedule.
    This app would help us a lot. I'm planning to develop similar kind of application for our organization.
    Regards
    Richard.

  • Add new link on Quick Launch using visual studio

    Hi,
    How can I add new link on quick launch using visual studio?
    I saw many link about developing quick launch or top link bar.
    But they are using visual webpart to develop this function and can add
    when the user add this webpart. How can I add automatically when I deploy the project.
    Thanks in advance!
    Best Regards, wendy

    using System;
    using System.Web.UI;
    using System.Linq;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Navigation;
    namespace SPQuickLaunchAddItemWebPart.VisualWebPart1
    public partial class VisualWebPart1UserControl : UserControl
    protected void Page_Load(object sender, EventArgs e)
    CleanUpQuickLaunch(“My Header”);
    AddQuickLaunchItem(“My Header”, “http://www.google.com/q=stuff”, “My Link Here”, “http://www.google.com”);
    CleanUpTopNavigationBar(“My Header”);
    AddTopNavigationBarItem(“My Header”, “http://www.google.com/q=stuff”, “My Link Here”, “http://www.google.com”);
    AddTopNavigationBarItem(“My Header”, “http://www.google.com/q=stuff”, “My Link Here1″, “http://www.google.com”);
    public static void CleanUpQuickLaunch(string header)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection quickLaunch = web.Navigation.QuickLaunch;
    // try to get quick launch header
    SPNavigationNode nodeHeader = quickLaunch.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found remove it
    if (nodeHeader != null)
    quickLaunch.Delete(nodeHeader);
    public static void CleanUpTopNavigationBar(string header)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection topNavigation = web.Navigation.TopNavigationBar;
    // try to get quick launch header
    SPNavigationNode nodeHeader = topNavigation.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found remove it
    if (nodeHeader != null)
    topNavigation.Delete(nodeHeader);
    public static void AddQuickLaunchItem(string header, string headerURL, string item, string url)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection quickLaunch = web.Navigation.QuickLaunch;
    // try to get quick launch header
    SPNavigationNode nodeHeader = quickLaunch.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found create it
    if (nodeHeader == null)
    nodeHeader = quickLaunch.AddAsFirst(new SPNavigationNode(header, headerURL, true));
    nodeHeader.Update();
    //try to get node item under header
    SPNavigationNode nodeItem = nodeHeader.Children.Cast<SPNavigationNode>().Where(n => n.Title == item).FirstOrDefault();
    //If item not found under heading then create it
    if (nodeItem == null)
    nodeItem = nodeHeader.Children.AddAsLast(new SPNavigationNode(item, url, true));
    else
    nodeItem.Url = url;
    nodeItem.Update();
    nodeHeader.Update();
    public static void AddTopNavigationBarItem(string header, string headerURL, string item, string url)
    using (SPSite site = SPContext.Current.Site)
    using (SPWeb web = site.OpenWeb())
    web.AllowUnsafeUpdates = true;
    SPNavigationNodeCollection topNavBar = web.Navigation.TopNavigationBar;
    // try to get quick launch header
    SPNavigationNode nodeHeader = topNavBar.Cast<SPNavigationNode>().Where(n => n.Title == header).FirstOrDefault();
    //if header not found create it
    if (nodeHeader == null)
    nodeHeader = topNavBar.AddAsFirst(new SPNavigationNode(header, headerURL, true));
    nodeHeader.Update();
    //try to get node item under header
    SPNavigationNode nodeItem = nodeHeader.Children.Cast<SPNavigationNode>().Where(n => n.Title == item).FirstOrDefault();
    //If item not found under heading then create it
    if (nodeItem == null)
    nodeItem = nodeHeader.Children.AddAsLast(new SPNavigationNode(item, url, true));
    else
    nodeItem.Url = url;
    nodeItem.Update();
    nodeHeader.Update();
    above code demonstrate how to add node inside the quick launch and top navigation.
    you can also follow the below link.
    http://myspexp.com/2012/04/30/adding-items-to-your-quick-launch-or-top-navigation-programmatically/
    Hiren Patel | Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.

  • New Releases Section is the same for the last year

    As the title says the "New Releases Section" in the "Browse" all the platforms (desktop, android, web and iOS) is absolutely the same for the last year. It is never updated but why as I can clearly see my album notifications from artists I follow? Is this section a "sponsored" artists only secrion, whats the deal here? Here is a screenshot of how the section looks today 30.4.2015, notice that Rammstein which added their music almost and year ago is still occuping most of the space.

    You will not believe the response I got, I am waiting on an escalated response as what they told me is unacceptable at least for me. I will remove the Spotify support person's name as it is not his fault and I don't want to get anyone in trouble for a bug that he/she did not make: Hi ...,
    Thanks for your feedback. You mentioned that you're still seeing the same artists from last year in the New Releases section.
    Can you please try to login Spotify using these details and tell us if you're still seeing the same artists/albums?:
    Username: ...
    Password: ...
    Let us know right away if you are seeing new artists and albums. If you are, then creating a new account may be necessary.
    We'll wait for your response.
    Have a nice day, to that I responded: When I log-in with that test account the New Releases is different and is up to date. Are you serious that I need to create a new account to fix this, this is unacceptable. I WILL NOT leave my entire music library and my premium subscription history in order to fix a clear bug in your system, I am better of leaving Spotify all together. Please escalate this issue to your managers as it is again UNACEPTABLE to require me to create a new account to resolve a clear bug in your system, what is next if this gets stuck again down the road in 3 months will you ask me to create new account again, till what end. I am shocked at this. I have not idea what is happening at Spotify quarters but the last 5 months have been a pure pain, starting with the 10 000 limit of Your Music, than the 1.0 desktop version disaster and now this absurd "solution". I have been a loyal paying customer for over and year and now I feel like I wasted this time supporting a company that was not worth it. Edit: If such an issue cannot be resolve by Spotify and the only solution is to create a new account I can't even imagine what "spaghetti code" is the core implementation of their service.

  • CF on server adding an /html tag to doc!

    Hi all,
    I'm not sure what the culprit is here. I'm looking at a file
    on my localhost that renders fine. But when I push it to my live
    server, it's got a big break between the header and body content
    (which is a .cfm template include).
    As far as I can tell, the problem is that the javascript
    added on the server by CF is adding a </html> tag to the very
    beginning of my file, causing the break.
    Here's the code I see when there's a problem:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN">
    <html>
    <head>
    <title>Application</title>
    <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript"
    SRC="/CFIDE/scripts/cfform.js"></SCRIPT>
    <SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
    <!--
    function _CF_checkCFForm_1(_CF_this)
    if (!_CF_hasValue(_CF_this.PID, "PASSWORD" ))
    if (!_CF_onError(_CF_this, _CF_this.PID, _CF_this.PID.value,
    "YOU MUST ENTER A VALID PID"))
    return false;
    return true;
    //-->
    </SCRIPT>
    </head>
    </html>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html>
    <head>
    Any ideas where this </html> is coming from?
    Thanks!
    Rick

    Use CSS.
    hr { margin:5px;padding:5px; }
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "DJDEL0530" <[email protected]> wrote in message
    news:f4esuk$p8o$[email protected]..
    > Hello All,
    > Inserting a seperator bar using the "HTML" tab and
    clicking the "hr" gives
    > me
    > a nice seperator.
    > The page I'm talking about is
    >
    http://empdigital.net/boxingpreview/home_testv1.html
    in the "Spnsors"
    > column.
    > I can't figure out how to control the amrgin above &
    below the rule.
    > Any help?
    > thanks
    >

  • What is the difference between HTML DB and HTML DB Studio?

    What is the difference between HTML DB and HTML DB Studio?

    Doug,
    Oracle HTML DB is a feature of the Oracle 10g Database which allows you to quickly & securely create web applications based on your data in Oracle.
    Please see our homepage on OTN for more details: http://otn.oracle.com/htmldb
    Oracle HTML DB Studio is a site where you can download HTML DB applications, utilities & tip and tricks for use with HTML DB.
    Thanks,
    - Scott -

  • I created a new playlist and added tunes to another.  When I synched my ipod showed the new playlist heading but 0 songs, although it correctly received the new songs on the updated playlist.  Tried to synch several times with the same result.

    I created a new playlist and added some songs to another existing one.  When I synched with my PC, it loaded the new playlist heading but 0 songs, but did add the new songs to the existing playlist.  Repeated the process several times without success.

    This earlier post may help.
    https://discussions.apple.com/message/10859194#10859194
    For me,  (long winded way) I drag the playlist from the bottom tree to the iPod branch.
    Then select iPod.
    Click the music tab on the right window.
    click sync tick music
    go down to the playlist section and tick the playlist.
    Apply.
    Good Luck.

  • JTable checkboxes doesn't retain their selection when a new row is added!!

    HI,
    My gui has the JTable component which has 5 columns. out of which 4 columns are checkboxes. whenever i select an item from the Jlist and click on the add button it will add a new row in JTable.
    but the problem is whenever a new row is added to the table. the previously selected checkboxes of previous rows are being deselected. But i want to retain the selection of my previous rows even when a new row is added. please help me how to achieve this..i am posting my JTable code here:
    class FunctionTableModel extends AbstractTableModel{
           /** The instances who's attribute structure we are reporting */
        //protected InitModel m_init;
        protected String func_element;
        protected int counter;
        //protected String[] func_array;
        protected Vector func_vector;
        /** The flag for whether the instance will be included */
        protected boolean [] m_Sum;
        protected boolean [] m_Min;
        protected boolean [] m_Avg;
        protected boolean [] m_Max;
        protected boolean [] m_SD;
         * Creates the tablemodel with the given set of instances.
         * @param instances the initial set of Instances
        public FunctionTableModel() {
          counter =0;
             func_vector = new Vector();
         public FunctionTableModel(Vector vec) {
            func_vector = vec;
        public Vector getDataVector(){
            return func_vector;
         * Sets the tablemodel to look at a new set of instances.
         * @param instances the new set of Instances.
        public void setElement(Vector vec) {
               for(int i=0;i<vec.size();i++){
            func_vector.add(vec.elementAt(i));
            counter++;
          fireTableDataChanged();   
          m_Sum = new boolean [counter];
          m_Min = new boolean[counter];
          m_Avg = new boolean[counter];
          m_Max = new boolean[counter];
          m_SD = new boolean[counter];
         * Gets the number of attributes.
         * @return the number of attributes.
        public int getRowCount() {
               return func_vector.size();
         * Gets the number of columns: 3
         * @return 3
        public int getColumnCount() {
          return 6;
         * Gets a table cell
         * @param row the row index
         * @param column the column index
         * @return the value at row, column
        public Object getValueAt(int row, int column) {
          switch (column) {
          case 0:
            return func_vector.elementAt(row);
          case 1:
            return new Boolean(m_Sum[row]);
          case 2:
            return new Boolean(m_Min[row]);
          case 3:
            return new Boolean(m_Avg[row]);
          case 4:
            return new Boolean(m_Max[row]);
          case 5:
            return new Boolean(m_SD[row]); 
          default:
            return null;
        public void removeAll(){
            func_vector.removeAllElements();
            fireTableDataChanged();
         * Gets the name for a column.
         * @param column the column index.
         * @return the name of the column.
        public String getColumnName(int column) {
          switch (column) {
          case 0:
            return new String("Function Selected");
          case 1:
            return new String("Sum");
          case 2:
            return new String("Min");
          case 3:
            return new String("Avg");
          case 4:
            return new String("Max");
          case 5:
            return new String("SD");   
          default:
         return null;
         * Sets the value at a cell.
         * @param value the new value.
         * @param row the row index.
         * @param col the column index.
        public void setValueAt(Object value, int row, int col) {
          if(col == 0){
            counter++;
            func_vector.add(counter,value.toString());
          if (col == 1)
            m_Sum[row] = ((Boolean) value).booleanValue();
          if (col == 2)
            m_Min[row] = ((Boolean) value).booleanValue();
          if (col == 3)
            m_Avg[row] = ((Boolean) value).booleanValue();
          if (col == 4)
            m_Max[row] = ((Boolean) value).booleanValue();
          if (col == 5)
            m_SD[row] = ((Boolean) value).booleanValue();       
         * Gets the class of elements in a column.
         * @param col the column index.
         * @return the class of elements in the column.
        public Class getColumnClass(int col) {
             return getValueAt(0, col).getClass();
         * Returns true if the column is the "selected" column.
         * @param row ignored
         * @param col the column index.
         * @return true if col == 1.
        public boolean isCellEditable(int row, int col) {
          if (col >= 1) {
             return true;
          return false;
        public void removeRow(int row){
            if(row<=func_vector.size()){
                          func_vector.removeElementAt(row);
                counter--;
            fireTableDataChanged();
        }

    hi parvathi,
    i have made changes to my previous code and here's the code:
      class FunctionTableModel extends DefaultTableModel{
           /** The instances who's attribute structure we are reporting */
        //protected InitModel m_init;
        protected String func_element;
        protected int counter;
        protected int counter1;
        //protected String[] func_array;
        protected Vector func_vector;
        /** The flag for whether the instance will be included */
        protected boolean [] m_Sum;
        protected boolean [] m_Min;
        protected boolean [] m_Avg;
        protected boolean [] m_Max;
        protected boolean [] m_SD;
        //protected Vector m_Sum1;
        //protected Vector m_Min1;
        //protected Vector m_Avg1;
        //protected Vector m_Max1;
        //protected Vector m_SD1;
         * Creates the tablemodel with the given set of instances.
         * @param instances the initial set of Instances
        public FunctionTableModel() {
            System.out.println("entered the constr");
          counter =0;
          //counter1=0;
          //m_Sum1 = new Vector();
          //m_Min1 = new Vector();
          //m_Avg1 = new Vector();
          //m_Max1 = new Vector();
          //m_SD1 = new Vector();
          //func_array = new String[];
          func_vector = new Vector();
         public FunctionTableModel(Vector vec) {
            func_vector = vec;
            //setElement(func_vector);
        public Vector getDataVector(){
            return func_vector;
         * Sets the tablemodel to look at a new set of instances.
         * @param instances the new set of Instances.
        public void addRow(Vector vec) {
          //counter++; 
          //func_element = ele;
          //System.out.println("FunctionTableModel- setElement() method");
          for(int i=0;i<vec.size();i++){
            func_vector.add(vec.elementAt(i));
            counter++;  
           //System.out.println("counter ="+counter+new boolean[counter]); 
            //m_Sum1 = m_Sum;
            //m_Min1 = m_Min;
            //m_Avg1 = m_Avg;
            //m_Max1 = m_Max;
            //m_SD1 = m_SD;
            //m_Sum = new boolean[counter];
            //System.out.println("at setElement");
            m_Sum = new boolean[counter];
            //System.out.println(counter);
            m_Min = new boolean[counter];
            //m_Min;
            m_Avg = new boolean[counter];
            //m_Avg1 = m_Avg;
            m_Max = new boolean[counter];
            //m_Max1 = m_Max;
            m_SD = new boolean[counter];
            //m_SD1 = m_SD;
            //counter1++;
          //func_array[counter]=ele;
          //func_vector.add(counter,ele);
          fireTableDataChanged();  
         * Gets the number of attributes.
         * @return the number of attributes.
        //public int getRowCount() {
          //System.out.println("FunctionTableModel- getRowCount() method");
          //return func_vector.size();
         * Gets the number of columns: 3
         * @return 3
        public int getColumnCount() {
          return 6;
         * Gets a table cell
         * @param row the row index
         * @param column the column index
         * @return the value at row, column
        public Object getValueAt(int row, int column) {
          switch (column) {
          case 0:
            return func_vector.elementAt(row);
          case 1:{
            //System.out.println("in case 1");
            //Boolean m_Sum_Value = new Boolean(m_Sum[row]);
            //System.out.println("m_Sum_Value:"+m_Sum_Value.booleanValue());
            return new Boolean(m_Sum[row]);
            //m_Sum1.add(m_Sum_Value);
            //return m_Sum_Value;
          case 2:
            return new Boolean(m_Min[row]);
          case 3:
            return new Boolean(m_Avg[row]);
          case 4:
            return new Boolean(m_Max[row]);
          case 5:
            return new Boolean(m_SD[row]); 
          default:
            return null;
        public void removeAll(){
            func_vector.removeAllElements();
            //m_Sum1.removeAllElements();
            fireTableDataChanged();
         * Gets the name for a column.
         * @param column the column index.
         * @return the name of the column.
        public String getColumnName(int column) {
          switch (column) {
          case 0:
            return new String("Function Selected");
          case 1:
            return new String("Sum");
          case 2:
            return new String("Min");
          case 3:
            return new String("Avg");
          case 4:
            return new String("Max");
          case 5:
            return new String("SD");   
          default:
         return null;
         * Sets the value at a cell.
         * @param value the new value.
         * @param row the row index.
         * @param col the column index.
        public void setValueAt(Object value, int row, int col) {
          if(col == 0){
            counter++;
            func_vector.add(counter,value.toString());
          if (col == 1) {
            m_Sum[row] = ((Boolean) value).booleanValue();
            //System.out.println("m_Sum length "+m_Sum.length);
            //for(int i=0;i<=row;i++)
            //    System.out.println("m_Sum1 "+i+((Boolean)m_Sum1.elementAt(i)).booleanValue());
            //System.out.println("m_Sum1["+row+"] "+ ((Boolean)m_Sum1.elementAt(row)).booleanValue());
            //    System.out.println("m_Sum["+i+"] "+ m_Sum);
    if (col == 2)
    m_Min[row] = ((Boolean) value).booleanValue();
    if (col == 3)
    m_Avg[row] = ((Boolean) value).booleanValue();
    if (col == 4)
    m_Max[row] = ((Boolean) value).booleanValue();
    if (col == 5)
    m_SD[row] = ((Boolean) value).booleanValue();
    * Gets the class of elements in a column.
    * @param col the column index.
    * @return the class of elements in the column.
    public Class getColumnClass(int col) {
    return getValueAt(0, col).getClass();
    * Returns true if the column is the "selected" column.
    * @param row ignored
    * @param col the column index.
    * @return true if col == 1.
    public boolean isCellEditable(int row, int col) {
    if (col >= 1) {
         return true;
    return false;
    public void removeRow(int row){
    if(row<=func_vector.size()){
    func_vector.removeElementAt(row);
    counter--;
    fireTableDataChanged();
    previouslu i was using the setElement method. now i have replaced with the addRow method...
    but anyways...the control is not going to any of these overridden methods...and none of the elements are added to the table. But i comment of all the addRow, getValueAt, getColumnClass methods...then it's adding rows to the table but with only the first column all the remaiing columns are just empty...
    i am fed up with this...if you observe i have commented out somany lines...becoz i am trying to save my boolean array values into a vector..but that was also in vain...
    i appreciate for ur help...
    thanks
    sri

  • Can we insert new Detail Section After Report Footer in Crystal Report

    Hi All,
                Is it possible to  insert new  'detail' section  after  ' Report Footer' in the Crystal Report, i know this  is possible in 'detail' section where you can insert new detail one after another, but i want to  insert another  ' detail' section after Report Footer according  my required  result.
    Regards
    Rahul

    Hi Rahul...........
    Open Crystal Report and go to Insert option and select SubReport. From here you can create Subreport........
    Check below links....
    http://msdn.microsoft.com/en-us/library/ms227520%28v=vs.80%29.aspx
    http://www.youtube.com/watch?v=JVNkhj_rnMY
    Regards,
    Rahul

  • What happened to the nifty "sync" button in iTunes? It syncs as soon as I plug it in, and that's great! BUT! When I go to the iTunes Store and buy new stuff, I can't just 'sync' the device again so my new stuff gets added. Why?

    What happened to the nifty "sync" button in iTunes? It syncs as soon as I plug it in, and that's great! BUT! When I go to the iTunes Store and buy new stuff, I can't just 'sync' the device again so my new stuff gets added. Why?

    Nothing happened to it.
    It is still there.  Maybe it says apply now, not sure, but it is still there.

  • I just bought a new iPhone and added 25$ to my iTunes and it won't let me buy anything bc it says I have to type in my security questions answers but I don't rennet them what do I do?

    I just bought a new iPhone and added 25$ to my iTunes and it won't let me buy anything bc it says I have to type in my security questions answers but I don't rennet them what do I do? Please help me I don't want my 25$ to go to waste

    Click here and search the article for '2 out of 3' without the quotes; this generally involves either a message being sent to your rescue email address or contacting the iTunes Store staff directly.
    (74403)

  • Issue with the new COPA field added into the BBSEG Structure

    Hello All,
    I have an issue with the new COPA field added into the BBSEG Structure.
    I think its added becuase of test Operationa Conern Created by somebody.
    Can you please let me know how to remove that structure from BBSEG Structure.
    Thanks
    vsr

    Hi Monohar & Ankur,
      Thanks for your answers..
      main issue is suddenly new field called RKE_COPA_KOSTL has  been added to the BBESG Structure..
      Because of this RFBIBL00 Upload is not working. I heard that  this new fields will come by generating Operating Concerns by Transaction KEA0.I found an operating concern which was created as a test in developemt system..
      But I am not sure how to delete that operating concern.Even i am not sure if we delete the Operating Concern ..is it going to delete that field in BBESG Structure or not??
    Please advise me..
    Thanks
    sathi

  • I transferred my music from my pc to my mac, but when i sync my phone it doesn't sync with any new music i added. If i back it up will it erase what's on my iPhone now and only put what's on the mac now (will it erase my apps?)

    I transferred all my music from my pc to my new mac and added new music, but when i try to sync my iPhone with the mac it doesn't sync anything new I put on it. I believe backing it up will solve it , but if I back up my iPhone will it erase what I have on my phone now (apps and other things) and only put the music from the mac now or will it keep what's on my phone and add the new music I put on the mac?

    It's true that it will erase your iPhone music if you sync them with Mac. You can use third party software to transfer music from iPhone to Mac, there are many programs you can choose. In this way, you can selectively move music.

Maybe you are looking for

  • Reg:tasks are not getting displayed in the uwl mss for particular user

    hi all Tasks are not getting updated in the MSS under tasks tab for particular user in EP.can any one please share their exp and knowledge on this how to reslove it. Thanks in advance. Deepika

  • Set image link to a file which not yet exists

    Hi to all, I'm working with InDesignCS2 on Mac and Windows. Is it possible to set an image link to a file which does not exists yet. I have document with some JPG files in low resolution. Later, if the document layout is finished, I want to change th

  • Application Crash

    So I have this game app called Order and Chaos Online by Gameloft. The problem i'm having is that everytime I launch it, it crashes and then pops up the "app quit unexpectedly" error. It happens every single time now. I tried reboot my macbook, reins

  • How to print copy check print from F110 tcode

    Hi All, My requirement is to print original check in one tray and copy check in second tray from t.code F110. I have developed a new form and assign it in FBZP ---> Payment methods company code - > Payment methods 'C' (Check) > Form Data - >Next form

  • Time Zone Problem with the Data

    Post Author: sde CA Forum: WebIntelligence Reporting We are working on Remedy System. It basically stores all the data for different parts of the world into the database. While storing the date and time information it automatically converts it into P