REGARDIN THE UPDATION OF TEXT DATA IN BW

hi,
this is a scenario updating flatfile to bw server.
i have problem in updating text data.when i create info package in infosources, i get a pop-up that "SELECT THE LANGUAGE FIELD IN THE SOURCE SYSTEM->LONG TEXT".and after if i continue while updating i get a error message that "NO TRANSFER STRUCTURE AVAILABLE ALL_SS_AL_MAT_TEXT (SY-SUBRC= " .can anyone help me in this.
thanks in advance.

Hi Mahesh..how do u want to do this that the qn..
do u have two infoobjects in which you want to load that master data.......?
If you have then make transformation ....between them and load using routine..
using offset in the routine.
i.e.
Infoobject Source(text Datasource)---> Infoobject A
routine:
result = source_fields-sourceinfoobjec+0(4).
In the second transformation
Infoobject Source(text Datasource)---> Infoobject B
routine:
result = source_fields-sourceinfoobjec+4(4).
regards,
rk

Similar Messages

  • My phone was recently updated to 8.1.  After the update, when text messages are sent when my phone is off, I no longer receive when my phone is turned on.  Is there something in Settings that needs to be changed?  I never had this problem before the updat

    My phone was recently updated to 8.1.  After the update, when text messages are sent when my phone is turned off, they no longer appear when I turn the phone on.  Is there something in Settings that needs to be changed?

    MetsFanGirl,
    Thanks for verifying. Are you having issues receiving both iMessages and standard text messages when they are sent when the phone is turned off? Try this and test... http://vz.to/1qjiOs7
    LindseyT_VZW
    Follow us on Twitter @VZWSupport

  • If I update my mac to 1.7.5 by paying for it, will the update delete my data?

    If I update my mac to 1.7.5 by paying for it, will the update delete my data on the mac?

    welcome

  • Only PSA with the 'Update subsequently in data targets'- BI 7.0

    Hello friends,
    We are currently on BI7.0 and my concern is with the InfoPackage Processing of 'Only PSA' with the 'Update subsequently in data targets'checked. When I load the data it loads into the PSA and I can see it in the monitor and in the Manage of the DSO it shows me Transferred '328' and Added Record '0'/. How do I manually update it from the PSA into the data target from this point?
    When I select  'PSA and then into Data Targets (package by package)' in the DSO manage screen it shows me Transferred 328 and Added Record '123'. So certainly that means that the data is not being subsequently loaded from the PSA when 'Only PSA' with the 'Update subsequently in data targets'checked option is used. Please tell me how to update data from PSA into Data Target when 'Only PSA' with the 'Update subsequently in data targets'checked is selected.
    Many thanks.

    Hi,
    In BW 3.x data flow, 'Only PSA' with the 'Update subsequently in data targets' option in Info package will load up to PSA only in case of the Process chains.
    After this info package we must add the additional step "Update from PSA to Target" in order to load to the target.
    Hope this will fix ur issue.

  • Regardin The UPDATE statement

    Hi There,
    I wanted to know, whether , When we do a UPDATE , is the record locked until the COMMIT is issued? If yes what happens when UPDATE fails
    Thanx in Advance

    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96524/c17trans.htm#5610
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96524/c16sqlpl.htm#1549

  • Updating text data and master data

    Hello everyone,
    I'm new to the ABAP language and I'm having some trouble with updating and inserting data in my tables. The problem goes like this :
    1) To modify an existing line in my table, I need only to update a text data. So I specify 'T' as tab class in the RSDMD_WRITE_ATTRIBUTES_TEXTS function. The update works fine.
    2) To add a new line to my table, I have to deal with both master data and text data. So I have another RSDMD_WRITE_ATTRIBUTES_TEXTS function this time with 'M' as tab class. I have put this function before the one with 'T' as tab class.
    My problem is that the add a new line doesn't work. I'd be very grateful if anyone could give me some hint. Thank you very much for your help.
    Best Regards,
    Dimple
    Here's my code :
    clear : t_wa_tproginv, t_wa_mproginv, l_wa_mproginv, l_wa_mproginv.
          l_form_fields-id = 'ZPROGINV'.
          read table gt_form_fields from l_form_fields into l_form_fields.
          l_wa_tproginv-/BIC/ZCPROGINV = l_form_fields-frm_val.
          l_wa_mproginv-/BIC/ZCPROGINV = l_form_fields-frm_val.
          l_form_fields-id = 'ZEXAUTO'.
          read table gt_form_fields from l_form_fields into l_form_fields.
          l_wa_tproginv-APPR_YEAR = l_form_fields-frm_val.
          l_wa_mproginv-APPR_YEAR = l_form_fields-frm_val.
          l_wa_mproginv-OBJVERS = 'A'.
          l_form_fields-id = 'ZLANGU'.
          read table gt_form_fields from l_form_fields into l_form_fields.
          l_wa_tproginv-LANGU = l_form_fields-frm_val.
          l_form_fields-id = 'ZPROGINV_TC'.
          read table gt_form_fields from l_form_fields into l_form_fields.
          l_wa_tproginv-TXTSH = l_form_fields-frm_val.
          l_form_fields-id = 'ZPROGINV_TL'.
          read table gt_form_fields from l_form_fields into l_form_fields.
          l_wa_tproginv-TXTLG = l_form_fields-frm_val.
          append l_wa_tproginv to t_wa_tproginv.
          append l_wa_mproginv to t_wa_mproginv.
            call function 'RSDMD_WRITE_ATTRIBUTES_TEXTS'
                exporting
                  i_iobjnm                = 'ZCPROGINV'
                  i_tabclass              = 'M'
                tables
                  i_t_table               = t_wa_mproginv
                exceptions
                  attribute_name_error    = 1
                  iobj_not_found          = 2
                  generate_program_error  = 3
                  others                  = 4.
            if sy-subrc <> 0.
                  lt_err_msg-condition = 'rsdmdmzproginv'. read table gt_err_msgs from lt_err_msg into lt_err_msg.
                  concatenate sy-msgid '/' sy-msgty '/' sy-msgno '/' sy-msgv1 '/' sy-msgv2 '/' sy-msgv2 '/' sy-msgv3 '/' sy-msgv4 into lt_err_msg-message.
                  page->messages->add_message(
                                  condition  = lt_err_msg-condition
                                  message    = lt_err_msg-message
                                  severity   = lt_err_msg-severity ).
            endif.
            call function 'RSDMD_WRITE_ATTRIBUTES_TEXTS'
                exporting
                  i_iobjnm                = 'ZCPROGINV'
                  i_tabclass              = 'T'
                tables
                  i_t_table               = t_wa_tproginv
                exceptions
                  attribute_name_error    = 1
                  iobj_not_found          = 2
                  generate_program_error  = 3
                  others                  = 4.
            if sy-subrc <> 0.
                  lt_err_msg-condition = 'rsdmdmzproginv'. read table gt_err_msgs from lt_err_msg into lt_err_msg.
                  concatenate sy-msgid '/' sy-msgty '/' sy-msgno '/' sy-msgv1 '/' sy-msgv2 '/' sy-msgv2 '/' sy-msgv3 '/' sy-msgv4 into lt_err_msg-message.
                  page->messages->add_message(
                                  condition  = lt_err_msg-condition
                                  message    = lt_err_msg-message
                                  severity   = lt_err_msg-severity ).
            endif.
              call function 'RSDMD_MD_ACTIVATE'
                exporting
                  i_chabasnm = 'ZCPROGINV'.
              call function 'RSDDS_AGGREGATES_MAINTAIN'
               exporting
                 i_protnumber          =  'ZCPROGINV'.
              if sy-subrc <> 0.
                lt_err_msg-condition = 'rsdmdtzproginvchgrun'. read table gt_err_msgs from lt_err_msg into lt_err_msg.
                concatenate sy-msgid '/' sy-msgty '/' sy-msgno '/' sy-msgv1 '/' sy-msgv2 '/' sy-msgv2 '/' sy-msgv3 '/' sy-msgv4 into lt_err_msg-message.
                page->messages->add_message(
                                condition  = lt_err_msg-condition
                                message    = lt_err_msg-message
                                severity   = lt_err_msg-severity ).
              endif.

    I found the prob. It was elsewhere. Thx anyway.

  • New tutorials posted for Text Data Processing on Data Services 4.0

    Check out the 3 new Text Data Processing tutorials available at http://wiki.sdn.sap.com/wiki/display/BOBJ/TextDataProcessing within the Product Tutorials section.
    -- Introduction to Entity Extraction Transform: this 15-minute demo provides an overview of the Text Data Processing Entity Extraction transform for Data Services 4.0. The Entity Extraction transform enables you to process unstructured text, such as web pages, news articles, maintenance logs, text from a spreadsheet, or even from a database column, to extract key pieces of information that you can use in query and reporting.
    -- Using Text Data Processing Blueprints: this 6-minute demo explains how to get up and running with TDP quickly using a series of jobs contained in a blueprint. A blueprint is a sample end-to-end solution available on SAP Community Network.
    -- Creating an Extraction Dictionary: this 13-minute demo explains how to create an Extraction Dictionary, which can be used to customize a TDP Entity Extraction transform to improve results.

    Thanks for sharing your use case.  I have a few questions if you don't mind:
    1) What file formats are typically found within these compressed containers?  For example, html, xml, txt, pdf, MS Office, etc.
    2) Do these compressed containers ever have other embedded compressed containers within them?  For example, a zip file containing other zip files within it.
    3) If the intention is to process document files, do any of the document files have other document formats embedded/nested within them?  For example, a MS Word document with a spreadsheet embedded within it.

  • Make synchronous the update process of the FB01 transaction.

    Hello, we are using the BTE 1080 that is inside of the FB01 transaction
    to execute a "call transaction" to the F-51. At this point we use the
    FI accounting document data (identified by: {BUKRS, BELNR, GJAHR})
    "created" by FB01 as an input to the F-51 "call transaction".
    Due to the update process in the FB01 is asynchronous (in update task)
    some times the update process delays longer than usual and the F-51 fails
    because is unable to find the FI accounting document data in the database.
    We could use the "wait" instruction to wait for a period of time until the
    "update task" write data to the database, but we don't know how much
    time it will take. We would like to know if it is possible to make synchronous
    the update process of the FB01 in order to warranty the existency of the
    data in the database that will be used by the next transaction F-51.
    Thank you and best regards,
    José.
    Edited by: Ivan Gonzalez on Sep 15, 2010 2:48 AM

    Hi,
    I don't think it's possible. You can do a simple select from BKPF and if the new document is already there then don't wait. Otherwise wait for reasonable time and check again.
    Cheers

  • Error 4 when updating the text data

    When i am trying to load the data  using IP i am facing the issue Error 4 when updating the text data.Please suggest me
    Edited by: srikanth reddy612 on Dec 15, 2011 12:45 PM

    hi srikanth,
    you might have selected given lowercase data
    and please check in the Infoobject the lowercase Checkbox is unchecked then it will allow you to update from IP.
    also check in the Datasource fields tab whether particular field is unchecked with lowercase.
    if checked all records you are pushing will have to be in uppercase.
    thanks
    Sankaresh S

  • How to display the updated data from db to user interface in sruts framewor

    A beginner in this area, I have been able to read a record from a
    MySQL database and populate in jsp form . Now, my goal is to
    allow the user to edit the contents of the form and then update the
    record in MySQL and then display the same in jsp. page
    The scenario in detail
    1)the data is fetched from db and displayed in non-editable format
    2)Next button is clicked
    3)Now in the same jsp page I view the same data from db in editable format
    4)The user is allowed to change the information
    5)Now update button is clicked
    6)the records are updated in the db -Finished doing till this step
    7)But the updated info in non - editable format to be displayed in jsp page is left pending.
    Here is my code for jsp,i want know how to write an action for this,tried doing the same in java and I'm successful.but what I need is how to fetch the updated information in the user interface.
    I've made both editable as well as non editable info in the same page with different actions.
    pl help me,I'm a newbie
    <%@ taglib uri="/WEB-INF/struts-bean" prefix="bean" %>
    <%@ taglib uri="/WEB-INF/struts-html" prefix="html" %>
    <%@ taglib uri="/WEB-INF/struts-logic" prefix="logic" %>
    <%@ page language="java" %>
    <%@ page import="java.util.ArrayList,java.util.Iterator" %>
    <%@ page import="com.finocus.common.container.CustomerDetailsTest;" %>
    <html:html>
    <head>
         <title>CUSTOMER DISPLAY</title>
    </head>
    <body>
         <table width="100%" bgcolor="darkkhaki">
         <tr>
              <td><table width="100%" bgcolor="indigo">
                   <tr>
                        <td><font color="white">Display</font></td>
                        <td><font color="white">Update</font></td>
                        <td><font color="white">Verify</font></td>
                        <td><font color="white">Confirm</font></td>
                   </tr>
                   </table>
              </td>
         </tr>
    <%
              //Container for holding data
              ArrayList list = (ArrayList)session.getAttribute("CUSTOMERDETAILS");
              Iterator itr=list.iterator();
              while(itr.hasNext())
              CustomerDetailsTest cust = (CustomerDetailsTest) itr.next();
              System.out.println("testGetCustomerDetails()-successed. retrieved CustomerDetailsTest="+cust.toString());
    %>
    <%
              //Session for checking whether edit or non-edit mode
              String pageMode = (String)session.getAttribute("CUSTOMER_PAGE_MODE");
              session.removeAttribute("CUSTOMER_PAGE_MODE");
              if(null==pageMode)
                   pageMode = "EDIT";
              if(pageMode.equals("EDIT"))
                   //display data in the form
                   System.out.println("Editable mode");
    %>
              <html:form action="/nonedit">
                   <tr>
              <td><table width="100%" bgcolor="darkkhaki">
              <tr>
                        <td><b><bean:message key="label.id"/></b></td>
                        <td><font color="red"><%=cust.getCusId()%></font></td>
         </tr><br>
         <td>
                             <font color="brown" face="Courier New"><b>
                        <bean:message key="label.Company"/></b>
                        </td><br>
                        <tr>
                   <td><bean:message key="label.cname"/></td>
                   <td><font color="blue"><html:text property="name" value="<%=cust.getCname()%>"/></font></td>
                        <td><bean:message key="label.cphone"/></td>
                        <td><font color="blue"><html:text property="phone" value="<%=cust.getCphone()%>"/></font></td>
              </tr><br>
         <tr>
                   <td><bean:message key="label.caddr1"/></td>
                   <td><font color="blue"><html:text property="address1" value="<%=cust.getCaddress1()%>"/></font></td>
                        <td><bean:message key="label.cemail"/></td>
                        <td><font color="blue"><html:text property="email" value="<%=cust.getCemail()%>"/></font></td>
              </tr><br>
         <tr>
                   <td><bean:message key="label.caddr2"/></td>
                   <td><font color="blue"><html:text property="address2" value="<%=cust.getCaddress2()%>"/></font></td>
                        <td><bean:message key="label.cfax"/></td>
                        <td><font color="blue"><html:text property="fax" value="<%=cust.getCfax()%>"/></font></td>
              </tr><br>
         <tr>
                   <td><bean:message key="label.ccity"/></td>
                   <td><font color="blue"><html:text property="city" value="<%=cust.getCcity()%>"/></font></td>
                        <td><bean:message key="label.czip"/></td>
                        <td><font color="blue"><html:text property="zip" value="<%=cust.getZip()%>"/></font></td>
              </tr><br>
         <tr>
                   <td><b><bean:message key="label.cstate"/></b></td>
                   <td><font color="red"><html:text property="state" value="<%=cust.getCstate()%>"/></font></td>
         </tr><br>
         <td>
                             <font color="brown" face="Courier New"><b>
                        <bean:message key="label.Admin"/></b>
                        </td><br>
         <tr>
                   <td><b><bean:message key="label.AAname"/></b></td>
                   <td><font color="red"><html:text property="adminname" value="<%=cust.getAname()%>"/></font></td>
         </tr><br>
         <tr>
                   <td><b><bean:message key="label.AAemail"/></b></td>
                   <td><font color="red"><html:text property="adminemail" value="<%=cust.getAemail()%>"/></font></td>
         </tr><br>
         <tr>
                   <td><b><bean:message key="label.AAphone"/></b></td>
                   <td><font color="red"><html:text property="adminphone" value="<%=cust.getAphone()%>"/></font></td>
         </tr><br>
         <td>
                             <font color="brown" face="Courier New"><b>
                        <bean:message key="label.User"/></b>
                        </td><br>
         <tr>
                   <td><b><bean:message key="label.AUname"/></b></td>
                   <td><font color="red"><html:text property="adminusername" value="<%=cust.getUname()%>"/></font></td>
         </tr><br>
         <tr>
                   <td><b><bean:message key="label.AUemail"/></b></td>
                   <td><font color="red"><html:text property="adminuseremail" value="<%=cust.getUemail()%>"/></font></td>
         </tr><br>
              <tr align="center">
                        <td><html:cancel value="Cancel"/>
                        <html:submit value="Next"/></td>
              </tr>
              </html:form>
    <%               
              }else
                   //display data in the text
                   System.out.println("Non-Editable mode");
    %>
              <html:form action="/edit">
              <tr>
              <td><table width="100%" bgcolor="darkkhaki">
                   <tr>
                        <td><b><bean:message key="label.id"/></b></td>
                        <td><font color="red"><%=cust.getCusId()%></font></td>
                        <td><b><bean:message key="label.status"/></b></td>
                        <td><font color="red"><%=cust.getStatus() %></font></td>
         </tr><br>
         <td>
                             <font color="brown" face="Courier New"><b>
                        <bean:message key="label.Company"/></b>
                        </td><br>
                        <tr>
                   <td><bean:message key="label.cname"/></td>
                   <td><font color="blue"><%=cust.getCname()%></font></td>
                        <td><bean:message key="label.cphone"/></td>
                        <td><font color="blue"><%=cust.getCphone()%></font></td>
              </tr><br>
         <tr>
                   <td><bean:message key="label.caddr1"/></td>
                   <td><font color="blue"><%=cust.getCaddress1()%></font></td>
                        <td><bean:message key="label.cemail"/></td>
                        <td><font color="blue"><%=cust.getCemail()%></font></td>
              </tr><br>
         <tr>
                   <td><bean:message key="label.caddr2"/></td>
                   <td><font color="blue"><%=cust.getCaddress2()%></font></td>
                        <td><bean:message key="label.cfax"/></td>
                        <td><font color="blue"><%=cust.getCfax()%></font></td>
              </tr><br>
         <tr>
                   <td><bean:message key="label.ccity"/></td>
                   <td><font color="blue"><%=cust.getCcity()%></font></td>
                        <td><bean:message key="label.czip"/></td>
                        <td><font color="blue"><%=cust.getZip()%></font></td>
              </tr><br>
         <tr>
                   <td><b><bean:message key="label.cstate"/></b></td>
                   <td><font color="red"><%=cust.getCstate()%></font></td>
         </tr><br>
         <td>
                             <font color="brown" face="Courier New"><b>
                        <bean:message key="label.Admin"/></b>
                        </td><br>
         <tr>
                   <td><b><bean:message key="label.AAname"/></b></td>
                   <td><font color="red"><%=cust.getAname()%></font></td>
         </tr><br>
         <tr>
                   <td><b><bean:message key="label.AAemail"/></b></td>
                   <td><font color="red"><%=cust.getAemail()%></font></td>
         </tr><br>
         <tr>
                   <td><b><bean:message key="label.AAphone"/></b></td>
                   <td><font color="red"><%=cust.getAphone()%></font></td>
         </tr><br>
         <td>
                             <font color="brown" face="Courier New"><b>
                        <bean:message key="label.User"/></b>
                        </td><br>
         <tr>
                   <td><b><bean:message key="label.AUname"/></b></td>
                   <td><font color="red"><%=cust.getUname()%></font></td>
         </tr><br>
         <tr>
                   <td><b><bean:message key="label.AUemail"/></b></td>
                   <td><font color="red"><%=cust.getUemail()%></font></td>
         </tr><br>
         <tr align="center">
                        <td><html:submit value="Update"/></td>
              </tr>
              </html:form>
    <%
    %>
    <%
    %>
                   </table>
              </td>
              </tr>
         </table>
    </body>
    </html:html>

    u r using action classes. so after calling the insert method in Action Class to a dao... the next statement should be retrieve statement. so at the time of updating first it will get updated.. the next statement it will execute is retrieve and then set these details in VO or FORM and show it on JSP
    Message was edited by:
    leo_michael

  • Using Calc Manager to update values for Members with Text Data Type

    Hi All,
    In my outline I have a member of text data type. The purpose is to allow users to be able to enter comments.
    Each line item is created through a business rule and I am prompting the user to enter the key values at the launch of the calc manager rules. I want to be able to prompt the user for the comments in the calc manager rule because I know that it supports variables of type string. However I am unable to assign this string variable directly to the member.
    I appreciate that essbase only stores numeric data and that all text data type members really store numeric values which are basically the id's of the text string stored in a relational table by planning. however I cannot update the database table through calc manager and then bring in the generated id. Is there any way I can do this?
    I don't want to skip this field in the calc manager rule and expect the user to enter the comments AFTER the line item has been created because the users want this to be a mandatory field and insist that a new line item not be created unless comments are specified.
    Many thanks in advance for any help I can get.
    Shehzad

    If the comments are a set definition you could you smart lists in your planning forms.
    create this in your smart list
    xxxx = 1
    yyyy = 2

  • Effect of 'No update' for master data texts

    Hello all,
    I am using flexible update - update rules - for master data text. I want to confirm effect of 'No update' in following scenario
    In the fisrt set of update rules -from first source system -I have mapped both short text and long text
    Key  |  short text| long text
    ......| overwrite| overwrite
    K1    | some SHTX| some LGTX
    In the second set of update rules, I have selected 'No update' for Long text
    Key  |  short text | long text
    ......|overwrite| NO UPDATE
    K1    | some SHTX |
    My loading sequence is first source system followed by second source system
    what should be my ultimate long text and why?
    Many thanks in advance!
    Regards
    Sanjyot

    Hi surekha,
    your long text will not get changed.
    Take the example you mentioned
    Key | short text.....| long text
    ........| overwrite......| overwrite
    K1 | some SHTX.. | some LGTX
    In the second set of update rules, I have selected 'No update' for Long text
    Key | short text... | long text
    ........|overwrite......| NO UPDATE
    K1 | some SHTX. |
    In the second set of update rules, you mentioned "No UPdate", So, when a record with the same key is found n Masterdata, it is not going to make any changes to the field Long text.
    Where as short text will get overwritten.
    Take some data for ex with the above mentioned type
    data from source 1 : 2000 Maggi Noodles
    data from source 2 : 2000 Feasters
    when the data from first source system arrives, data will be 2000 maggi noodles
    when the data from second source suystem arrives, as there exist this records with same key(2000), it checks for the other fiels
    short text will be over written with the value in second system (according to rules its in overwrite mode)
    Long text will not be updated as the rule says no update.
    hope this helps,
    Cheers,
    Srinath.
    Cheers,
    Srinath.

  • Regardin updation of texts in bw

    hi,
    this is a scenario updating flatfile to bw server.
    i have problem in updating text data.when i create info package in infosources, i get a pop-up that "SELECT THE LANGUAGE FIELD IN THE SOURCE SYSTEM->LONG TEXT".and after if i continue while updating i get a error message that "NO TRANSFER STRUCTURE AVAILABLE ALL_SS_AL_MAT_TEXT (SY-SUBRC= " .can anyone help me in this.
    thanks in advance.

    Hi Allen,
    I had the same problem running through the exercise.  I'm sure you have it figured out by now but my solution was:
    Under Modeling-->Source Systems
    -->Locate your DataSource "ALL_SS_AL_MAT_TEXT "  It might be under FFSS under you Application Component.
    -->The Status might appear "Modified"
    -->Click on "Activate"
    -->Run through the exercise again and you should now be able to load the text
    Best Regards,
    Oz

  • TS2755 after update, my phone shows I have new iMessages, but I do not and I cannot clear this.  Also I lost all my previous text messages before the update.

    After the update, all my previous texts are gone and my icon shows I have new texts.  How do I clear my icon so it shows no new texts?

    Did you try to reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again? You will not lose data by resetting, but it can cure some glitches.

  • My mac app store cannot get a secure connection although my internet is fine and i have the correct time and date. I cannot get onto the app store to update. It just keeps saying cannot make a secure connection do i want to continue anyway

    see above

    This procedure is complicated, but you probably won't have to do all of it.
    Take each of the following steps that you haven't already tried until the issue is resolved. Back up all data before making any changes.
    Step 1
    Check the status of the service. If it's down, wait tor it to come back up. There may be a localized outage, even if the status indicator is green.
    Step 2
    Check that the date (including the year) and time shown by your system clock are correct.
    Step 3
    Restart your router and your broadband device, if they're separate.
    Step 4
    If you connect to the Internet through an HTTPS or SOCKS proxy server, follow the instructions in this support article, or deselect the proxy entirely.
    Step 5
    Boot in safe mode and test.
    Step 6
    Make sure Parental Controls aren't active for your account.
    Step 7
    Follow the instructions in this support article to change your DNS settings. If there's no change, revert the settings.
    Step 8
    If possible, test on a different network, such as a public Wi-Fi hotspot or the cellular network of your phone.
    Step 9
    Launch the Keychain Access application. In the Keychains list, there should be items named System and System Roots. If not, select
    File ▹ Add Keychain
    from the menu bar and add the following items:
    /Library/Keychains/System.keychain
    /System/Library/Keychains/SystemRootCertificates.keychain
    From the Category list in the lower left corner of the window, select Certificates. Look carefully at the list of certificates in the right side of the window. If any of them has a a blue-and-white plus sign or a red "X" in the icon, double-click it. An inspection window will open. Click the disclosure triangle labeled Trust to disclose the trust settings for the certificate. From the menu at the top, select
    When using this certificate: Use System Defaults
    Close the inspection window. You'll be prompted for your administrator password to update the settings. Revert all the certificates with non-default trust settings. Never again change any of those settings.   
    From the menu bar, select
    Keychain Access ▹ Preferences... ▹ Certificates
    There are three menus in the window. Change the selection in the top two to Best attempt, and in the bottom one to CRL.
    Next, select the login keychain. Delete any expired or otherwise invalid certificates.
    Log out, log back in, and test.
    Step 10
    Launch the Activity Monitor application. Select All Processes from the menu in the toolbar of the Activity Monitor window, if not already selected. Enter "ocspd" (without the quotes) in the "Filter" text field. Is a process with that name listed?
    If not, back up all data, then triple-click anywhere in the line of text below on this page to select it:
    /var/db/crls
    Copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    Move all the files in the folder that opens to the Trash. You’ll be prompted for your administrator password. Reboot, empty the Trash, and test.
    Step 11
    If you've moved to a different country, select
    Store ▹ View My Account
    from the App Store menu bar, then click
    Change Country or Region
    and update your billing information.

