Document related to RSRV

Hi Experts,
Please help me, it is urgent for me.
can any one give information about the  T-code RSRV and its usability.
Thanks
Sekhar

Heres one example :
<b>Issue</b>
When iam trying to load the data from PSA to Infocube, iam getting a error:
Record 2 :Error calling number range object 0LOC_CURRCY for dimension DU ( )
AND
Record 3456 :Time conversion from 0CALDAY to 0FISCPER (fiscal year V3 ) failed with value 00060202
<b>
Solution</b>
RSRV
All Elementry Tests
Master data
Compare number range and maximum sid
Run it
Correct the error

Similar Messages

  • Basics of FI Presentations, screenshots & documents related to FI config

    Hi FI Gurus,
    I'm new in SAP. I want to know basics of FI. Can anyone send me Presentations, screenshots & documents related to FI config. to My id : [email protected]
    Appreciate your information and will definitely reward points.
    Mohammed

    Hi
    Check out the site www.sapbi.blogspot.com
    Pls award points if useful
    Regards
    Sanil

  • Templates and document relative linking.

    Im trial using DW cs5 and find that if i make a template and then
    use that template to make pages it doesnt make document relative links.
    Instead it makes links relative to my local drive. ie c/documents/foo.
    Even if I have the template file with document relative links, when I make the page it turns into local relative and to upload this to a server wont work.
    Am I missing something ?
    I can figure it out.
    CS4 did this fairly easy.
    Cheers

    I dont know how to fix this.
    My site is set to relative document linking and the template is linked that way but when I make a new page from template it reverts to local linking.
    instead of ../../ images , I get c://documents/ etc.
    I dont know whats going on.

  • Document-relative Template paths in templated files?

    Is it possible to make Dreamweaver use document-relative
    paths to parent Templates rather than root-relative? My site
    definition is setup so such that the local folder is the root of
    the web site. However, on the server the site is actually in a sub
    folder, so the real web root is not the same as this web sites
    root. So, something like this:
    Local root folder = C:\...\Project Name\www2\
    (Local templates folder = C:\...\Project
    Name\www2\Templates\)
    HTTP Address =
    http://www.mysite.com/clients/client-site/
    (Remote templates folder =
    http://www.mysite.com/clients/client-site/Templates/)
    The end user will be using Contribute to manage the content
    on this site, so I'm using Templates to control some aspects of the
    site. My problen is that the path back to the Template is being
    written as a root-relative link:
    InstanceBegin template="/Templates/navigation-sub.dwt.php"
    When I then connect to the site using Contribute and try to
    edit a page, I get an error saying that it can't find the template
    (which is true because the template is actually in
    "/clients/client-site/Templates/navigation-sub.dwt.php" and not
    "/Templates/navigation-sub.dwt.php"). I have the Links Relative to
    Document option checked in my site definition, but that appears to
    only apply to regular links and not paths to Template files.
    Murray had mentioned some technotes that addressed this, and
    I think I found the ones he was thinking of, but they seemed to
    only address regular links and it wasn't clear if the Template
    paths were affected by the solution (which was to set the Links
    Relative to Document option which I mentioned above).
    So is it possible to tell DW to use document relative paths
    to its template files? I know you're thinking "Why not just create
    the local folder with the client and client-name folders," but this
    wouldn't work as the site will eventually be moved to the clients
    own website where the site files really will be in the site root.
    This is the whole reason for using document relative files in the
    first place. Any help would be greatly appreciated.

    OK, apparently I'm not explaining myself enough here because
    you guys keep giving me the same answer to something that I've
    already said isn't a viable solution. Let me explain in greater
    detail why just updating the local folder structure won't work.
    Let's assume that I did do what you suggest. My local folder
    could technically stay the same but I'd add two additional
    directory levels ('clients' and 'client-site') to match the site
    structure on my testing server. I then move all of the existing
    files into the lower 'client-site' directory *except* for the
    Templates folder because DW likes that to be at the "root" of the
    "site". So now assume my local site looks something like this:
    C:\...\Project Name\www2\ (DW would consider this the "root"
    of the site)
    .....clients\
    ..........client-site\ (i'll refer to this as the client root
    for simplicity sake)
    ...............articles\
    ....................doc_a.html
    ...............images\
    ....................img_a.jpg
    ...............index.html
    .....Templates\
    ..........client-template.dwt
    If DW is writing the Paths back to the Template file using
    site-relative paths then file index.html in the client root (i.e.
    /clients/client-site/) would have the path back to template
    client-template.dwt written as follows:
    InstanceBegin template="/Templates/client-template.dwt"
    Also assume that img_a.jpg is the client logo that will be
    used on all of the pages and so it is in a protected part of the
    template. The document-relative path from the template
    client-template.dwt to the image would be:
    <img src="../clients/client-site/images/img_a.jpg">
    Of course since my site is defined to use document-relative
    links then this path would resolve to just "../images/img_a.jpg"
    for index.html.
    OK, so far so good. I upload all of this to my testing
    server, give my client a connection key for Contribute and let them
    test away. They love it (naturally) and want to move everything to
    production. This is where your suggested solution falls apart.
    In order for the site to continue to work as-is I would have
    to copy the entire directory tree (/client/client-site/etc) to the
    clients web site, so what should be www.client-site.com/index.html
    becomes www.client-site.com/clients/client-name/index.html. I also
    have to copy over the Templates folder, stripping out any other
    Templates that might be in there (my own site template for
    example). Not only is this cumbersome, but the client hates the
    fact that there are all these subdirectories in their URL (as
    finicky as clients are) and they think it is unprofessional. My
    whole purpose for developing using document relative links is so
    that no matter where I plop the site, it will work as intended.
    OK, the first fox for this that comes to mind is to take just
    the site files (so everything under /clients/client-name/) and plop
    that into the root folder on production. All of the existing files
    should work fine since they use document-specific links. However,
    the client still needs to use Contribute to edit these documents so
    I have to copy over the Template folder. I can put that into the
    root since all of the paths back to the template are root-relative,
    right? Wrong - because all of the links in the template still point
    to the files as if they were in '/clients/client-name/', which they
    no longer are. So any new files based on the template will contain
    broken links, and any updates to the existing files might also
    result in broken links.
    So then I need to keep two versions of the site? And if I
    make a change to the template on the testing site, I then have to
    reconcile the changes to the production version? Way too much. And
    all of this would be irrelevant if I could just use
    document-specific links back to my templates.
    Does it make sense now why updating the site structure isn't
    as optimal of a solution as you are making it out to be.
    quote:
    Originally posted by:
    Newsgroup User
    Create a new site definition for this testing site that uses
    the correct
    root directory. Then it doesn't matter....

  • Document related to PP module

    hello experts,
    I need some good documents related to PP module like functionality and flow.
    If any one can explain some real time scenarios related to abap in pp module that would be really gr8 help  for me and
    I need some important topics in the PP module also
    Thanks alot for your anticipation
    I will surely award the points to good answers
    Thanks & Regards,
    SRI.

    All functional & technical help pdfs are here
    http://www.easymarketplace.de/online-pdfs.php
    Regards
    Kathirvel

  • Documents related to SAP Netviewer

    Hi All,
              On which site i get the information about SAP Netviewer or
              documents related to that.
    Thanks & Regards,
        Sagar Kale

    Hi Sagar Kale ,
    Welcome to Netweaver Family!
    These r some excellent web-sites which give u a detailed,descriptive overview of Netweaver :
    SAP NetWeaver
    https://www.sdn.sap.com/irj/sdn/netweaver
    SAP NetWeaver : Overview of SAP NetWeaver AS Java Administration
    http://www.sap.com/community/pub/showdetail.epx?itemID=5548
    http://www.sap.com/community/pub/showdetail.epx?itemID=7730
    SAP NetWeaver Overview
    Describing NetWeaver
    http://www.erpgenie.com/sap/netweaver/
    Overview of SAP NetWeaver Mobile and SAP Solutions for Mobile Business
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/061ac399-0801-0010-c1b5-9d6d1b2f1f7b
    https://help.sap.com/javadocs/NW04s/current/km/overview-summary.html
    http://www.jaxmag.com/itr/online_artikel/psecom,id,586,nodeid,147.html
    http://www.oasis-open.org/committees/download.php/15901/SPMLProvisioningWithSAP.pdf
    http://www.sap.com/community/pub/showdetail.epx?itemID=7730
    https://www.sdn.sap.com/irj/sdn/netweaver
    Re: Need  XI Document or PDF
    https://www.sdn.sap.com/irj/sdn/platform
    http://help.sap.com/content/documentation/netweaver/docu_nw_70_design.htm
    http://help.sap.com/content/documentation/netweaver/docu_nw_71.htm
    http://www.amazon.com/SAP-NetWeaver-Dummies-Dan-Woods/dp/0764568833
    ****Pls don't forget 2 reward points if u find this useful
    cheers!
    gyanaraj

  • Need documents related to metering.

    Hi all,
    I want useful documents related to metering module of SAP-ISU. Can anyone help me in doing that?
    Regards,
    Diksha Negi.

    Diksha:
    Please read the Research Resources and Rules of Engagement before posting.  Do your own work to search the available resources. This thread is locked.
    regards,
    bill.

  • Need documents related to PDF forms

    Hi all,
    Please provide me documents related to :
    1) what is PDF forms.
    2) advantages of PDF forms
    3) Comparison between PDF & Smartforms or sap scripts.
    4) or any other info refarding PDF forms
    Thanks

    Hi,
    SAP Interactive Forms by Adobe in the Guided Procedures Environment
    https://www.sdn.sap.com/irj/sdn/java?rid=/webcontent/uuid/f057d803-3c53-2910-db92-a6a2f1cc7334
    Guided Procedures Functions and Features
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d261b611-0b01-0010-7781-acb929f30163
    Guided Procedures Overview
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a553bb11-0b01-0010-23ad-a3dc74e77e39
    Task-Oriented Support for Your Department's Informal Processes - Without Calling on IT
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b866ae10-0b01-0010-cc85-e6c886cbfa84
    Getting Up to Speed on Guided Procedures, Part I
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/49a605f0-0a01-0010-68aa-ebb5dfdce852
    Getting Up to Speed on Guided Procedures, Part II
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/1ffe06f0-0a01-0010-60a7-a2593e1862f3
    http://help.sap.com/SAPHELP_NW04S/helpdata/EN/33/198141f906040de10000000a1550b0/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a553bb11-0b01-0010-23ad-a3dc74e77e39
    https://www.sdn.sap.com/irj/sdn/java?rid=/webcontent/uuid/f057d803-3c53-2910-db92-a6a2f1cc7334
    Wiki
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/bpx/guidedProceduresGetting+Started
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/bpx/guidedProcedureGeneral+questions
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/bpx/guidedProceduresProcess+Examples
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/emtech/adobeformsinGuidedprocedures
    https://wiki.sdn.sap.com/wiki/display/EmTech/AdobeinteractiveformsinwebDynpro+JAVA
    https://wiki.sdn.sap.com/wiki/display/BPX/TheuseofInteractiveFormsinGP
    Useful blogs
    A Tale of Two Brothers: Guided Procedures and the SAP NetWeaver BPM Product
    The specified item was not found.
    Usage guide for creating Guided Procedures
    Usage guide for creating Guided Procedures
    Galaxy, Universal Worklist, Guided Procedures Connector, and Dr. Bruce
    Galaxy, Universal Worklist, Guided Procedures Connector, and Dr. Bruce
    Regards,
    Arafat

  • Need documents related to inventory data sources

    Hi all,
    just need a favor from u guysu2026.i need documents related to inventory data sources (complete step by step)u2026we need to extract inventory data sources from R/3 and need to replicate them in a brand new BW systemu2026Iu2019ll appreciate anything that u people have gotu2026and share with me.
    Regards,
    KS

    Hi
    check this thread
    it might be helpful
    doubt related to inventory data loading
    Inventory doubt
    regards
    gaurav

  • Document related to ESS/MSS on ERP2004/2005

    Hi ALL,
    I need the document related to ESS/MSS on mrERP2005
    1. Installation Guide
    2. Configuration Guide
    Waiting for response
    Thanks & Regards
    Punit

    I need the document related to ESS/MSS on mrERP2005
    Installation Guide & Configuration Guide for ESS/MSS as well as E-Recruitment
    Please send documents (and/or link) to: [email protected]
    Thanks in advance
    Regards

  • Printing document related to CV02N

    HI,
    PLEASE TELL ME HOW MARK AND PRINT THE DOCUMENT OF CV02N TRANSACTION,  ANY FM EXISTS.
    WHEN I AM PRESSING THE THE PRINT BUTTON, IT IS SHOWING THE POP UP BOX SAYING "Select an original application file first".
    REGARDS
    SAMI

    I need the document related to ESS/MSS on mrERP2005
    Installation Guide & Configuration Guide for ESS/MSS as well as E-Recruitment
    Please send documents (and/or link) to: [email protected]
    Thanks in advance
    Regards

  • How do I make document relative links for the site?

    How do I make document
    relative links for the site -
    <img src="../images/foo.gif"... (for example)?

    > How do I make document
    > relative links for the site -
    look in the bottom of the "browse to file" dialog box.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • Documents related to upgrade from 4.6C TO ECC 6.0

    Hi all,
    can anyone send some documents related to upgrade from 4.6C TO ECC 6.0
    my emil id is
    [email protected]
    THANKS
    VENKI

    Hi Venki,
    Please check for the following links for the information on Upgradation from 4.6C to ECC6.0
    Upgrade Procedure/Support Packages:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/60/d6ba7bceda11d1953a0000e82de14a/content.htm
    SAP Upgrade guide:
    http://www.thespot4sap.com/upgrade_guide_v2.pdf#search=%22upGRADE%20STEPS%20-%20SAP%22
    Upgrade information centre:
    Upgrade Information Center [original link is broken]
    For Functionality Differences pls refer to the below site - http://solutionbrowser.erp.sap.fmpmedia.com/
    From ABAP's perspective, the link below helps you:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5ac31178-0701-0010-469a-b4d7fa2721ca
    For technical upgrade inputs, check:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/2007/05/07/upgradeFROMR3TOmySAPERP-PARTII&
    https://wiki.sdn.sap.com/wiki/display/profile/UPGRADEFROMR3TOmySAPERP-PARTIII
    I am sending you a mail too.Please check it.
    Reward if found useful.
    Regards
    Sayee

  • Any documents related to oracle APPS DBA

    Any documents related to oracle Apps talk about flex fields
    please post the link

    Hi,
    Have you tried downloading the oracle appls sysadmin guide?
    Check this out:
    http://download-east.oracle.com/docs/cd/B25516_08/current/html/docset.html
    HTH,
    catalin.

  • Documents related to PI

    Hi Friends,
    I am new to PI and finding it difficult to locate some good material on PI online. Could someone kindly help me with locating some documents related to SAP PI. Thank you in advance.
    Warm Regards,
    Balaji.K

    Hi,
    There are loads and loads of good documents/blogs/threads available on SDN and elsewhere. you just need to start..
    However, following links will help you to get started:
    http://wiki.sdn.sap.com/wiki/display/XI/Step-by-Step+Guides
    http://wiki.sdn.sap.com/wiki/display/XI/ProcessIntegration-ExchangeInfrastructure
    Also, for beginers..its good to go through Sravya's amazing series:
    /people/sravya.talanki2/blog/2006/12/25/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-i
    /people/sravya.talanki2/blog/2006/12/27/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-iii
    /people/sravya.talanki2/blog/2006/12/26/aspirant-to-learn-sap-xiyou-won-the-jackpot-if-you-read-this-part-ii
    /people/sravya.talanki2/blog

