Help to use GenericSync and SmartSync

Hi All,
I developing a application that it will use together SmartSync and GenericSync, this is correct? Can I use GenericSync and SmartSync on the same application?
Regards Thanks.
Eduardo<u></u>

Hi Eduardo Please refer to this Link:
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/cc489997-0901-0010-b3a3-c27a7208e20a#q-9-2">Link</a>
This is the SAP Mobile FAQ, in the link you will see this:
<b>Can I control the type of synchronization (generic sync or smart sync) within one mobile application, i.e. one data container is synchronized with generic sync and another data container smart sync?</b>
Generic Sync and Smart Sync are technically two separate API and by choosing either of these, the application is hence either using Generic Sync or Smart Sync. Technically it is possible to have both generic sync and smart sync in a single application. However generic sync is advised only for very simple data exchange scenarios. For complex scenarios, smart sync is encouraged. On a data transport level though, both generic sync and smart sync use data containers for transport from client to WebAS.
If it was useful, remenber of the points
Best Regards,
Erick Ilarraza
Message was edited by:
        Erick Ilarraza

Similar Messages

  • Help needed using content and structure functionality

    Several times now I have had users who wanted to move libraries or lists, etc. from one place within a site collection to another.
    The problem is that often, when they go into content and structure, select their source, the only action that appears is Delete, rather than also the copy or move functionality.
    Even when I connect to the farm with the farm account, I see the same issue - the copy and move actions are greyed out. The farm account is one of the site collection owners, as well as of course in the farm admin group.
    Are there certain types of things which cannot be copied or moved? One user is just trying to move a folder of files from a document library to a different location (from working to completed), while another user wants to move most of the files from an old
    project to a new project.
    I am having a tough time understanding why sometimes this works and sometimes it doesn't.

    Thank you for your answer. The user did try to use the windows explorer method, and got an error saying that the operation could not find the source.
    I appreciate the note about moving the files individually. I have suggested that.
    I also appreciate the caution about using move not copy if the versions are needed.
    In one case we have a user who is trying to consolidate 2 different sharepoint sites into 1 site.
    She has asked about moving one into the other.
    I presume that any moving that takes place will overwrite an object of the same name that exists on the other side? Or is there a prompt to the user before the overwrite takes place?
    Thank you so much for your help.

  • HELP, I USED LINUX AND NOW MY IPOD NANO IS MESSED UP!!

    I downloaded Linux for my Nano, but now I can do anything, all I get is a folder with a "!" on the folder, please help!

    I think I figured out how to put your Ipod back into working condition, to the way you received, sort of in a "like new state" if you will. What I have just found on the Ipod linux forums is very easy, in fact alot easier than I thought, you would of had to use the HP disk format utility, but all you have to do is go ahead and use apple's firmware for the ipod, in case you don't know what that is, it's the software that apple releases which is basically in a pc user's words "the BIOS that controls your Ipod functions, such as backlight brightness, font type, etc. It's basically the Operating System". That's to put it into a easy understandable way. If all you are seeing on your nano is just an exclamtion point then you are in luck, all you do is restore your Ipod using the Apple Ipod updater, that is if your pc can detect your Ipod. Which I think if it didn't you would have posted that. So there you have it, your Ipod should be running as it once did, before a failed linux installation.

  • HELP: Problem using AS3 and CF-Flash Remoting CFC

    I am trying to use CF flash remoting from an AS3 Class using
    the NetConnection class. The approach I am using is directly from
    "ActionScript 3.0 Cookbook" by Joey Lott et. al.
    I am using a totally standard default install of CF, Flex and
    SQL server on Windows 2003 R2.
    When I do a CF Flash remoting call using,
    _netConnection = new NetConnection();
    _netConnection.connect('
    http://pordev2.wcrt.xeroxlabs.com:8500/flashservices/gateway/');
    _netResponder = new Responder(onGotData, onGotError);
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest);
    all seems OK. The CFC returns the integer and string just
    fine.
    HOWEVER, when I also add an associative array, "aa", to the
    string of arguments, I get an error...
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest, aa);
    returns the error: "Unknown object type tag (17)"
    The same error is also returned if "aa" is an XML variable
    instead of an associative array.
    So:
    a) Is this a bug?
    b) Is there an AS3 specific gateway I should have referenced?
    c) Is Flash Remoting not yet supported in AS3?
    Thanks you for your time,
    Ned
    =================================================================
    Here is my test code:
    <cfcomponent displayname="ProjValuationRemote"
    hint="Returns an array of Project Header, Valuation and supporting
    data recordsets">
    <cffunction access="remote" name="getProjValuationData"
    output="false" returntype="String">
    <cfargument name="test1" type="numeric" required="no"
    default=1>
    <cfargument name="test2" type="string" required="no"
    default = "a default string">
    <cfargument name="AA" type="Struct" required="no">
    <cfset testReturn = #test2# & ": TESTING -- This is
    the return integer: " & #test1#>
    <cfreturn testReturn>
    </cffunction>
    </cfcomponent>
    public function requestVRD():void {
    var strtest:String = "Simple test string";
    var aa:Object = new Object();
    aa.curDataSet = 86;
    aa.curYear = 2007;
    _netConnection = new NetConnection();
    _netConnection.connect('
    http://pordev2.wcrt.xeroxlabs.com:8500/flashservices/gateway/');
    _netResponder = new Responder(onGotData, onGotError);
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest);
    private function onGotData(re:String):void {
    // arVRD = re;
    trace(re);
    returnString = re;
    trace("got remote data response");
    private function onGotError(error:Object):void {
    trace("Executing the gotProjectData_Fault: " +
    error.description);
    trace("Executing the gotProjectData_Fault -- no detail");
    // setErrorAlert();
    This works as expected producing the following trace:
    Simple test string: TESTING -- This is the return integer: 1
    Replacing the remote with the following, which adds an array
    to the parameter list...
    _netConnection.call("porTechDB.PorComponents.ProjValuationRemote.getProjValuationData",
    _netResponder, 1, strtest, aa);
    Produces the following error:
    Executing the gotProjectData_Fault: Unknown object type tag
    (17)

    I didn't think so,
    We are putting together ads with alot of images with that 40k limit
    so the images don't look great.
    I was trying to find the best way to work with the images, while keeping it as simple as possible.
    Oh.... your right I was hoping to slowly introduce my associates into AS3, I thought If this could be done
    It woud be a great tool to introduce them to, but no
    Thank you for your time and feedback

  • Need help with using occi and vc++ 2005 (express edition)

    Hi to all!
    I'm new here.
    I wan't to write a dll with connects over occi to oracle, but i don't know how!
    Did have anyone a good tutorial from beginning? Or a project for vc++ 2005?
    Thanks!
    Mike

    For building OCCI applications with VC++ 2005, you need to get the appropriate OCCI libraries from :-
    http://www.oracle.com/technology/tech/oci/occi/occidownloads.html
    OCCI samples, training materials and documentation is available from the OCCI homepage :-
    http://www.oracle.com/technology/tech/oci/occi/index.html
    Regards,
    Shankar

  • Javafx use jmf and capture audio device

    Hello, I noticed a problem with the use JavaFX and Java Media Framework (JMF), in a project javafx call Java classes using JMF, but are not recognized PC audio devices, in fact when I executed 's the code CaptureDeviceManager.getDeviceList (null), displays the error: "could not commit protocolPRefixList", without recognizing any audio device. Instead I call if my application using JMF, outside of a JavaFX project, the devices are found and everything works properly, perhaps this problem depends on the security settings of JavaFX, or inability to use JavaFX is that jmf interfaces with audio and video devices?
    thanks for the help

    I'd use jmf and javafx but it was not for capture devices.
    If you use jmf there are native libraries.
    The thing i found was about the java.library.path wich is overriden when you start javafx that jmf can't load approriate libs.
    Try to compare the System.getProperties for java and javafx then you should find where is the problem.

  • Creating a help interface using HTML/XML for text data.

    Hi,
    I'm currently building an application which has need of a help feature. I plan to have this either in an individual/internal frame or in a seperate browser window. My question is this:
    1. Can I open a browser window without losing my OS independence?
    2. Is there a swing component that displays a HTML file from the source file, or is my only option to get an XML file, run it through SAX and display it that way?
    Note: I'm already using an XML parser as part of this project, so using it for a help file would be no big problem. I'm just trying to find a (quick) workaround. Not that I like cutting corners.
    Any comments on this are welcome, no matter how small.
    Thanks for your time.

    In answer to 1. -> No you can't open a browser window without using the underlying OS mechanism...you could however encapsulate the OS mechanisms in a separate class/package so that your core app doesn't have to know...
    In answer to 2. -> Danger Will Robinson!!! Yes you can use the JEditorPane, but to be fair, it's c**p, and when you release the system your Users will whine endlessly about why they can't open their help files in their usual browser (this is especially true if they are coded in HTML). I know this because I wrote a help application using HTML and had Users and the marketing department complain at me endlessly. Also, the HTMLEditorKit in Swing seems to have a number of strange handling of img paths, at least in 1.3 it did...this caused me all sorts of problems...
    The usual way to get around this kind of thing is to open up a file browser, get the User to pick their favourite browser application (usually the .exe on Windows or the script on Unix) and then remember it, when it comes to opening the help file just use Runtime.getRuntime ().exec ("userBrowserLocation pathToHelpFile"). Of course this has the trouble that you can't package the help file in a jar or zip, but in general Users want to have control over HTML files...and Users usually have a fanatical desire to use their favourite browser to view them in...
    Just a thought...

  • TS1506 I just updated my IOS to 7.1 and now I can't open Microsoft attachments - I used to always do it. Help - I use my iPad for work and now can't see any attachments.

    I just updated my IOS to 7.1 and now I can't open Microsoft attachments - I used to always do it. Help - I use my iPad for work and now can't see any attachments. I've tried opening straight into other apps and just get error messages, and I the mail preview there is just a grey screen telling me the file name and size. It worked fine until I did the IOS upgrade

    Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Delete the app and redownload.
    Downloading Past Purchases from the iTunes Store, App Store and iBooks Store
    http://support.apple.com/kb/ht2519
     Cheers, Tom 

  • Help. Trying use imessage and keep getting an error message that says the person is not registered with imessage

    I am trying to use imessage and everyone I am trying to send to I keep getting a message that they are not registered with imessage. They all have iphones and I know for a fact they are all registered. I have tried all the trouble shooting steps I have found so far. I made sure my imessage is turned on and set under my apple id and email, I'm connected to wifi. etc... I can use facetime but can not message anyone. Thanks in advance for you help

    Hi, reagans3.
    Thank you for visiting Apple Support Communities.
    I see you are experiencing issues with iMessage.  I am not sure what troubleshooting steps that you have processed; however, there are some additional steps in the article below that may help.
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Cheers,
    Jason H.

  • Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    Hi, i'm new using numbers, and when I try to open a excel file don't let me do it, instead appears a box whit a error and close app,  any help?

    What does the error say?
    A couple of thoughts: the file is corrupted or is password-protected. Corruption is more likely to cause Numbers to crash & Numbers cannot open password-protected Excel files. Try using one of the free Office clones & see what happens.

  • HT1692 Have recently installed itunes and outlook on a new computer.  Have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, Help!

    My new computer is 64-bit running Windows 7 pro, SP1 and Microsoft Office 2010 Pro Plus 32-bit
    My phone is a 4S runing iOS 6.1.3
    Very frustrated now that I have recently installed itunes and outlook on this new computer.  Everything worked perfectly ok on my laptop which was also 64-bit Windows 7 and running 32-bit Microsoft Office 2010 Pro.  I have multiple email accounts set up in Outlook tho only use contacts and calendar in relation to one of these. Cannot sync itunes with the correct contacts and calendars, when I sync the calendar and contacts are empty.  Not sure if there is any way to point itunes to particular address books and calendars.
    I have installed and uninstalled itunes 3 times and thank goodness have a backup
    Can anyone help please?
    thanks in anticipation

    I had my home computer set up to sync to work's Exchange server. It worked well, but I didn't like seeing work email messages and other programs trying to sync with my default Outlook folder, which was then the Exchange (& work related) .ost file. I know there are various ways to manage those problems using filters, view, subfolders, etc., but it was a hassle for me. I think it could work well for many other folks.
    For now, I have published my work calendar and subscribed to that calendar on my home computer. So I have view only access to my calendar on my home computer (and I can add/edit calendar items on my iPad (or Outlook Web Access) when away from work). This is not quite what I wanted, but it may work.
    It almost makes me long for the days when I used my Windows Mobile Treo to sync back and forth between exchange at work and outlook at home (but had many sync conflicts as a result).

  • HT4527 I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help a

    I am trying to transfer music files from one PC to another using homeshare and although I can view the music as a shared folder I cannot initiate the "import" process.  I have iTunes 11.0.1.12 on both computers so the help screenshots do not help as such

    Then stop trying to use HomeShare and use one of the other options listed in the document from which your question was posted.

  • HT1222 I bought used iPhone and on this iPhone I'm not able to make new account  on i Cloud'.  How can I use this iCloud's on used iPhone   Please help me

    I bought used iPhone and on this iPhone I'm not able to make new account  on i Cloud'.  How can I use this iCloud's on used iPhone   Please help me
    When I logging there it told me that maximum no of iCloud's Account already activated on this iPhone.
    Please help me how can I open new iCloud's account on this iPhone
    Regard
    Faiz khan

    Set up the account using a desktop or laptop, then sign
    into that account on your iPhone.
    I am not aware of any method around the restriction once
    the maximum has been created on any individual iPhne.

  • I could use some help with my html5 and my video

    Hello all.
    I've been reading up and working on my video issue for days.  I feel like I'm very close.  ANY help would be huge.
    I've got two websites.  Both of which have videos which my clients wants to be about to see on his mac, his PC and his iPhone and iPad.  He's a multi-platform guy living in a multi-platform world.
    The first website, has two videos on it.
    http://www.ftworthfoundation.com/index2.html
    It is very close to working... I can view all videos locally on safari and firefox.
    However remotely I cannot see any videos with firefox.
    Remotely- I can see all videos with Safari and IE and 1 video on the homepage with my iPhone.  My first thought on this was that the video which wouldn't play was too large.  I read somewhere that the iPHone will not load anything over 20MB... the .m4v was 33MB so I cut it down to about a 3rd of the size and re uploaded it (at 6.6MB) but it will still not play on my iPhone
    here is my code for the videos.  The video is formatted in .ogg, .mp4, .m4v and .flv... all videos are uploaded to the root directory.
    <div id=Video1>
         <video controls width=448>
            <source src="excel_Construction_Commercial.ogg" type="video/ogg" />
            <source src="excel_Construction_Commercial2.mp4" type="video/mp4" /> 
                <source src="excel_Construction_Commercial.m4v" type="video/m4v" />
            <embed src="excel_construction_commercial.flv" type="application/x-shockwave-flash" width="448" height="249" allowscriptaccess="always" allowfullscreeen="true"></embed>
        </video>
        </div>
          <div id="VideoPlayer">
            <video controls width="448"> 
                <source src="Foundation_Repair.ogg" type="video/ogg" />
    <source src="Foundation_Repair.mp4" type="video/mp4" /> 
                <source src="Foundation_Repair.m4v" type="video/m4v" />
              <embed src="Foundation_Repair.flv" type="application/x-shockwave-flash" width=448 height="249" allowscriptaccess="always" allowfullscreeen="true"></embed>
            </video>
            </div>
    If anyone can help me on this I can probably tackle the 2nd website solo.
    Thanks guys.
    -D

    Hi David.
    Thanks for the reply.  I am definitely moving the right direction.
    I have changed my extensions but the video will still not play remotely.  It does play locally.
    Here is my new code
      <video controls width="448">
                <source src="Remodeling.mp4" type="video/mp4">
                <source src="Remodeling.ogv" width="448" height="298" type='video/ogg; codecs="theora, vorbis"'>
                <source src="Remodeling.m4v" type="video/m4v">
                <embed src="Remodeling.flv" type=application/x-shockwave-flash wIDth="448" HeIGHT=249 alloWScRIPTACCESs="always" aLLOwfUllSCREeN=true></EmbEd>
                </div>
    I'm thinking I have a MIME type issue as I read this article online.
    Here is a link
    http://diveintohtml5.org/video.html
    It's a great website for anyone looking to understand how to create and export video to html5.
    Anyway here is the section of article I'm interested in.
    What’s the proper MIME type? You’ve already seen it; it’s part of the value of the type attribute on a <source> element. But setting thetype attribute in your HTML markup is not sufficient. You also need to ensure that your web server includes the proper MIME type in the Content-Type HTTP header.
    If you’re using the Apache web server or some derivative of Apache, you can use an AddType directive in your site-wide httpd.confor in an .htaccess file in the directory where you store your video files. (If you use some other web server, consult your server’s documentation on how to set the Content-Type HTTP header for specific file types.)
    Can anyone tell me how to change my MIME type? I can see my .htaccess.html file and I tried adding in
    AddType video/ogg .ogv
    AddType video/mp4 .mp4
    AddType video/webm .webm
    But the server will not let me upload the new .htaccess file.  So I cannot change it.
    I'm using GoDaddy and have complete admin rights rights as far as I can tell.
    Again.  Any help is greatly appreciated.

  • I am trying to use imovie and i have never had this problem before. All of my videos are completly grey and when you try and play them all i get is a black screen but i still hear audio.  Can you please help and tell me what i need to do. Thank you

    I am trying to use imovie and i have never had this problem before. All of my videos are completly grey and when you try and play them all i get is a black screen but i still hear audio.  Can you please help and tell me what i need to do. Thank you

    Make sure all of the videos used in the project that is having that problem are from the same event. If they are from multiple events, move them all into one event.

Maybe you are looking for