Maybe you are looking for

  • Passing multiple values for a single field in URL to call sap Transaction

    Hi All, I need to pass multiple values for a single field to SAP transaction . means if i have say a field "Date" which can contain more than one value, <b>but its not a range which has two fields</b> . How is it possible. Let me know pls. Regards, S

  • Currency conversion with query selection mask and InfoObject 0Curtype

    Hi, question to following scenario: in the data source is an column with the currency type. This currency type column contains values like 10 = company code currency 20 = account area currency So for each data set in the table is an assignment of cur

  • Selecting multiple lines in a sales order

    Hello documentation says we should be able to select multiple lines in a sales order (for example to cancel them or remove them). Yet we cannot select more than one. Shift and Ctrl do not seem to work. Any idea why this does not work ? We are running

  • OS Booting problem

    I have a HP Pavilion dv6-1030us Notebook PC with Core 2 Duo processor and total 4 GB ram . Earlier with XP os it was working fine. But as I formated laptop and try to install any OS it gives fatal error. After removing 1 RAM which is having 2 GB ram

  • Problem with implicitly created Oracle pipes

    Hi, I am having a problem with implicitly created Oracle pipes. I am not sure if this is the correct forum for this topic, but I could not see one which suited better.. I am using Oracle pipes as a commiunication mechanism between processes (some are