Maybe you are looking for

  • How to get rid of "Apple iPhone" window that opens in Windows 7?

    Whenever I connect my iPhone 4 via USB to my Windows 7 computer, this window automatically opens.  How do I stop this from happening? I've already gone into Control Panel and selected "No Action" in the Events tab for this device.  What else can I tr

  • Very Urjent: How to delete temporary files on the server.

    EBS: We are facing a big issue with huge volume of temporary directory.We have created invoice program which uses Bursting concept. Every concurrent program is erroring out. How to delete those files automarically. Where these temp files are getting

  • Putting songs together as albums

    hello i just upgraded to itunes 7 and there i can subdivide my songlist into showing whole albums to make it more clearly arranged (sorry, badly expressed) but the program refuses to let appear certain songs in the same album column, even if i rewrit

  • AjaxButton and MethodBinding generated by code

    use jboss 4.2.2 GA with seam 2.0.2 i got a dynamic page, the components are generate by code. i got some error with AjaxButton the creation code is like this HtmlAjaxCommandButton ajaxbutton = new HtmlAjaxCommandButton();           try  {            

  • Touchscreen glitching out

    How can I fix my touchscreen touch issues? I enabled developer touch debugging and it seems as though the touch pressure is always hovering around 0.5, and almost all the time it is "phantom touching" the center of the screen. The phone is nearly use