Input needed for writing data back into BW/ECC data

Hello Everyone,
Can anyone please let me know an example or process you have used for writing data back into BW (DSO/Cubes) or ECC systems.
We do not have integrated planning in our current system configuration currently.
So, any sample code for using any of the BAPI/RFC for writing data would be appreciated.
Also, I am trying to find out if there is any way to schedule the models developed in VC 7.1 in background to automate certain type of data processing which goes across multiple systems.
Any help would be appreciated.
Thanks.

Hello,
Can anyone please help me out on this one....
I am aware of few BAPI's such as RSDRI_ODSO_INSERT_RFC but I am not aware of what action has to be used to transfer the data from the table within VC to this BAPI and how to define the parameters as the one's available for the BAPI I mentioned do not fit into the data I have in the table within VC.
The following are the columns I have in the table within VC,
1. GL Account
2. Credit Amount
3. Debit Amount
4. Sales Amount
I have defined the DSO with the same where G/L Account is the keyfield and the rest being data fields.
Any help would be really appreciated.
Thanks.

Similar Messages

  • Importing XML Data Back into the Form

    I have a form that shows several subforms based on the selections the user has made while filling in the form. This is working quite well but when I import the XML data back into the form it doesn't show the subforms that have been used.
    Is there an easy way to change this?
    Thanks in advance!
    Emma

    Actually the issue may actually have to do with the fact that the connections aren't bound, but I haven't seen the data.
    I have some fairly complex forms that include both subforms and instances, have an XSD embedded and export as XML. When I import the data, everythi
    Now, that being said...
    Are your subforms "hidden" and you opt to display them upon selection of a radio button for example, or do you SetInstances()? If you're using visible=TRUE or FALSE, that may also cause some issues.
    Try this -- on Form:ready try this code:
    if(this.rawValue == "on"){ //this radio button 1
    _subform1.setInstances(1);
    _subform2.setInstances(0);
    _subform3.setInstances(0);
    else if(this.rawValue == "on"){ //this radio button 1
    _subform1.setInstances(0);
    _subform2.setInstances(1);
    _subform3.setInstances(0);
    else if(this.rawValue == "on"){ //this radio button 1
    _subform1.setInstances(0);
    _subform2.setInstances(0);
    _subform3.setInstances(1);
    else { // this is fisrt time open -- i sometimes had issues with subforms being visible on first entry
    _subform1.setInstances(0);
    _subform2.setInstances(0);
    _subform3.setInstances(0);
    Then on:Click essentially copy most of the code you put in form:ready
    if(this.rawValue == "on"){ //this radio button 1
    _subform1.setInstances(1);
    _subform2.setInstances(0);
    _subform3.setInstances(0);
    else if(this.rawValue == "on"){ //this radio button 1
    _subform1.setInstances(0);
    _subform2.setInstances(1);
    _subform3.setInstances(0);
    else if(this.rawValue == "on"){ //this radio button 1
    _subform1.setInstances(0);
    _subform2.setInstances(0);
    _subform3.setInstances(1);
    Of course this will go on top of your radio button group.
    If you are exporting to XML, it will make your life a whole lot easier, by the way, to import an XSD and bind your nodes, especially as your forms and data start to get more complex.
    Finally, you may also know this but -- unless you have Forms Server, any user that wants to export the data or import the data will need to have at least full Acrobat Professional. If you want people to be able to save data in the form but import/export isn't that important, they will need to have full Acrobat.
    I hope that helps a bit. Good luck!
    Lisa

  • Writing metadata back into photos without exporting each file

    I am most likely going to be switching from PC to Mac. I currently use Adobe Photoshop Elements to organize my photos. I like iphoto, but it is lacking a lot of the features I enjoy in Elements.
    One feature that I use a lot in Elements that I can't seem to find in iphoto is writing of keywords, descriptions, and GPS data back into the metadata for the file. In Elements, you click a button and the data is written into the original file. But, how do I do that in iphoto? Do I have to export it? That seems strange to me.
    -Debbie

    You can do it with the demo version ofMedia Expression. But you only have about a 20 day window to use the application. Follow the first 8 steps of Old Toad's Tutorial #1 - Recovering Keywords and Rolls From a Damages or Crashed iPhoto 6 or 7 Library for a New Library.. It applies to iPhoto 8 also.

  • Help needed for writing query

    help needed for writing query
    i have the following tables(with data) as mentioned below
    FK*-foregin key (SUBJECTS)
    FK**-foregin key (COMBINATION)
    1)SUBJECTS(table name)     
    SUB_ID(NUMBER) SUB_CODE(VARCHAR2) SUB_NAME (VARCHAR2)
    2           02           Computer Science
    3           03           Physics
    4           04           Chemistry
    5           05           Mathematics
    7           07           Commerce
    8           08           Computer Applications
    9           09           Biology
    2)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2) SUB_ID1(NUMBER(FK*)) SUB_ID2(NUMBER(FK*)) SUB_ID3(NUMBER(FK*)) SUBJ_ID4(NUMBER(FK*))
    383           S1      9           4           2           3
    384           S2      4           2           5           3
    ---------I actually designed the ABOVE table also like this
    3) a)COMBINATION
    COMB_ID(NUMBER) COMB_NAME(VARCHAR2)
    383           S1
    384           S2
    b)COMBINATION_DET
    COMBDET_ID(NUMBER) COMB_ID(FK**) SUB_ID(FK*)
    1               383          9
    2               383          4
    3               383          2
    4               383          3
    5               384          4
    6               384          2          
    7               384          5
    8               384          3
    Business rule: a combination consists of a maximum of 4 subjects (must contain)
    and the user is less relevant to a COMB_NAME(name of combinations) but user need
    the subjects contained in combinations
    i need the following output
    COMB_ID COMB_NAME SUBJECT1 SUBJECT2      SUBJECT3      SUBJECT4
    383     S1     Biology Chemistry      Computer Science Physics
    384     S2     Chemistry Computer Science Mathematics Physics
    or even this is enough(what i actually needed)
    COMB_ID     subjects
    383           Biology,Chemistry,Computer Science,Physics
    384           Chemistry,Computer Science,Mathematics,Physics
    you can use any of the COMBINATION table(either (2) or (3))
    and i want to know
    1)which design is good in this case
    (i think SUB_ID1,SUB_ID2,SUB_ID3,SUB_ID4 is not a
    good method to link with same table but if 4 subjects only(and must) comes
    detail table is not neccessary )
    now i am achieving the result by program-coding in C# after getting the rows from oracle
    i am using oracle 9i (also ODP.NET)
    i want to know how can i get the result in the stored procedure itsef.
    2)how it could be designed in any other way.
    any help/suggestion is welcome
    thanks for your time --Pradeesh

    Well I forgot the table-alias, here now with:
    SELECT C.COMB_ID
    , C.COMB_NAME
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID1) AS SUBJECT_NAME1
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID2) AS SUBJECT_NAME2
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID3) AS SUBJECT_NAME3
    , (SELECT SUB_NAME
    FROM SUBJECTS
    WHERE SUB_ID = C.SUB_ID4) AS SUBJECT_NAME4
    FROM COMBINATION C;
    As you need exactly 4 subjects, the columns-solution is just fine I would say.

  • Write Data Back into SLD

    I'm curious what the "Write Data Back into SLD" option of the Expert Settings of SMSY_SETUP does. The help is not very informative.
    What does the setting do?
    What is a recommended setting?

    the "Write Data Back into SLD" option of the Expert Settings of SMSY_SETUP is only for Adaptive Computing, where it has to be set to 'A'.
    Otherwise this option is obsolete and should not be used!
    Originally this was intended for the case that SMSY is the primary data source. The SLD gets its data directly from the systems and SMSY should only read the system information and not write into the SLD (besides the Adaptive Computing case).

  • I delete an individual message but the time I received the message is still showing next to the persons name in my inbox instead of going back into the correct date/time order. Anyone know how to fix this?

    I delete an individual message but the time I received the message is still showing next to the persons name in my inbox instead of going back into the correct date/time order. Anyone know how to fix this?

    SOLUTION
    Open "terminal" on your mac and type the following:
    defaults write com.apple.mail IgnoreSortOrderWhenSelectingAfterDelete 1
    (copy and past the whole line)
    This will stop that behaviour in mail. 
    It works on most opperating systems.
    mine is.
    Mac OSx 10.7.2 Lion
    Cheers

  • I deleted gardens of time yesterday and need to get it back with the current data and progress. Is this possible?

    I deleted gardens of time yesterday and need to get it back with the current data and progress. Is this possible?

    Is that on an iPad, iPod Touch or iPhone?

  • TS1702 how to transfer all my music, movies, and application from my new iPhone5 to Computer.  All my music, movies, and apps have been deleted from my computer, thankfully I still have them all in my iPhone.  I need to transfer everything back into my PC

    how to transfer all my music, movies, and application from my new iPhone5 to Computer.  All my music, movies, and apps have been deleted from my computer, thankfully I still have them all in my iPhone.  I need to transfer everything back into my PC.. Help!

    You need a third-party program lke one of those discussed here:
    newer copy

  • How to convert a data set into a xml data and vice versa

    i am new to oracle with xml..
    my aim is to convert a data set into a xml data and vice versa..
    my work is as follows...
    my query:
    select rggpk,rggcode,rggname from ms_regiongeo
    to convert a data set into a xml*
    select XMLType(trim(replace(dbms_xmlgen.getXML('select rggpk,rggcode, rggname from ms_regiongeo'),'<?xml version="1.0"?>',''))) XML_DATA from dual;
    (this works fine and output of this query is as follows..)
    <ROWSET>
    <ROW>
      <RGGPK>201</RGGPK>
      <RGGCODE>Asia</RGGCODE>
      <RGGNAME>Asia</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>1</RGGPK>
      <RGGCODE>OTH</RGGCODE>
      <RGGNAME>Others</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>21</RGGPK>
      <RGGCODE>COB</RGGCODE>
      <RGGNAME>Africa and Yemen</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>2</RGGPK>
      <RGGCODE>AUS</RGGCODE>
      <RGGNAME>Australia</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>23</RGGPK>
      <RGGCODE>IND</RGGCODE>
      <RGGNAME>Indian Sub Continent</RGGNAME>
    </ROW>
    <ROW>
      <RGGPK>24</RGGPK>
      <RGGCODE>TVM</RGGCODE>
      <RGGNAME>North America</RGGNAME>
    </ROW>
    </ROWSET>
    and to reverse this process, I tried a query like this..*
    select EXTRACTVALUE (XML_DATA,'ROWSET/ROW/RGGPK') as EMP_ID
    from(
            select XMLType(trim(replace(dbms_xmlgen.getXML('select rggpk,rggcode, rggname from ms_regiongeo'),'<?xml version="1.0"?>',''))) XML_DATA from dual
    )tab1but failed.. and raised with an eror: ORA-19025
    help me..
    regards,
    john

    Hi-
    my aim is to convert a data set into a xml data  You can refer to the below posts
    Adding namespace to XML output
    Re: how to convert table data in xml format based on the xsd.

  • Searching for worksheet name in master worksheet then copying data back into worksheet name

    I have a workbook with 100+ worksheets. I have a 'Data' worksheet that includes data for the 100+ worksheets. I would like a macro to find the worksheet name in the 'Data' worksheet and copy the data below into the worksheet name.
    For example, The first worksheet is named "Trains".  I go through the 'Data' worksheet, look under column A for "Trains", then copy the data below "Trains", and paste into the 'Trains' worksheet. The data in the
    'Data' worksheet is separated by a blank row.

    I have assumed that your data is like the diagram below and that the data should be added at the bottom of column A of each sheet.
    <Blank row>
    Trains  <On its own row>
    <Data row>
    <Data row>
    <Etc....>
    <Blank row>
    Sub TestMacro()
        Dim w As Worksheet
        Dim R As Range
        For Each w In Worksheets
            If w.Name <> "Data" Then
                Set R = Worksheets("Data").Cells.Find(w.Name)
                If Not R Is Nothing Then
                    Set R = R.CurrentRegion
                    Set R = R.Offset(1).Resize(R.Rows.Count - 1)
                    R.Copy w.Cells(w.Rows.Count, "A").End(xlUp)(2)
                End If
            End If
        Next w
    End Sub

  • Hard drive crashed and need to transer songs back into iTunes from my iPod

    Help! I'm a newbie to this site, so I don't know if this question has been asked before, so please forgive me if it's been posted 1,000 times! My hard drive crashed so I had to have everything reinstalled on my laptop. I've got iTunes back, but it won't allow me to transfer my songs from my iPod into iTunes- I know Apple doesn't want people sharing their iPod libraries with each other so that we'll all still pay for songs, but I don't want to lose everything on my iPod or have to pay for the songs I bought again to get them back into iTunes. Is there any way I can get iTunes to download the songs back into it from my iPod? I heard of Senuti, but that only works for MAC users, and I'm on Windows XP. Any suggestions? TIA!

    1) Make sure you can view hidden files. In MY computer go to tools>folder options>view>show hidden files and folders.
    2) Windows should see the ipod and your music should be on your ipod in several hidden folders. To be safe I would copy it all to say your desktop.
    3) Install Itunes http://www.apple.com/itunes/download/ and the Ipod updater http://www.apple.com/ipod/download/ (if you don't already have it installed)
    After that drag the copied folder to Itunes (drag and drop or in Itunes (File>add folder to library)
    4) Plug ipod back in Itunes should see it and want to delete the contents say yes as it should all now be in your library.
    YOu may need to authorise Itunes music store again by playing one of the purchased songs and than logging into your account.

  • I have itunes and i need it to get back into my iphone 5 I am locked out of. it says i have to allow acess on my phone.......i am locked out how can i do that??

    can you help me get back into my phone i really need to use it!

    What exactly does the message say?
    No one here is a mind reader, if help is desired, stop being vague and provide specifics of the issue.

  • Need help writing PHP if statement using a date comparison

    Using PHP/mySQL
    have item records with timestamp at insert in column items.item_listed
    want to show an image that says 'Item expired', if timestamp is over 60 days ago.
    thanks for your help,
    Jim Balthrop

    integer strtotime(string time)
    The function interprets several standard representations of a date, as shown here:
    // Absolute dates and times
    $var = strtotime("25 December 2002");
    $var = strtotime("14/5/1955");
    $var = strtotime("Fr1, 7 Sep 2001 10:28:07 -1000");
    // The current time:
    $var = strtotime("now");
    // Relative times
    echo strtotime("+1 day");
    echo strtotime("-2 weeks");
    echo strtotime("+2 hours 2 seconds");
    Care should be taken when using strtotime( ) with user-supplied dates. It's better to limit the use of strtotime( ) to cases when the string to be parsed is under the control of the script, for example, checking a minimum age using a relative date:
    // date of birth:
    $dob = mktime(0, 0, 0, 16, 8, 1982);
    // Now check that the individual is over 18
    if ((float)$dob < (float)strtotime("-18 years"))   echo "Legal to drive in the state of Victoria";
    In your example, you want to simply add 60 days to the timestamp as it relates to the current date and echo the statement based on if else criteria being met.

  • Is there a way to import midi data BACK into ultrabeat?

    I'm sitting here arranging a new song, programming all the drums into ultrabeat.  I clicked on the drum sounds, expecting to keep everything that I've worked on - when to my surprise I realized it went back to every sample pattern.
    I have some sections already pasted into the arrange window - and yes, i can just copy them and move forward, but i haven't tweaked anything yet, and all the drums are the same volume blah blah blah.  Is there anyway to import a segment from the arrange window that were created with ultrabeat BACK into ultrabeat?

    No.
    But you haven't lost anything.  Velocities/grid placement can easily be adjuted in the piano roll.  The volume in UB's mixer, as well as any of the voices parameters don't care if UB is running it's sequencer or playing notes from a region.  Unless you are programming step automation ("yellow mode").

  • Data load into SAP ECC from Non SAP system

    Hi Experts,
    I am very new to BODS and I have want to load historical data from non SAP source system  into SAP R/3 tables like VBAK,VBAP using BODS, Can you please provide steps/documents or guidelines on how to achieve this.
    Regards,
    Monil

    Hi
    In order to load into SAP you have the following options
    1. Use IDocs. There are several standard IDocs in ECC for specific objects (MATMAS for materials, DEBMAS for customers, etc., ) You can generate and send IDocs as messages to the SAP Target using BODS.
    2. Use LSMW programs to load into SAP Target. These programs will require input files generated in specific layouts generated using BODS.
    3. Direct Input - The direct input method is to write ABAP programs targetting on specific tables. This approach is very complex and hence a lot of thought process needs to be applied.
    The OSS Notes supplied in previous messages are all excellent guidance to steer you in the right direction on the choice of load, etc.,
    However, the data load into SAP needs to be object specific. So targetting merely the sales tables will not help as the sales document data held in VBAK and VBAP tables you mentioned are related to Articles. These tables will hold sales document data for already created articles. So if you want to specifically target these tables, then you may need to prepare an LSMW program for the purpose.
    To answer your question on whether it is possible to load objects like Materials, customers, vendors etc using BODS, it is yes you can.
    Below is a standard list of IDocs that you can use for this purpose to load into SAP ECC system from a non SAP system.
    Customer Master - DEBMAS
    Article Master - ARTMAS
    Material Master - MATMAS
    Vendor Master - CREMAS
    Purchase Info Records (PIR) - INFREC
    The list is endless.........
    In order to achieve this, you will need to get the functional design consultants to provide ETL mapping for the legacy data to IDoc target schema and fields (better to ahve sa tech table names and fields too). You should then prepare the data after putting it through the standard check table validations for each object along with any business specific conversion rules and validations applied. Having prepared this data, you can either generate flat file output for load into SAP using LSMW programs or generate IDoc messages to the target SAPsystem.
    If you are going to post IDocs directly into SAP target using BODS, you will need to create a partner profile for BODS to send IDocs and define the IDocs you need as inbound IDocs. There are few more setings like RFC connectivity, authorizations etc, in order for BODS to successfully send IDocs into the SAP Target.
    Do let me know if you need more info on any specific queries or issues you may encounter.
    kind regards
    Raghu

