Data in server is not updated

i have modify the data STREET to "ANG MO KIO"
http://i192.photobucket.com/albums/z231/yzme/d1.gif
but the data in server still "HEAVEN ST"
http://i192.photobucket.com/albums/z231/yzme/d2.gif
I am using Time2Way T01, if it is when i sync the data will be uploaded, or do i need to configure somewhere to get the data upload ?
if the data in client and middleware is different, when i sync , the data from the middleware will again download to the client replace the modified values
OR
the data in the client will uploaded to the middleware and trigger the MODIFY bapi wrappers ?
<b>
when i check my MEREP_MON, and MEREP_LOG there is no data inside this meaning after i changed the values and perform the sync, Inbox and Outbox still remain the previous data as well as inside the MEREP_LOG,
is it the bapi wrapper not call by the client ?
</b>
and i find out that my bapi not get called, what additional code should i add instead of the code below.
DO I NEED TO IMPLEMENT SOME CODE FOR UPLOADER ??
do i have to change the reqDirectSync="true", if yes, how do i changed, just change inside the editor, or there is somewhere to configure in sapgui
after i changed the data , i try to sync, and i check on merep_mon
what specific or additional steps i need to configure, on uploader / receiver or synchronizer
<b>i do not implement any syncBoDelta or global reset ?</b>Can someone explain the term "delta" to me and its activities?
if i have upload something, and sync, the Inbox should have something right ??
i just put add this code to modify my records
public String modifyRecord(String eventName,boolean didNavigate){
                         String syncBoName="ZCON";
                         String syncKey="0001230297";
                         tableViewBean.setString(syncBoName +" "+syncKey);
                         System.out.println("SyncBoName: " +syncBoName + " syncKey: " +syncKey);
                         tcp = TableContentProvider.instance(syncBoName);
                         tcp.modifyTable(syncBoName,syncKey);                                   return JSP_DETAIL_SYNCBOINSTANCE;
public void modifyRecord(String syncBoName,String syncKey){
SyncBoDescriptor sbd=null;
sbd=descriptorFacade.getSyncBoDescriptor(syncBoName);
SyncBo sb=null;
try{
System.out.println("bp 2");
sb=dataFacade.getSyncBo(sbd,syncKey);
}catch(PersistenceException pex){
System.out.println("Exception in modifyRecordLoc:" +pex.getMessage());
SmartSyncTransactionManager transactionManager;
try{  transactionManager=dataFacade.getSmartSyncTransactionManager();
if(!transactionManager.isTransactionStarted()){
transactionManager.beginTransaction();
boolean b8=false;
b8=setHeaderFieldValue2(sb,"STREET","ANG MO KIO");
transactionManager.commit();
SetSendType();
listAllOutDelta();
checkInboxConflict();
}catch(Exception e){
System.out.println("Exception in modifyRecordAmt2:" +e.getMessage());
public void checkInboxConflict(){
          ErrorConflictInbox errorConflictInbox= SmartSyncRuntime.getInstance().getInboxNotifier().getErrorConflictInbox();
          MeIterator iter;
          SyncBoResponse resp;
          try {
          iter= errorConflictInbox.getAllSyncBoResponses();
          while(iter.hasNext()){
          resp= (SyncBoResponse)iter.next();
          String bo=resp.getSyncBoDescriptor().getSyncBoName();//SyncBo Name
          String state=resp.getSyncBoResponseState().toString();
          String res=resp.getResponseType().toString();//Get the SyncBo response type (conflict or ERROR)
          String msg=resp.getText();// This will return the exact message from the server
          System.out.println("bo:" +bo +" state: " +state +" res: " +res +" msg:" +msg);
          System.out.println("state:" +resp.getSyncBoResponseState().toString());
          if(resp.getSyncBoResponseState().equals(SyncBoResponseState.INITIAL)){
               String a=resp.getSyncBoResponseState().toString();
               resp.acceptClientSyncBo();
               String b=resp.getSyncBoResponseState().toString();
               resp.delete();
               System.out.println("state1: " +a +"state2: " +b);
          boolean syncStatusComplete= SmartSyncRuntime.getInstance().getInboxNotifier().isSyncStatusComplete();
          System.out.println("syncStatus:" +syncStatusComplete);
          }catch (Exception e) {
          e.printStackTrace();
public void listAllOutDelta(){
          SyncBoOutDeltaFacade deltFac=SmartSyncRuntime.getInstance().getSyncBoOutDeltaFacade();
          MeIterator allDelta;
          try {
               allDelta = deltFac.getAllDelta();
               while(allDelta.hasNext()){
                         SyncBoOutDelta outDelta=(SyncBoOutDelta)allDelta.next();
                         System.out.println("SyncKey:" +outDelta.getSyncKey() +" Action:" +outDelta.getAction()
                                   +" State:" +outDelta.getStateId() +" SendType:"+outDelta.getSendType());
          } catch (SmartSyncException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
          } catch (PersistenceException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
public void SetSendType(){
          SmartSyncRuntime ssRuntime = SmartSyncRuntime.getInstance();
          SyncBoOutDeltaFacade boDeltaFacade = ssRuntime.getSyncBoOutDeltaFacade();
          SyncBoDescriptorFacade descF = ssRuntime.getSyncBoDescriptorFacade();
          SyncBoDescriptor myBO = descF.getSyncBoDescriptor("ZCON");
          boDeltaFacade.setSendType(myBO, SyncBoOutDeltaSendType.SEND_DIRECT);
//SyncManager.getInstance().synchronizeWithBackend(VisibilityType.USER_SHARED);
     public boolean setHeaderFieldValue2(
          SyncBo sb,
          String headerFieldName,
          Object value) {
          SyncBoDescriptor sbd = sb.getSyncBoDescriptor();
          //RowDescriptor trd = sbd.getTopRowDescriptor();
          System.out.println("bp 10");
          RowDescriptor trd=sbd.getRowDescriptor("010");
          System.out.println("bp 11");
          FieldDescriptor fd = trd.getFieldDescriptor(headerFieldName);
          System.out.println("fd:" +fd.getFieldName());
          if (fd != null) {
          BasisFieldType bft = fd.getFieldType();
          //Row header = sb.getTopRow();
          System.out.println("bp 12");
          //Row header = null;
          Row[] header=null;
          //try {
               //header = sb.getRow("0001211181");
               //header=sb.getTopRow();
               header=getItemInstances(sb,"010");
               if(header==null){
                    System.out.println("is null");
               }else{
                    System.out.println("not null");
          //} catch (PersistenceException e1) {
               // TODO Auto-generated catch block
          //     System.out.println("Exception getRow:" +e1.getMessage());
          //     e1.printStackTrace();
          System.out.println("bp 13");
          try {
//             Integer operator
          if (bft == BasisFieldType.N) {
               System.out.println("Numeric");
          NumericField nf = header[0].getNumericField(fd);
          if (nf != null) {
          BigInteger ii = new BigInteger(value.toString());
          nf.setValue(ii);
          return true;
          } else {
          return false;
//             Character operator
          if (bft == BasisFieldType.C) {
               System.out.println("Character");
          CharacterField cf = header[0].getCharacterField(fd);
          if (cf != null) {
          cf.setValue(value.toString());
          return true;
          } else {
          return false;
//             Decimal operator
          if (bft == BasisFieldType.P) {
               System.out.println("Decimal");
          DecimalField df = header[0].getDecimalField(fd);
          System.out.println("bp 1.1");
          if (df != null) {
               System.out.println("bp 1.2");
          BigDecimal bd = new BigDecimal(value.toString());
          System.out.println("bp 1.3");
          df.setValue(bd);
          System.out.println("bp 1.4");
          return true;
          } else {
               System.out.println("bp 1.5");
          return false;
//             Similar operation for time and date operator fields
          if (bft == BasisFieldType.D) {
               System.out.println("Date");
          DateField df = header[0].getDateField(fd);
          if (df != null) {
          if (value.toString().equals("0")) {
          Date dat = Date.valueOf("0000-00-00");
          df.setValue(dat);
          } else if (!value.toString().equals("")) {
          Date dat = Date.valueOf(value.toString());
          df.setValue(dat);
          } else {
          Calendar cal = Calendar.getInstance();
          java.sql.Date bd =
          new java.sql.Date(cal.getTime().getTime());
          df.setValue(bd);
          return true;
          } else {
          return false;
//             Similar operation for time and date operator fields
          } catch (SmartSyncException ex) {
          System.out.println(ex.getMessage());
          } catch (PersistenceException e) {
          System.out.println(e.getMessage());
          return false;
SyncType: T01 Wrapper: GetList,GetDetail,Modify
  <?xml version="1.0" encoding="utf-8" ?>
- <MeRepApplication schemaVersion="1.1" id="ZCON" version="01">
  <Property name="CLIENT.BUILDNUMBER" />
  <Property name="C_APPLRESOLVE" />
  <Property name="DATA_VISIBLE_SHARED">X</Property>
  <Property name="E_APPLRESOLVE" />
  <Property name="FACADE_C_CLIENT">X</Property>
  <Property name="FACADE_E_CLIENT">X</Property>
  <Property name="HOMEPAGE.INVISIBLE" />
  <Property name="INITVALUE" />
  <Property name="RUNTIME">JSP</Property>
  <Property name="TYPE">APPLICATION</Property>
- <SyncBO id="ZCON" version="1" type="timedTwoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync="false" downloadOrder="1">
- <TopStructure name="TOP">
- <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
  <Input type="create">false</Input>
  <Input type="modify">false</Input>
  </Field>
- <Field name="PERSNUMBER" type="N" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
  <Input type="create">false</Input>
  </Field>
- <ChildStructure name="010">
- <Field name="SYNC_KEY" type="N" length="10" decimalLength="0" signed="false" isKey="true" isIndex="true">
  <Input type="create">false</Input>
  <Input type="modify">false</Input>
  </Field>
- <Field name="PERSNUMBER" type="N" length="10" decimalLength="0" signed="false" isKey="false" isIndex="false">
  <Input type="create">false</Input>
  </Field>
- <Field name="CITY1" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
  <Input type="create">false</Input>
  </Field>
- <Field name="CITY2" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
  <Input type="create">false</Input>
  </Field>
- <Field name="STREET" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
  <Input type="create">false</Input>
  </Field>
- <Field name="HOUSE_NUM" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
  <Input type="create">false</Input>
  </Field>
- <Field name="REGION" type="C" length="40" decimalLength="0" signed="false" isKey="false" isIndex="false">
  <Input type="create">false</Input>
  </Field>
  </ChildStructure>
  </TopStructure>
  </SyncBO>
  </MeRepApplication>
Message was edited by:
        yzme yzme

<u>my intention is very simple, i just need to  update a field in a row and update to the middleware so that the backend will reflect the changes. </u>
>2 if i set the conflict/error handling to application, then i should have to implement some code for it, right ?
>3) List syncbooutdelta
<b>SyncKey:0001233035 Action:M SendType:SEND</b>
doesnt it mean that when i sync , the uploader will pick up this data and do a modification ??
i have change the metadata like this
<SyncBO id="ZCON" version="1" type="timedTwoWay" allowCreate="false" allowModify="true" allowDelete="false" reqDirectSync=<b>"true" </b>downloadOrder="1">
1) i try to sync the application and check the worklist monitor, there is nothing in the inbox ? how come ?
2)if i test using emulator, i try to modify a value and execute, i am getting the following error.
<u>
Header action from mobile="MOD", R/3 action="ADD"
Return code 1 (DOWNLOADER)
</u>
i try to modify not "Add"
3) I am using Time 2 Way , how to check it is synchronous or asynchronous ? in merep_sbuilder, the default asyn. is checked, meaning async ??
the type is T01 , ASYNC
4)
public void checkInboxConflict(){
          ErrorConflictInbox errorConflictInbox= SmartSyncRuntime.getInstance().getInboxNotifier().getErrorConflictInbox();
          MeIterator iter;
          SyncBoResponse resp;
          try {
          iter= errorConflictInbox.getAllSyncBoResponses();
          while(iter.hasNext()){
          resp= (SyncBoResponse)iter.next();
          String bo=resp.getSyncBoDescriptor().getSyncBoName();//SyncBo Name
          String state=resp.getSyncBoResponseState().toString();
          String res=resp.getResponseType().toString();//Get the SyncBo response type (conflict or ERROR)
          String msg=resp.getText();// This will return the exact message from the server
          System.out.println("bo:" +bo +" state: " +state +" res: " +res +" msg:" +mtext);
          boolean syncStatusComplete= SmartSyncRuntime.getInstance().getInboxNotifier().isSyncStatusComplete();
          System.out.println("syncStatus:" +syncStatusComplete);
          }catch (Exception e) {
          e.printStackTrace();
<u>bo:ZCON state: INITIAL res: CONFLICT msg:Conflict: R/3 = delete, device = modify
SyncStatus=true (complete)
</u>
5) after that i change my code to this
while(iter.hasNext()){
  if(resp.getSyncBoResponseState().equals(SyncBoResponseState.INITIAL)){
    String a=resp.getSyncBoResponseState().toString();
    String a1=syncBO.getSyncState().toString();
    resp.acceptClientSyncBo();   //No transaction stated to commit
    resp.delete();
String b=resp.getSyncBoResponseState().toString();
String b2=syncBO.getSyncState().toString();
System.out.println("state1: " +a +"state2: " +b);
System.out.println("SyncState1: " +a1 +"SyncState2: " +b1);
<u>state1: INITIAL state2: RESOLVED </u>
<u>SyncStatus1:QUANRANTINE SyncStatus2: INCONSISTENT</u>
and i try to sync ...no data in worklist
6)i try to list out all the delta to be uploaded
ListAllOutDelta to be upload
<u>SyncKey:0001233349 Action:I State:99925F8E24DFFE49A4563C5E018E9B61 SendType:SEND
</u>
i am modifying the rows, not Insert a new row, the Action:'I' instead of 'M',  pls clarify on this.
after i sync, i found out that there is 2 record with different syncKey but same primary key and all attributes appear to be same except the attribute that i changing.
<u>SYNCKEY    PERSNUMBER CITY STREET HOUSENO</u>
0001230298 000000000  HELL <u>ANG MO KIO</u> 0123456789 (modified record)
0001230299 000000000  HELL <u>HEAVEN ST</u>  0123456789(old record)
i check the application and found out that the previous record that i modify have its value changing locally but not updated into the backend, after sync, there is another record downloaded into this application which is the old record before i modify with different syncKey.
but when i check the backend table, there is only 1 record inside, because i dont implement the 'Create' Bapi.
does it make sense ?
7) when i check my client , the data is persisted with modified value , but the changes is not reflected in the server, how come the data in client is not uploaded to the server.
acceptClientSyncBo will make the client wins how come the data is not get updated in server ?
Re: Regarding modifying Sync BO
According to him, can anyone translate the things highlighted below
for modifying one sync bo instance , there is no need to use createUnlinkedCopy()..
just use like this..
sb = dataFacade.getSyncBo(sbd,key);
SmartSyncTransactionManager transactionManager;
transactionManager = dataFacade.getSmartSyncTransactionManager();
transactionManager.beginTransaction();
setHeaderFieldValue(sb,"PERSNUMBER","9866321467");
setHeaderFieldValue(sb,"FIRSTNAME","RajaSekhar");
setHeaderFieldValue(sb,"LASTNAME","Varigonda");
setHeaderFieldValue(sb,"PROFESSION","Technical Specialist");
setHeaderFieldValue(sb,"***","MALE");
setHeaderFieldValue(sb,"BIRTHDAY","1977-09-28");
setHeaderFieldValue(sb,"HEIGHT","165");
setHeaderFieldValue(sb,"WEIGHT","75");
// Commit the transaction
transactionManager.commit();
setHeaderFieldValue - can be used to set value in new sync bo instance , or modify the instance.
<b>
But one main think here have to consider is , if you have created one Sync Bo instance , not synchronized with back end and u have modified that, then thats just like a creation .So during sync this will call Create Bapi Wrapper.
</b>
But after synchronization , is u are modifying that instance , then it is a modification(will call MODIFY Wrapper in back end during synchronization). u must have the right to modify this instance in the client side.
hope u got it.
u can debug MI Applications in NWDS.
refer this blog written by Arun
/people/arunkumar.ravi/blog/2006/02/22/execute-debug-your-mi-code-from-nwds
let me know , if u have doubts
Regards
Kishor Gopinathan
pls comment...

Similar Messages

  • Scheduled finish date for process orders not updating in BW

    We are having problems with the scheduled finish date (GLTRS) for process orders. When the process order is already released, changes done in R/3 on the scheduled finish date will not result to a delta hence data in BW is not updated. Table AFKO, where data is coming from, is always updated with the changes though. 2LIS_04_P_MATNR is used in extracting the data.
    Has anyone experienced the same problem? We are looking for possible ways on how to have a delta whenever there are changes on the process order even after it is already released.
    Any help would be greatly appreciated...

    Hi Donna,
    If I've understood your problem correctly, you can increase the load frequency as Sriee has pointed out.
    If you want latest data frequently and if you are on BI 7.0 then you can look at Real Time Data Acquisition(RDA)
    Regards,
    Tom.

  • Specified Data Mining Server in not Comptiable 10.1.0.2.0

    hi
    I have a Oracle Data Minier Oracle Data Miner 10.2.0.3.1
    and a Oracle Data Base10g ( 10.1.0.2.0 )
    I have Configure Oralce Data Mining according to the DOC
    But Now I am Connect to Database usining my Data Miner the Error Meessage Come "Specified Data Mining Server in not Comptiable 10.1.0.2.0"
    That is My Oracle Data Miner is Not Comptiable with my Data Base..
    How can I resovl this Problem..?
    Any One pls Help me..
    Thanks ..
    Tamim

    I think you need to use ODMr 10.1.0.2 to connect to 10.1.0.2 database. You can dowload the same at http://www.oracle.com/technology/products/bi/odm/odminer.html
    -Sunil

  • OPC Server does not update data value

    Hello,
    I have a problem with a program that uses an OPC server to comunicate with a PLC.
    It happens randomly, when I update the data, i cannot see any patern, sometimes it happens quickly, sometimes it takes longer...
    The data socket is declared like that:
    hr = DS_OpenEx ("psp://localhost/Server/Automate.405466", DSConst_WriteAutoUpdate, NULL, NULL, DSConst_EventModel, TIMEOUT_OPC_mSEC, &ecr_MW5465);
    And is update like this:
    hr = DS_SetDataValue(ecr_MW5465, CAVT_SHORT, l_buf, 1, 0);
    The function does not return any error, but the value is not updated server side.
    Lookout version is 6.6, the program is made with CVI 8.5.1 and communication is in ethernet modbus. I do not know if further details could be useful.
    Thank you.

    Fred,
    Can you read the value being updated directly from the OPC server?  Usually you can just view the values and see if they are updating. 
    The next thing to check would be to use the shared variable monitor to see if the variables that are bound to the OPC server are updating.  It is under Tools >> Shared Variable >> Variable Manager. 
    Also, when you have the program running, do you get any type of error from reading the shared variable?  If you are seeing an error, it would give us a little more insight into what is going on.
    Brian Coalson
    Software Engineer
    National Instruments

  • EALink Data Synchronization Server cannot be updated

    Hello,
    we are using EALink to download an HFM model to Essbase.
    Even all lights are green on the EALink bridge and the outline is downloaded and created as expected, data is not loaded into Essbase database.
    When we click on update metadata we get the following error:
    [2013-jun-21 17:27:52] Essbase database is successfully created
    [2013-jun-21 17:28:21] Data Synchronization Server data cannot be updated: Analytics Link cannot communicate with Financial Management or Analytics Link Connector for Financial Management
    [2013-jun-21 17:28:23] Metadata is successfully extracted from Financial Management
    I've taken a look to logs and cannot see anything wrong.
    Could anyone help us with this? Any help will be appreciated.
    Best regards,
    Abel.

    See this previous discussion;
    https://discussions.apple.com/message/12341443#12341443

  • Last Logon date and Logon time not updating in table USR02

    Hi,
    Please help us on this. After customer successfully logged in the webshop, we are checking the table USR02 in CRM system and the Logon date and Logon time is not updated. Because of this, the customer will be locked after certain number of days. When we check it in ECC system, customer's last logon date and time is updated. Can you tell us what could be causing this? Any advise what we need to check? Thanks in advance!
    Regards,
    Mike

    Hi
    1. Please check if the USAPPLREF table in ECC has the correct mapping done between the LOGON User and the Sold-to party (Customer)
    2. Please check the validity of those user in SU01 user data.
    3. Please check the USERS data from the USERADMIN Link (if it is configured in your scenario through XCM settings for USERS)
    Hope this will help.
    Regards

  • Group membership on AD-bound server is not updating correctly

    I have a 10.6.4 server that is bound to AD with Win2008 domain controllers. I am seeing group membership not update properly on this OS X server. If I type "id -p username" I don't get a full list of groups the user is a member of. If I launch Workgroup Manager, all of the groups are listed. I am using the box as a Subversion server and need the group updates to propagate from AD for Apache authentication to work correctly. Any ideas as to why the propagation is not happening? Is there a way I can flush whatever cache might be causing an issue? Can the group membership list be "refreshed"?

    Yes, we are using Initialization Blocks to update the User Groups. Our USER_PERMISSION table has Login, Company_ID, Roles, etc columns in it. The Initialization Block will query on this Table and the query has a where clause in it and the Where clause "where company_id=(select substr(':USER', 0, (instr(':USER', '.')) - 1) from dual) and upper(login)=upper((select substr(':USER', (instr(':USER', '.')) + 1) from dual))) and dw_delete_date is null" from which it will get the roles for each user. And YES, the Caching is turned off for this initialization block.
    And I should try deleting the user folders, but my company has a very strict policy so I should do that in DEv, then QA and in PRD. Hope this works, but I am still not convinced why this is happening. We cannot keep on deleting the user folders in future if this happens again.

  • Dates in Events do not update automatically

    After iPhoto made events out of my photo library during conversion from from iPhoto06, there are often photos from several days in one "event". I can live with that most of the time, but in several instances I split events. Unfortunately, the dates of the original, unsplit event do not update automatically. This often results in a wrong order of events. If, e.g. I take out pictures from August 10th from an event with photo dates August 10th to August 13th, the original event still shows the starting date of August 10th, and orders the event between August 9th and August 11th.
    The expected behaviour would be that the starting date of the modified event would change automatically to reflect the changes. This does not occur, and, worse, there is not even a possibility to change those dates manually.
    Am I missing something important here, or is this an VERY annoying bug in iPhoto08?

    I agree - but this is a user forum and we can NOT fix anything - only try to help either follow the correct procedures of (as in this case) identify a work around to use until Apple fixes the problem.
    As far as I know the work around of creating a new event form one photo and moving the remaining photos to the new event is the ONLY way arround this problem right now.
    Using the work around will accomplish what you need even though it should not be necessary. Complaining about on this forum will not accomplish anything - compalining directly to Apple might -- iPhoto menu ==> Provide iPhoto Feedback.
    Larry Nebel
    PS - and reading the thread prior to get the work around prior to adding "I have the same problem" would actually be a pretty good idea too!

  • Message server information not updated for SIDs in SMSY

    How do I get the message server information updated for systems in SMSY?
    I moved a system from one server to another but the information is not updating for the Java stack. The informatoin was updated successfully for the ABAP, but not the Java side. I've reviewed the SLD information and everything there is correct.
    In change mode the information is greyed out, so it's updated automatically somewhere.
    Thanks for any help.
    Ryan

    Hi Ryan,
             What's your solution manager version?
             Have you taken a look into this note?
             ->     1301106 SMSY: Enhancements and errors in Enhancement Package 1
            Within this note you will find another list of related notes that may fix your issue.
            Please take a look as there are many notes reporting similar issues, like:
           1298517   SMSY: Server of SCS instance not known in SMSY
           1273095   SMSY: Incorrect database server (Java)
    Regards,
    Daniel.

  • Last Skipped Date, Skip count, are not updated in any songs that i listen in my iPhone5s

    I've been using smart playlist that's relays on the play count, last skipped date and skipped count fields... I have been using an old ipod to heard my music through this smart playlist that live updates all the time and it was working great.
    So my issue is, since i bought a new iPhone 5S and start using it to listen music, my smart playlist that relays on " play count, last skipped date, skipped count " fields are not updating, and when i connect my iphone to the PC i realize that those fields never update after i play or skip any song in my iPhone.
    So, I'm not sure if this is an iPhone restriction, that i need to use my iPod again to get my smart playlist that relys on those fields to work... or my iphone is defective and need to re-install the iOS.
    Any help on this matter will be enormously appreciated
    Thanks in advance

    I have playlists that rely on the Last Skipped and
    Skip Count properties of songs, but these items only
    seem to be triggered if the song is fast forwarded
    between 3-20 seconds into the song. I tried to skip
    I think this is how it's intended, though there isn't much info on this feature. I've seen the same behavior and other users have reported same.
    One thing that threw me off for a bit using this feature was trying to use with playlists where the songs had "remember playback position" checked. Last skipped doesn't register at all with these tracks.

  • When Adjusting PowerPivot Data Source it's not updating "Connection String" In Workbook

    When going into an existing PowerPivot that already has a data connection to a MySQL database, I am having issues when trying to edit that data connection. Within the PowerPivot>Manage window, here is what my connection string looks like.
    It successfully connects and I am able to refresh the data. My issue is, why when going to the Data>Connections>Custom>Properties>Definition area --- Why is the connection string not updating here? It's the same connection string from before
    I modified it in the powerpivot manage window. I need it to be updated to my new connection string credentials. Here is window I'm talking about.
    Any help is greatly appreciated!!!! Thank you!

    Tim, are you still trying to get this figured out?
    Thanks!
    Ed Price, Azure & Power BI Customer Program Manager (Blog,
    Small Basic,
    Wiki Ninjas,
    Wiki)
    Answer an interesting question?
    Create a wiki article about it!

  • Configuration data on sales order not update with idoc ORDERS05

    Hi All,
    I'm trying to post Inbound ORDERS05 to create a sales order with configuration data. In particular i'm using the messsage type ORDERS, process code J3AA (identification J_4A_IDOC_INPUT_ORDERS).
    On the IDOC tree, segments E1CUREF,E1CUCFG,E1CUINS,E1CUVAL are correctly valorized.
    It is creating the order but not updating the configuration data, can someone please let me know if there are other fields/Segments that need to be populated in order to get the config updated in the sales order ?
    Thanks
    Piergiorgio

    Hi ,
    I am facing similar issue ( Configuring data in orders idoc )
    Please give  your inputs if your successfully
    Thanks,
    Raghu..

  • Database in Reporting Server is not updating MSP_EpmResourceByDay_UserView

    Hi,
    I am using Project Server 2010. I have a report that gets some data from the table "MSP_EpmResourceByDay_UserView" in Reporting DB of Project Server. The report was not showing updated data so i checked the DB and
    found that this database has no values after April 30, 2013. Can anyone tell me why this is happening and how to fix it?
    Thanks in advance.
    _________ Fahad Ahmed Khan .NET Articles, Web Development, SharePoint and Project Server Custom Solution Provider

    Hello,
    Does your Resource Capacity job (Reporting (Resources Capacity Range Sync)) still run successfully each day? What settings do you have set on this? This is set on the Additional Server Settings in the Resource Capacity Settings section (PWA Server
    Setting > Additional Server Settings). How many months ahead and month behind have you got set?
    If the job is not running, change the scheduled time for the job by 5 minutes or so on the Additional Server Settings page then wait for that time to pass and check the queue for the successful job. Once the job is successful that view should contain data
    for the time range set (months behind / ahead).
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Installed new Mountain Lion now Date and time do not update

    Hi,
    I have a new Macbook pro bought June 2011 and find that using Safari and playing a Flash Movie it will glitch the movie stallas and will nor play correctly.
    I see Kernel tasks are at 700 Mem and CPU at aaround 7%.
    So i reinstall a new downloaded system from Apple Mountain Lion.
    Stiil kernel Taskc are at 3 to 5% and and mem at 650meg
    I still get the glitches in the new Safari and now i see the Date and time shows but is frozen till i click in the data and time in the upper right hand corner of the screen it will then Upate the time.
    What is the problem here a clean install i see permissions have many errors after a clean install and will not fi, with disk utillities
    any help here please
    Thanks for any time given

    wersix wrote:
    How do I remove these? Do I just delete the folders using Finder? I'm new to Mac OS X.
    I'm seeing a number of posts about network printing problems after upgrading to Mountain Lion. I'm guessing the problem is something other than the drivers themselves.
    I sure appreciate your willingness to help me out with this!
    Yes, just delete the folders.
    There could be other problems, not driver-related, but updating to the most recent drivers will at least eliminate that possibility.
    Happy to try to help.

  • Validity End Date for A012 relation not updated

    Hi All,
    I am working on SRM5.0 and the HR org structure is replicated from ECC to SRM via idocs. Now, for one particular user, who holds position in 2 org units, the HRP1001 table data is incorrect.
    For one of the relations A012 between S-O, the end date shown is in the past. I checked the ECC tables for this employee and the A012 relation is valid till 31/12/9999. But, in the SRM system, this date does not get updated.
    Due to this employee is not shown as an approver for that particular org unit.
    Does anyone know how I can update this date?
    Regards,
    Ancy

    One of the Org unit is under the other org unit. So, I updated the position with the relation to the higher org unit only. So in the SRM system, by default, the supervisor for this org unit is the supervisor for the lower org unit too, unless there is a new supervisor for the lower org unit.

Maybe you are looking for

  • 2  Spider diagrams, only one displayed in Crystal Reports Viewer 2008

    Hi, I have two Spider diagrams in the report. One shows values for this and another for previous year. The second diagram is placed on top of the first. The diagram below has white background and the diagram above has transparent background. Everythi

  • LaCie 120Gb external hard drive no longer recognized

    I've had a LaCie 120Gb external hard drive working independently off a firewire cable for a couple of months now. This morning it stopped being picked up as an external drive. It connects because you can feel it whirring, and stops when the computer

  • Need to find the SID of a forms session.

    Hi, I need to find the SID of a form session. How to find the same. Eg:- If a user connected to our EBS system, Then automatically one sid will be generated to that user. I need to find the SID for this user. If given detailed steps it would be great

  • Down Payment Assets

    Hi Friends, Can some one tell me teh steps for configuring - Down Payment Assets. Regards Ashok Prabhu

  • Does iPhoto flip images horizontally or is it my camera?

    As a Serious stamp collector, I am trying to scan all of my collection into iPhoto. (Only because there is NO dedicated software for the Stamp Collector). Problem is that images are flipped (Reversed) horizontally. Rotate will only turn the image ups