Write custom logic for data archiving using Open text(SAP archiving)

Hi,
We are currently doing archiving for sales documents and billing documents using Open text. As part of this we need to have a search functionality based on Sales document,customer number, customer address etc...
since customer address doesn't exist in sales order tables we need to write logic so that the document gets archived and retrieved using the address.
can you please help me out in how and where to write logic for this...can this be achieved?
i observed an area on Attribute Object for a Node which gives an option for Event and User exit. can this be used..if so how?
Thanks,
Anil

hi,
please write more detailed information what do you really need...

Similar Messages

  • SAP Archiving using Open Text

    I need to know the basic understanding of what is SAP archiving using Open text ? I did go through Open Text web site and sdn but not of much help.
    What would be the difference between archiving using SARA and Open text ?

    The Questionnaire can include following questions :
    1.what sources are available for getting information about the SAP data archiving ?
    2. which persons are involved in the archiving project and how are the responsibilities shared ?
    3.should an external consultant be involved in the project ?
    4. Is there a time limit for the project.
    5.Which sap release are we using and is a release change planned before archiving ?
    6.How many r/3 systems are in use and are they allocated in different regions ?
    More such questions can be found in the book which snap shots are available on books.google
    Reference : efficient SAP R/3- data archiving : how to handle large data volumes .
    Best Regards
    Manthan.

  • How to write custom messages to Data Manager package log from within SSIS?

    Just wonder in BPC 7.0/7.5 MS how do you write custom messages to Data Manager package log from within SSIS?  I mean I want to log output of specific custom tasks (non-BPC) in SSIS control flow to the resultant BPC package log created when running SSIS package in Data Manager.  Can this be done in a Script Task or some other way?  Not much documentation out there on this.
    Thanks,
    Brian

    Hi Brian
    In order to achieve what you want, it can get tricky in your package, ultimately It would depend on the task, for example if you had an execute SQL task, you could use a RAISEERROR command in your SQL statement and BPC would return the error message that you specified.
    If you had other tasks, then it would be a bit more tricky, you would have to have custom messages based on event handlers.
    Please see below links for examples :
    [Custom messages for logging|http://msdn.microsoft.com/en-us/library/ms345174.aspx]
    [Custom Logging Using Event Handlers |http://consultingblogs.emc.com/jamiethomson/archive/2005/06/11/SSIS_3A00_-Custom-Logging-Using-Event-Handlers.aspx]
    Hope this helps
    Kind Regards
    Daniel

  • Date type-specific Customizing missing for date type ACTActPln

    Hi all.
    I'm using a Web Service obtained by copying the CRM 7.0 built-in WS APPTACTCRTRC.
    I'm using it to create Appointments using an Adobe Interactive Form.
    It goes everything fine (a Date is created in the system, with all the input data properly set) excepted the dates...
    The WS uses two TIMESTAMPS, TIMESTAMP_FROM for StartDateTime and TIMESTAMP_TO for EndDateTime, whereas the GUI transaction to create Dates accepts dates and times in separated fields.
    Going in Debug I can see that the execution ends with the following error, referred to the involved entity (CRM_APPOINTMENT):
    Date type-specific Customizing missing for date type ACTActPln
    CRM_APPOINTMENT uses date profile 0000000001 with three possible date types: ORDERACTUAL, ORDERPLANNED and ORDERPROPOSED and I cannot find anywhere date type ACTActPln (just to add it in customizing).
    Is anyone able to enlight me?
    Thank you in advance!
    Alessandro
    PS I've years of experience in Java programming but I'm quite new to the SAP world. Maybe the problem is not a problem at all, but it seems to me as such. Even if it has a trivial solution, please let me know. Thx!

    Hi,
    Well I was about to write that you should enter date in decimal format. but you already did that as mentioned in How to set a date in a Form where the bound date format is a decimal?
    In response to following from above thread (copied for others to understand my response)
    Hi all.
    I'm successfully using the LiveCycle Designer and I've managed to remotely create Appointments using a CRM Web Service (a mere copy of APPTACTCRTRC).
    The only problem I'm encountering is that I'm not able to set the dates/times (start and end of the appointment).
    Dragging each of the two fields from the WSDL based Data Connection I obtain a Decimal Field limited to 15 digits.
    How can I write a date and time in such a field?
    I've tried with a retroverse date as YYYYMMDDHHmmss (for example, 20100301124500) but it does not work
    (the appointment is indeed created, but with the start date and time fields filled with
    the current date/time and the end date and time fields filled with the current date and time plus 10 minutes).
    The retroverse date above is only 14 digit long, so, maybe, this is the problem.
    But, given the field definition, I'm not able to fill a blank space between the date and the time.
    I'm not able to put a dot either.
    What should I do?
    Any suggestions?
    Thank you in advance.
    Alessandro
    15 digit in UTC time format here is fraction of second so you should enter 201003011245000 (add one more zero).
    14th Oct 2010 16:00 should be written as 201010141600000, so just try it and and see if it works, I guess if you do not supply end time then by default it will be starttime + 10 min but this is just guess.
    Regards,
    Gourav

  • How to write customer exist for Keyfigure( query )

    Hi gurus,
    I have to write customer exist for a key figure.
    Please tell me how to write it.
    Thanks,
    James

    Pankesh,
    SE24 is for  defining classes .. are you sure this is for customer exits ?..
    Use a formula variable filled by a customer exit... go to TCode CMOD and follow the normal procedure for defining Exits.. look up the forums for detailed steps on how to write an exit..
    Arun
    Hope it helps...

  • How to write enhancement logic for AR datasource

    I need to enhance the AR data source(0FI_AR_4) with the following logic:
    LOGIC:
    First find out the KB Partner function in the field: KNVP-PARVW. Once the KB value is obtained, then display the value from KNVP-PERNR
    Thanks..
    Edited by: Jim kim on Jul 25, 2011 10:41 PM
    Moderator message : Spec dumping not allowed. Thread locked.
    Edited by: Vinod Kumar on Jul 26, 2011 10:18 AM

    Hi Ram,
    Generally the IDoc user exit is called at the following places:
      1) When the control record is read.
      2) After each and every segment in the data record
      3) At the end of the data segment processing.
    The IDoc user exit interface generally imports IDOC_DATA (data record internal table) table. Now the data records in the internal table should appear in the same order as maintained while defining IDoc structure (WE30 transaction). For SAP standard segment SAP code will take care of this. For extended segment you will have to take care of this aspect by appending the Z-segment in the IDOC_DATA table.
    You can do this by:
             looping at IDOC_DATA table:
                 - Do a case-endcase fo IDOC_DATA-SEGNAM (This stores the segment 
                   structure as per the hierarchy).
                 - Within the case for "Z-segment" you can write the logic for appending
                   the Z-segment to IDOC_DATA-SDATA.
    Hope this gives some clue.
    Regards,
    Gajendra.

  • Can any one please tell me how to write labview program for data logging in electric motor bike.

    Can any one please tell me how to write labview program for data logging in electric motor bike. I am going to use CompactRIO for getting wide range of data from various sensors in bike. I need to write labview program for data logging of temperature, voltage and speed of the bike. Can any one help me?

    Yes, we can.   
    I think the best place for you to start for this is the NI Developer Zone.  I recommend beginning with these tutorials I found by searching on "data log rio".  There were more than just these few that might be relevant to your project but I'll leave that for you to decide.
    NI Compact RIO Setup and Services ->  http://zone.ni.com/devzone/cda/tut/p/id/11394
    Getting Started with CompactRIO - Logging Data to Disk  ->  http://zone.ni.com/devzone/cda/tut/p/id/11198
    Getting Started with CompactRIO - Performing Basic Control ->  http://zone.ni.com/devzone/cda/tut/p/id/11197
    These will probably give you links to more topics/tutorials/examples that can help you design and implement your target system.
    Jason
    Wire Warrior
    Behold the power of LabVIEW as my army of Roomba minions streaks across the floor!

  • How to write the logic for extending Idocs...

    Hi,
          Can anybody pls explain how to write the logic for extending IDOCs with an example...
          Good suggestions can be appreciated..
    Regards,
    Ram

    Hi Ram,
    Generally the IDoc user exit is called at the following places:
      1) When the control record is read.
      2) After each and every segment in the data record
      3) At the end of the data segment processing.
    The IDoc user exit interface generally imports IDOC_DATA (data record internal table) table. Now the data records in the internal table should appear in the same order as maintained while defining IDoc structure (WE30 transaction). For SAP standard segment SAP code will take care of this. For extended segment you will have to take care of this aspect by appending the Z-segment in the IDOC_DATA table.
    You can do this by:
             looping at IDOC_DATA table:
                 - Do a case-endcase fo IDOC_DATA-SEGNAM (This stores the segment 
                   structure as per the hierarchy).
                 - Within the case for "Z-segment" you can write the logic for appending
                   the Z-segment to IDOC_DATA-SDATA.
    Hope this gives some clue.
    Regards,
    Gajendra.

  • Standalone application for data acquisition using NI DAQ card

    I have made a standalone application in labview GUI for data acquisition and signal processing. if i have to run this application in any other computer what all softwares should be installed other than labview runtime engine...NI DEVICE DRIVER CD alone is to be installed or do i have to install any other software for data acquisition using NI daq card??
      thanks and regards
    Solved!
    Go to Solution.

    You should only need the run time engine, The device drivers for the device, maybe need VISA drivers if you are doing serial or something of that nature, You may need the channels or tasks created in NI measurements and automation if you created them there.
    There may be other things that you will need depending on what you include in your code and what tool kits that you have installed.
    Tim
    Johnson Controls
    Holland Michigan

  • How do you create a save as default folder for MP3 files used Captivate text to audio voices files?

    How do you create a save as default folder for MP3 files used Captivate text to audio voices files?

    Hi Ed
    Thank you for contacting me, however I already know how to save text to
    audio files via timeline using the Export feature.
    So my question was not entirely clear and I apologize for that.  To explain
    further, whenever I save a text to audio file, captivate takes me to a
    default save as folder where I then have browse back to my production
    folder where I am keeping all my Txt to Aud files.  This is very tedious
    process when you have alot of files to save.  So my question was is there a
    way to configure captivate so I can make my production folder the default
    file for whenever I save a Txt to Audio file through Export feature that
    the system automatically takes me to that production folder, and I am
    spared the long tedious process of saving the file manually to the
    prodcution folder I want.
    I have copy the pathway to the production folder in the URL filed in the
    Save As dialoge box and that workaround as cut the work down but I still
    have to paste that URL field to point the file to the right folder. So it
    would be nice if I could do everything automatically.  Microsoft makes this
    capability in their MS Office applications, so I was thinking Adobe might
    do the same thing.  Your help with this would be appreicated,
    Thanks
    Merrill Roberts
    Sr. Training Specialist
    SunGard Availability Services
    Direct 925-831-7730
    Mobile:415-215-9280

  • SRM Smartform - How to write custom logic to get data

    Hi Experts,
    I am new to SRM 7.0 now. I want to know where the code logic can be written to print the custom smart form?
    I have already create custom smarts form ZBBP_PO, and implement the BADI  BBP_OUTPUT_CHANGE_SF to pass the custom form name.
    But i don't know where to write the code for fetching the source data. In ECC, we can write the code in a separate report program. How it does in SRM now? It is said some class and method will print the form. How to find it? and how to add custom logic.?
    Or the logic of fetching source data should be embeded in the smart form? I don't like to write much more codes directly in smart form.
    Thanks!

    Yeah, I know it. but I don't want to write code logic into the Smartforms. in ECC, i always write the code in a separated program which will pass the data to smartform and call function module to print it.
    i just want to know whether i can write the code in somewhere else in SRM, not in smartform.

  • How can I fix Firefox 18 and 19 from taking too long to close when custom settings for history is used?

    Hello, please read entire post before answering, thanks!
    I had Firefox(FF) 12.something and was happily using it when I had to get a new hard drive and start over, so I decided to upgrade to the latest FF of the moment, 18.something...
    After going through setting up all the different add-ons etc.. and resetting the options/preferences (not cool how you all reset those every time it updates!) The time to open and close went from 2-4 seconds each to 78 seconds to open and 48 seconds to close. Over the last two days I tried (except reset) and read all the suggestions here to no avail.
    So I read up on how to totally uninstall all traces of Firefox so I could do a clean install, that didn't work either: The freshly reinstalled FF 18.? program still opened and closed in the same times, and had all my info despite my deleting the folders/sub-folders said to hold that info. I turned everything off in FF, still no improvement, so again I tried to find accurate info on how to completely remove FF and still nothing that is correct for the current programs.
    Today I looked again for info on how to totally remove FF, found something new to me, and tried that, including a complete search of the registry and removing everything with the firefox name, then reinstalled FF 18.?
    Again all my bookmarks and info was there, and when I looked up help it auto-updated to 19.0 without my permission, again I don't like others making decisions for me for "my own good"(hence the screen name), not OK!
    So I tried the reset feature in FF 19.0 and it did just that and the opening and closing lag times were gone, back to 2-4 seconds each,which seemed great!,but no.
    When I went back to set up my options and restarted, FF went back to the lag, so I eventually removed/reset everything and all was well again, so I started putting/setting things back one at a time, that's when I found and verified the problem, the history settings!!!
    I repeated this 6 times with the same results:
    Set the History to Remember, and everything works fine, set the History to Custom the lag returns without fail.
    My settings in Custom were:
    Accept and remember everything until I close FF
    Clear history when FF closes.
    In the sub-menu "Settings" under the Clear History when FF closes:
    All 6 boxes are checked for History and no boxes were checked for Data (all the defaults)
    I looked at the processes running in Task manager when starting and stopping FF with these settings,I found that not only was FF.exe running but also a plugin-container.exe, both eventually stop after about 48 seconds, the plugin container does not appear to run when History is set to Remember all... (I have an incomplete memory about the plugin container causing problems like this in the past but I cant remember what or exactly when so...)
    I also tried leaving the History setting to Remember All and the restarted and tried to clear everything through the Tools menu and FF stopped responding for about 60 seconds and then seemed fine afterward.
    So I conclude that there is a problem in the newer versions with clearing History in the background while the browser continues to function, and the likely culprit is the plugin container(again?)...
    So on to the questions...
    Is it possible to set History to Custom and have FF 19.0 remain operational during that process and for FF to close in a few seconds as it did in FF 12.something with the same History settings?
    If so how can I set that up?
    If not, what is the latest version that will work correctly with the History being remembered until FF is closed and then wiped before re-opening, without waiting more than a few seconds for it all to happen as it was in my FF12.? version?
    Also, How do I remove ALL TRACES of Firefox 18.? and up so that I can do a clean install if I need to, as I said everything that is here or linked to from here up to today, 2/21/2013, was not sufficient.
    Thanks for your time...

    So now on to question #2 of the original post...
    "Also, How do I remove ALL TRACES of Firefox 18.? and up so that I can do a clean install if I need to, as I said everything that is here or linked to from here up to today, 2/21/2013, was not sufficient."
    Why?
    As it turns out, the plugin-container.exe rears its ugly head yet again. With as many as four instances trying to run at once, and locking FF completely whenever I try to watch videos online. (Google Chrome has no problems with the same videos on the same sites with the same software available to it on the same drive on the same machine, so it is definitely something in FF)
    Also:
    1. ) The auto update for; plug-ins, FF itself, add-ons, etc..., refuses to stay disabled.
    I've read others saying that as many as five different areas need to be found and addressed in order to fully disable many of the "hidden" functions of the latest Firefox editions, yet I can't find a definite answer nor instructions to fully address this accusation nor can I find complete and full details/ instructions on how to completely uninstall all data connected to Firefox. I have followed what I can find so far and when I reinstall, all my personal data is there including bookmarks etc... so something isn't getting done...
    2.) Whomever is in charge of "security"(Villalobos?) keeps disabling my plugins which is keeping me from using FF to some extent and may or may not be keeping the videos from playing while on-line and who knows what else, but as I have stated before I'm against anyone doing anything for any reason under the Hitler/Stalin-esque ideology that "the ends do justify the means", for example:
    ''Java Plugin 7 update 12 to 15 (click-to-play), Windows has been blocked for your protection." Why was it blocked?
    Old versions of the Java plugin are potentially insecure and unstable. All users are strongly recommended to update on our plugin check page.
    Who is affected? All users who have these versions of the plugin installed in Firefox.
    What does this mean? The problematic add-on or plugin will be automatically disabled and no longer usable.
    When Mozilla becomes aware of add-ons, plugins, or other third-party software that seriously compromises Firefox security, stability, or performance and meets certain criteria, the software may be blocked from general use. For more information, please read this support article.
    Blocked on February 25, 2013. View block request.''
    So as a last resort I'm going to downgrade to something that the socialist people who are now making decisions for the masses that use the newer editions of Firefox can't control (hopefully) and manipulate against my (our) will.
    So I need your help cor-el to be able to remove ALL files/instructions/data in order to downgrade without anything "new" being left behind after uninstalling, presuming you know how to accomplish this and will share it with me and everyone else who wants to continue to use Firefox without someone else deciding what we can and can't do with it.(it is still open-source right?)
    3.) I use my computer and browser for my business, I can't afford spending all this time and trouble trying to undo what Jorge Villalobos( and those who think as he does) continue to do, apparently believing that it's ok to cost me (us) time and money in the name of "protection", he really doesn't get it, and I'm done putting up with socialists (or control freaks pretending to be socialists) trying to run my computer. Take a friggin' Philosophy/Logic class and learn why the ends NEVER justify the means Jorge....
    4.) This is as plain as it gets Jorge et al.: MY Computer, My Choice!...
    5.) So what do you say cor-el, will you help me in this?

  • ETL for Data warehouse - use view instead of transformations?

    When populating staging tables, is anyone else using this approach of using a view - as opposed to transformations within your ssis dataflow ?  I had not thought of this approach, but I suppose it results in the same goal - to get the wanted schema
    for data flowing into the destination.  I suppose it would be just a matter of using the view as your source - as opposed to the underlying table(s), followed by transformations before the destination?

    Hi sb,
    I would say that it depends.  You want your load to be efficient and your want your load to be simple and easy to enhance later.  Sometimes these goals can be conflicting, so you need to decide what's important for your implementation.
    Regarding efficiency, you will typically be better off with a view as the filtering, lookups etc will be done at source, so less data transferred to your staging area.  For example, the view might only ask for 12 of 25 columns in a source table, so
    you will be bringing over, perhaps, half the amount of data.  Another example, your view might join two tables at source, while another design option would bring over all of the larger table and perform a lookup (on the smaller table) for each record
    of the larger table.  This could be extremely inefficient if each lookup went back to source.
    Regarding easy enhancements, in the first example, if you bring over all 25 columns, you might find it easier to add one of the, as yet, unused 13 columns.  Regarding the second example above, with views, there is a risk that a new view will be created
    for new requirements, resulting in multiple views importing overlapping data.  You really only want to import each datum once, with no duplication.  Note; duplication is unlikely if the views are essentially one view per logical table in the source
    system.
    I've sat on the fence a bit answering this question, but it really does depend, and it is a big question.  What you need to do is understand the ramifications of the design you implement.  Having qualified my response, I very often use views to
    perform simple 1:1 mainipulation of the source data.
    Hope that helps a little,
    Richard

  • Regarding the Customer Setup for ISA B2B using SAP J2EE 6.4 and NWDS

    Hi
    Does someone knows how we can setup a customer project using
    SAP J2EE 6.4 and NWDS.
    I've tried to setup the project but facing a weird problem..
    I've ISAWAC640SP11 and ant buildtool to build the application.
    I didn't get any "sda_build.xml" in this patch (ISAWAC640SP11).
    i've used "sda_build.xml" of ISAWAC40SP11.
    I've build the application using build tool but when i try to deploy it
    on SAP J2EE 6.4 using SDM i get a weird message stating
    <b>"com.sap.sdm.util.sduread.IllFormattedSduFileException: The archive must be deployed with a 6.20 SDM, which has a SDM-SDA compatible version 1 or greater."</b>
    Does anyone knows from where can i get the sda_build.xml file compatible with
    ISAWAC640SP11 ??
    Also can some one suggest me to setup a customer project for extension and
    modification of ISA B2B 640 on NWDS and SAP J2EE 6.4....
    Thanks & Regards
    Sandeep Solanki

    Hi,
    I am Rajesh..and it seems that you and I are facing the same problem. Well, I am really finding it hard to find material like PDF's files on Build Tool. and ISA Development and Extension Guide. 
    I would really appreaitate if you could send me some material. Well, My project is very simple and I have been given the task to first submit a simple demo of B2C on R/3 system. ( Not CRM ). I have also installed the NWDS and everything including the ISA WAC Java components. I am having real hard time in modifying them....
    Can you please shed light on it...You can also email to me at [email protected]
    Thanks in Advance for your kind consideration.
    Rajesh.

  • Custom InfoObject for date, problem with offset

    Hi all,
    I have a BEx reports presenting 0CALWEEK and another IO I created for dates.
    This IO has the same properties as 0CALWEEK (but it was not created as a reference of 0CALWEEK).
    In my report I'd like to use offsets for both IO's.
    It works perfectly for 0CALWEEK, but it doesn't work at all for the other IO. Actually, only the first offset is shown. For all others weeks, I get "#".
    Additionally, I made some calculations based on the week difference (using formula variables). Of course, every time a "#" appears, the calculation cannot be done (otherwise it works like it should).
    Could anybody help me out with this?
    Thanks in advance

    Hi Jagadeesh,
    did I understand you correctly that:
    1) offsets only work with standard characteristics? (this seems really weird to me...)
    2) if I want to use offsets with with Z_* characteristic, I will need ABAP?
    The problem is that I don't know anything about ABAP.
    Do you know any "typical" code to use to resolve this type of problem?
    Where do I have to use this code: in the query, in the IO, in a start routine somewhere?
    Thanks

Maybe you are looking for