Maybe you are looking for

  • Purchase order status tab(header data) field correction program

    Hi, Is there any correction program to correct status tab header details(purchase order - ME23N) ? There is a mismatch between order quantity,delivered quantity & still to deliver quantity, I want to correct these data. Please respond, if any thing c

  • Ethernet not working after suspend

    I am having this problem, when I suspend my computer for a long period of time the eth0 interface disappears. I then have to restart my computer multiple times before eth0 appears again. I'm not sure what is causing this. I've tried restarting networ

  • Pages can't read a file I created yesterday

    I spent hours working on a document yesterday that was very important to me, saving it regularly. When I came back to it today, it said that Pages cannot open the file because the format is not supported. I can't open it with Text Edit, either. It wa

  • Write Protection in Acrobat X

    Hi all, I wonder if any of you had the following problem before and knows how to fix it: when I open a PDF file with Acrobat X the document is write protected, so I have to use "Save as" every time and save it with a new name. I'm using Windows 7 64b

  • Internal Table Manipulation

    Hi, I have an internal tables with 5 fields each of type Char - L1 L2 L3 L4 L5. I have to make the first occurance of 0 after a non zero value as 1. Example: if i have the values as 1 0 0 0 0, it s'd be made 1 1 0 0 0. If 1 1 0 0 0 it s'd be made 1 1