Updating New Year, Feasability of Importing Data

Hi,
         1. What is the System of updating the Financial Year in SAP B1.
         2. Is there any Feasibility for Importing Data of Opening Balance .
         3. Which are key Factors are to be considered to pick up the data at time  
             of Importing Data.
Regards
P.Narender

1. What is the System of updating the Financial Year in SAP B1.
I do not quite understand this question. Are you talking about Creating Financial Periods or Year End or What ???
2. Is there any Feasibility for Importing Data of Opening Balance .
<b>Opening Balances can be imported using DTW templates.</b>
3. Which are key Factors are to be considered to pick up the data at time
of Importing Data.
Importing data into SAP is a major task in the Implementation process.
The volume and types of data to be imported have to determined first and time estimated for them so that you can plan in advance and get the data from yur client on time and then convert them to SAP.
Please let me know if you have specific question towards the project and I would be more than happy to help you
Suda

Similar Messages

  • After last update "new photos" can`t import on the PC, because the iPhone don't appear anymore as a camera or new hardware. can anybody help me?

    before in Windows XP an window opened: "import camera assistent" (I don't know it exactely in english because I use the german version) every time I matched my iPhone with the PC and new photos or films are on it. But after the last softeware update in iTunes for the iPhone, no assistent opens. And no iPhone or camera appear as a hardware on the PC...I can't open the folders or copy the photos by myself. For me, it's not logical, why a software update is the reason for "disappearing" the iphome from my PC....
    Please help me, there a a lot of nice videos from my baby on the iPhone and I can't save it on the PC or CD or....
    Thank you!

    Try to revert the steps mentioned in this article to get the camera notification again:
    iOS: Disabling digital camera notification in Windows
    Also check this article again:
    Copying personal photos and videos from iPhone, iPad, or iPod touch to your computer
    Message was edited by: Ingo2711

  • I had itunes years ago but the email address associated with this is not longer in use. Is there anyway to updating and transferring all music and data to a new email address?

    I had itunes years ago but the email address associated with this is not longer in use. Is there anyway to updating and transferring all music and data to a new email address?

    Hello Graceevelyn23,
    Thanks for the question, and welcome to Apple Support Communities. You can update the primary email address that is used for your Apple ID:
    Apple ID: Changing the email address you use for your Apple ID
    http://support.apple.com/kb/HT5621
    Thanks,
    Matt M.

  • Importing data pump data into a new db or tablespace

    As part of my development db logical backup strategy, I export data in the database to a dump file using expdp (I export data_only).
    The main reason I export data to a file is to restore data after some human error. Suppose a developer updates every field in a table and sets them all to null (this happened at the beginning of the year), we can just import the data into a new db/tablespace, extract the data of interest and delete the database/tablespace.
    Is it possible to create a second database (or preferable just a new tablespace) to load the data in the dump file?
    PS. The version of Oracle we have doesn't have the FLASHBACK TABLE or FLASHBACK DATABASE feature, and we wouldn't want to stop the test database just to use the RECOVER command.
    Thanks in advance

    You could create a schema called RESTORE, and then use the FROMUSER / TOUSER syntax in the impdp command, leaving your existing stuff intact.
    You can also replace data in existing entire schemas using the FROMUSER=hr TOUSER=hr with TABLE_EXISTS_ACTION=TRUNCATE with CONTENT=DATA_ONLY.
    -Chuck

  • How to change the year in a range of column dates to the new year?

    How to change the year in a range of column dates to the new year?

    Depends on the pattern of the dates. The last procedure will work for any pattern, or no pattern at all.
    For examples.the dates are assumed to be in column A, starting at A2
    Sequential dates?
    Enter first updated date in the first cell.
    Enter =A2+1 in cell A3. Copy the cell.
    Select A3 to the end of the list. Paste.
    With the cells still selected, Copy, then go Edit > Paste Values.
    Evenly spaced dates?
    Same procedure as above, but replace +1 in the formula with + and the number of days between dates in the list.
    Randomly spaced dates?
    Select cell B2. Press option-left arrow to insert a (temporary) column to the left of column B.
    Click on the empty cell B2 in the new column. Enter the formula below:
    =DATE(YEAR(A)+1,MONTH(A),DAY(A))
    Copy the cell, then select B2 - Bn where n is the last ow containing a date to be converted. Paste,
    With the cells still selected, Copy.
    Click on A2, then go Edit > Paste values.
    Click on the column B reference tab to select all of column B.
    Hover the mouse over the right end of the reference tab, and click the black triangle when it appears.
    Choose Delete Column from the menu that appears.
    Regards,
    Barry

  • How to update link and import data of relocated incx file into inca file?

    Subject : <br />how to update link and import data of relocated incx file into inca file.?<br />The incx file was originally part of the inca file and it has been relocated.<br />-------------------<br /><br />Hello All,<br /><br />I am working on InDesignCS2 and InCopyCS2.<br />From indesign I am creating an assignment file as well as incopy files.(.inca and .incx file created through exporing).<br />Now indesign hardcodes the path of the incx files in inca file.So if I put the incx files in different folder then after opening the inca file in InCopy , I am getting the alert stating that " The document doesn't consists of any incopy story" and all the linked story will flag a red question mark icon.<br />So I tried to recreate and update the links.<br />Below is my code for that<br /><br />//code start*****************************<br />//creating kDataLinkHelperBoss<br />InterfacePtr<IDataLinkHelper> dataLinkHelper(static_cast<IDataLinkHelper*><br />(CreateObject2<IDataLinkHelper>(kDataLinkHelperBoss)));<br /><br />/**<br />The newFileToBeLinkedPath is the path of the incx file which is relocated.<br />And it was previously part of the inca file.<br />eg. earlier it was c:\\test.incx now it is d:\\test.incx<br />*/<br />IDFile newIDFileToBeLinked(newFileToBeLinkedPath);<br /><br />//create the datelink<br />IDataLink * dlk = dataLinkHelper->CreateDataLink(newIDFileToBeLinked);<br /><br />NameInfo name;<br />PMString type;<br />uint32 fileType;<br /><br />dlk->GetNameInfo(&name,&type,&fileType);<br /><br />//relink the story     <br />InterfacePtr<ICommand> relinkCmd(CmdUtils::CreateCommand(kRestoreLinkCmdBoss)); <br /><br />InterfacePtr<IRestoreLinkCmdData> relinkCmdData(relinkCmd, IID_IRESTORELINKCMDDATA);<br /><br />relinkCmdData->Set(database, dataLinkUID, &name, &type, fileType, IDataLink::kLinkNormal); <br /><br />ErrorCode err = CmdUtils::ProcessCommand(relinkCmd); <br /><br />//Update the link now                         <br />InterfacePtr<IUpdateLink> updateLink(dataLinkHelper, UseDefaultIID()); <br />UID newLinkUID; <br />err = updateLink->DoUpdateLink(dl, &newLinkUID, kFullUI); <br />//code end*********************<br /><br />I am able to create the proper link.But the data which is there in the incx file is not getting imported in the linked story.But if I modify the newlinked story from the inca file,the incx file will be getting update.(all its previous content will be deleted.)<br />I tried using <br />Utils<IInCopyWorkflow>()->ImportStory()<br /> ,But its import the incx file in xml format.<br /><br />What is the solution of this then?<br />Kindly help me as I am terribly stuck since last few days.<br /><br />Thanks and Regards,<br />Yopangjo

    >
    I can say that anybody with
    no experience could easily do an export/import in
    MSSQLServer 2000.
    Anybody with no experience should not mess up my Oracle Databases !

  • I had to create a new profile in Firefox and now, I can't access important data such as bookmarks which I desperately need.

    After two days of not being able to open Firefox, I found an article on this website which suggested that I create a new profile. I followed the instructions (which never stated that I should first backup Firefox or my old profile) After creating the new profile, Firefox is once again working fine but, I am unable to access important data such as bookmarks and history.
    I have followed several suggestion on this website but, I am still unable to find my old profile content.

    As long as you did not uninstall Firefox and remove personal data, your old profile still should be in the same location. Depending on how messed up it was, here are two options:
    '''(1) Use the profile manager to start Firefox up in your old profile and create a fresh bookmarks backup.''' If it didn't run, this won't be useful.
    To start in a different profile, Exit out of Firefox and start it up from the Start menu, search box, using
    firefox.exe -P
    Your old profile may have a name like default.
    Then you can create a fresh backup or export of your bookmarks (or both) to a neutral location (e.g., the Documents folder). These articles have the steps for creating these files:
    * [[Restore bookmarks from backup or move them to another computer]]
    * [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]] (note: does not preserve tags you have assigned to bookmarks, if any)
    Exit Firefox, use the profile manager to return to your new profile, then you can either restore the bookmark backup or import the HTML file. The difference is that a restore completely replaces whatever exists now, while an import adds to what you have now.
    * [[Restore bookmarks from backup or move them to another computer]]
    * [[Import Bookmarks from an HTML file]]
    Success?
    '''(2) Restore an old bookmark backup.''' Firefox creates these files regularly, but it might not be perfectly complete.
    To access the old files, I suggest starting from your current (new) profile folder. You can open that from within Firefox using either:
    * "3-bar" menu button > "?" button > Troubleshooting Information
    * (menu bar) Help > Troubleshooting Information
    * type or paste about:support in the address bar and press Enter
    In the first table on the page, click the "Show Folder" button. This should launch a new window showing your ''current'' settings files. Using the address bar of that window, click up to the Profiles folder level and then double-click into your old profile folder, then into its bookmarkbackups folder. Copy the latest backup file to a neutral location (such as your Documents folder).
    Back in Firefox, try to restore the older backup. Note: this will completely replace your bookmarks in this profile, so if you have saved new bookmarks you want to save, please perform the optional steps in the following list:
    * Optional (preserve new bookmarks): [[Export Firefox bookmarks to an HTML file to back up or transfer bookmarks]]
    * [[Restore bookmarks from backup or move them to another computer]] - use Choose File to go to your Documents folder to get the old backup
    * Optional (add new bookmarks to the restored set): [[Import Bookmarks from an HTML file]]
    Success?

  • I have updated my mac from snow leopard to mountain lion 3 days back. I had some important data in my library folder and it got overwritten. Is there any way i can get the data back from my snow leopard library folder?

    I have updated my mac from snow leopard to mountain lion 3 days back. I had some important data in my library folder and it got overwritten. Is there any way i can get the data back from my snow leopard library folder?
    I tried mackeeper to recover files but it could not. Any other way any one has tried to recover a system library folder after OS upgrade?

    No, it doesn't store a clone. You would have needed to make one with either SuperDuper or CarbonCopy Cloner.
    If the files were in your ~/Library folder then they may still be there. As I said, you can access it by
    going to your Finder "Go" menu hold the option key to choose "Library". I wouldn't think an upgrade would overwrite anything in ~/Library.
    If you have a Time Machine backup you may also be able to use that to retrieve them.

  • How do I import data from external hard drive onto new iMac?

    How do I import data from an external hard drive onto my new iMac?

    If you think about it logically if you want to move something from one place to another well do just exactly that
    Drag & Drop its as simple as that click on the file/folder keep it pressed down & move the file/folder to where you want it on your Mac
    If its photo's drag them onto the iPhoto icon on the dock if its music drag it onto the iTunes icon documents into guess what documents
    Hope this helps

  • I imported files from an external hard drive to Itunes on a new computer.  they imported & play fine, but the ratings & playlists are gone & i am unable to update any info.  I found a file name playlist on old drive & imported now most files are missing!

    I imported files from an external hard drive to Itunes on a new computer.  they imported & play fine, but the ratings & playlists are gone & i am unable to update any info.  I found a file name playlist on old drive & imported now most files are missing!  Help!

    Can you locate the iTunes Library.itl file on the old drive? Ideally you would have simply copied over the entire iTunes folder structure from <User's Music> on the old computer into <User's Music> on the new one to transfer the library will all playlists, ratings, play counts etc. intact.
    tt2

  • Real-time HDV importing ..& Happy New Year!

    Hi! Happy 2006!
    Some time in December (?) I said I'd been to the London Apple Store to try importing HDV - with a Sony FX-1 camcorder - into iMovie HD on a PowerMac, to see if it'd import in "real time" ..instead of importing at half or quarter speed, on my PowerBook and Mac mini, while it converts hi-definition footage into Apple's 'Intermediate Codec' (to make HDV MPEG footage editable).
    It couldn't be done in the hour and a half I was there, so an Apple Genius was going to get back to me.
    After a bit of complaining and cajoling, a Genius at 'The Studio' in the Store finally got back to me on Jan 3rd. [I'm now back home, so this is my first visit to Discussions for a while!]
    As I promised that I'd report back, here's what he said:
    "Today I imported HDV 1080i footage into iMovie using the Sony HDR-FX1 Camcorder using a Dual 2.7 G5 Power Mac with 4.5 Gb of Ram and there didn't appear to be any lag, it was realtime. I would recommend having as much memory as possible and having less than 4.5 might mean there is a transcoding lag as iMovie converts the HDC encoded footage using the Apple Intermediate Codec. I do not have any details what the minimum speed processor and memory requirements are to achieve realtime import, however it is hardware dependent.
    As another alternative you may consider using Final Cut Pro 5 software. This software uses the HDV Codec Natively and there is therefore no transcoding required. Capture is in realtime, whatever machine you use, so long as it is within the minimum requirements for Final Cut Pro 5. (Please check http://www.apple.com/finalcutstudio/finalcutpro/specs.html for further detail) For details of using HDV with Final Cut Pro 5 please go to http://www.apple.com/finalcutstudio/finalcutpro/editanything.html
    I hope this goes someway to answering your queries."
    (..So maybe I'll get a post-Christmas present of a quad ..Daniel's should have arrived by now ..wonder if his feet have touched the ground since..)
    So we who patiently wait while iMovie HD imports hi-def HDV at half-speed or slower could achieve 'real-time' importing with a PowerMac and lots of RAM, it seems.
    I also tried an HC-1 (..the compact 1-chip HDV camcorder..) and have to report that the auto-focus isn't anywhere near so fast as the pretty-near-instant focusing of the FX-1, and - predictably - its low-light performance isn't anywhere near the bright, un-grainy, colourful images of the FX-1. But the HC-1 does have NightShot and Super NightShot for shooting (monochrome) in absolute darkness, helped by infra-red LEDS on the camera, which the big, bulky FX-1 doesn't do. The HC-1 has just about all of the other gizmos of the FX-1 (..user-definable preset transitions - to zoom, change focus, adjust white balance, etc, automatically during shots..) but they're accessible mainly through touch-screen menus, instead of via quick push dedicated switches.
    So Happy New Year; hope it's a good one - and a faster Mac DOES mean real-time importing of HDV footage!
    [..I notice that Focus FireStore on-camera hard drives - which mean "say goodbye to importing, because your footage is saved to disc while you shoot" - have an HDV-compatible model ..but I think it still takes time to convert the captured HDV MPEG footage on the drive into Apple's Intermediate Codec for editing within iMovie HD. I'll investigate further..]
    Hope you had a good Christmas/Hanukah/whatever!

    HAPPY NEW YEAR!
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Database Design
    New Book / Kindle: Beginner Database Design & SQL Programming Using Microsoft SQL Server 2014

  • HT1766 i update my phone today but i loss backup important data & there is no backup in icloud

    i update my phone today but i loss backup important data & there is no backup in icloud

    This feature is only availabe if you are currently running ios 5.
    Update as always.
    Turn on computer.
    Open itunes
    Connect iphone

  • I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting, but the password from the old computer in when waking the computer from sleep.

    I have a password problem. After importing data and settings from one MacBook Pro to a new one, I have to put my iCloud password in when re-starting the new computer, but the password from the old computer in when waking the computer from sleep. I want to use my iCloud password on both computers consistently. How can I fix this?

    The only other place to change a password for the computer login is in Users & Groups preferences. But I don't really know enough here to fix your problem. You can try fixing the keychain:
    iCloud- Frequently asked questions about iCloud Keychain
    Tutorial: Resolving Keychain Issues
    If you can't access your keychain, or forget your password If you can't get into your keychain file because you've forgotten your password or the keychain file appears to be corrupt, there are a couple of options.
    First, if you've forgotten your password, you can use the "Keychain First Aid" utility to make the keychain password the same as the login password. This can be accomplished via the following process:
      1. Open Keychain Access (located in Applications/Utilities)
      2. Go to the "Keychain Access" menu and select "Preferences"
      3. Click the "First Aid" tab
      4. Make sure the "Synchronize login keychain password" box is checked
      5. Close the Preferences window
      6. Go to the "Keychain Access" menu and select "Keychain First Aid"
      7. Enter your username and password
      8. Click the "Repair" button
    The second option is to completely delete your keychain then recreate it. This routine is useful if your keychain appears to be corrupt or otherwise inaccessible. This can be accomplished as follows:
      1. Launch Keychain Access (located in Applications/Utilities)
      2. Click "Show Keychains" in the lower-left corner of the window.
      3. Select the problematic keychain from the left-hand pane.
      4. Navigate to the "File" menu and select "Delete Keychain '(name of keychain)'"
      5. Check all options for deletion and press "OK"
      6. Create a new keychain by going to the "File" menu, then "New" and selecting
          "New Keychain"
      7. You can now make this keychain your default if you desire by selecting it, then
          going to the "File" menu and selecting "Make '(name of keychain)' Default"
    Login as root and perform repair In some cases, problems with keychains can only be resolved when logged in as the root user.
    First, you want to enable the root user:
      1. OS X Mountain Lion: Enable and disable the root user
      2. OS X Lion: Enable and disable the root user
      3. Mac OS X 10.6: Enabling the root user
      4. Enabling and using the "root" user in Mac OS X
    After enabling the root user, and logging in under this account, again open Keychain Access. First attempt repairs using Keychain First Aid, and failing that, delete then recreate the keychain as described above while logged in as root.
    Persistently asked for stored passwords If you are persistently asked for passwords in various applications that you have specified should be remembered in a keychain, your "login" keychain may not be active for one reason or another.
    Navigate to ~/Library/Keychains/ (this is the Library folder inside your user's home folder). Find the file named "login.keychain" and double-click it.
    Failing that, select the "login" keychain within the Keychain Access application and make sure it is the default keychain by going to the "File" menu and selecting "Make 'Login' Default"
    Turn off Keychain synchronization in applications having problems If specific applications are experiencing issues when accessing password-protected material, the Keychain may be to blame.
    The above comes from an article published on MacFixit.com.

  • Importing data from a .txt file and have Acrobat create new pages

    Hi everyone,
    I've created a form in Acrobat 9 to be used as an invoice. I want to be able to import data from an excel spreadsheet or .txt file into all the form fields. I know that I can go Forms > Manage form Data > Import Data to import 1 record at a time, but say I have about 50 invoices to populate, is there a way to import all the records at once and have acrobat create a new invoice for each of the customer's records?
    If there is a way, will it be compatible for Acrobat Reader users since this form will be used by someone who only has the Reader?
    Really appreciate any help.

    Sure.. this is what we use. "New Micro Right Click Tools"
    http://www.nowmicro.com/rct/

  • Date & time problems after new year

    Hi,
    First of all, HAPPY NEW YEAR!
    After the new year my date and time is always changing to a date in the year 1969. I do reset it whenever I turn my pb on. But it always goes back when I turn it off. What could be the reason?

    Hi, zoha. Your internal PRAM battery is dead and needs to be replaced. It's just coincidental that it happened to die at the end of the year.

Maybe you are looking for

  • Issues in WSDL Import

    Hi all, I'm trying to import a WSDL file into XI and I get this error Unable to convert imported document to WSDL Reason: Tag definitions cannot have an attribute version from namespace urn:ebay:api:PayPalAPI Check the selected category Kindly provid

  • Not able to install NWDS 7,1 on Visa 64-bit

    The installer complains that it can not run in the 32-bit sub-system on a 64-bit architecture. I have tried to make the install app run as a WinXP SP2 environment, but still no go. Have anyone sucessfully installed 7.1 on a 64bit Vista system? Best r

  • Change e-mail body in mail adapter using module.

    Hi All, I am woking with one mail adapter and I prepared one code to change the attachement name and body content. The attachement is working good but the body e-mail is not working. After to check a lot of blog my code now is creating two attachemen

  • MBAM 2.5 - SelfService Portal Not Working - Invalid Key ID

    Really odd issue I've run into here guys. Any help is greatly appreciated as this issue is holding my client back from releasing MBAM BitLocker management to his company.  We've setup a two-server MBAM solution. IIS sites are hosted on a server on th

  • Using iWeb for holiday home rentals

    Hi any tips or experience for when using iWeb to promote A holiday home rental?