Need help in Marketing scenario (I think difficult)

Hi folks,
Hi need some help in my marketing scenario. I posted the message in marketing section. You can see it in [Interesting and difficult marketing business process... any ideas?|Interesting and difficult marketing business process... any ideas?;
Thanks to all in advance
Javier

Hi [email protected],
I have cancelled your subscription, and set the refund process in motion.
Your refund no.is 66228048.
Regards,
Florence

Similar Messages

  • Need help for asynchr. scenario between 4.6c and XI

    Hi,
    I need some help with this.  We are running 4.6c and now I need to talk to XI 3.0 asynchronously.
    I have a situation where I need to send data to an external application.
    So: R/3(4.6c) -> XI -> external application (the application is not in our landscape).
    It's not required for now to get an answer back from the external application so what are my options?
    I want to build my solution around that I will eventually get a response back to be real time but
    for now, the FTP adapter should work fine.  PCK will be implimented in the future to make it real time.
    Just for a test, I tried:
    R/3 -- (RFC Adapter) --> XI --> File adapter ...   but it's crashing in R/3 since R/3 is expecting
    a response back.  If I setup two receivers in XI (one being R/3 and the other the file adapter, then it's crashing in XI saying since I cannot have two receivers for a synchronist request.)
    I was looking to use an ABAP proxy but from what I'm reading, it cannot be used in 4.6c.
    So what are my options? Is it only trough an IDoc that I can communicate out of R/3 to XI if my request don't required a response back?
    Thanks
    Yves

    Hi Yves.
    For a 4.6 R/3 system the only possible options are the RFC adapter and the Idoc adapter.
    The Idoc adapter is used for async processing (no reponse)
    The RFC adapter is used for sync processeing (and will therefore always expect a respons message)
    The File adapter also onlu supports async (no response) processing.
    There are two ways to solve your problem:
    1. Create a Idoc to file scenario
    2. Use the sync to async bridge
    On help.sap.com you can fing documentation on this scenario:
    http://help.sap.com/saphelp_nw04/helpdata/en/83/d2a84028c9e469e10000000a1550b0/frameset.htm
    Best regards,
    Alwin

  • Need help for a scenario

    Hi all,
    There are 6 DSOs .Let them be A1,A2,B1,B2,C1,C2.
    I need data union of 2 dsos.
    Means union of A1,A2  and union of B1,B2 and union of C1,C2.A1
    Then I need common records(JOIN) of three sets.All the fields in A1,A2 are not the same.There will be small differences.
    Can anyone suggest the possible ways to approach this scenario.

    Hi,
    You can create 3 DSOs to get the union from two - two DSOs. Meaning your A1 and A2 will feed DSO D1, B1 and B2 will feed DSO D2, similarly C1 and C2 will feed DSO D3. This way you will get Unions in D1, D2 and D3.
    Now to get common data (Joins) from these three DSOs, create an InfoSet based on D1, D2 and D3. This will give you intersection of D1, D2, and D3.
    Hope it helps.
    Regards,
    Yogesh.

  • Need help with Logic Error(I think?)

    Hello. The following is a program I am creating to calculate the start value of a gymnastics routine, the basics are as follows(And not everything is implemented yet):
    In gymnastics there are the aparatuses, then skill group codes, then "skills" a-g or something like that(My brother is the gymnast, i'm the programmer). Basically as of right now im testing the logic of actually adding up the values based on which option they choose, since the options are strings, i set the strings into an array and then i have a score value array(Values are random at this point).
    The problem is, the totalvalue(i think its called that) number is not showing up. There is something wrong in the way i order the things.
    This compiles PERFECTLY and runs, and everything is right except the showing up of a number which should show when you choose options in the combo boxes.
    Here is the code, help please :)!!!
    Main:
    //GymnasticsMain.java
    //The Main top program - calls the panels.
    //By: Ian Coolidge
    //June 5, 2007
    import javax.swing.*;
    public class GymnasticsMain
         //Calls all the panels, they can be found under their names
         public static void main (String[] args)
          JFrame frame = new JFrame ("Gymnastics Super Program");
          frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
          GymnasticsControls controlPanel = new GymnasticsControls();
          frame.getContentPane().add(controlPanel);
          frame.pack();
          frame.setVisible(true);
    }The Guts of the program:
    //GymnasticsCrontrols.java
    //This creates the actual guts of the program, you know, the buttons and menus and the such
    //By: Ian Coolidge
    //June 5, 2007
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.AudioClip;
    import java.net.URL;
    import java.lang.*;
    public class GymnasticsControls extends JPanel
         private JComboBox GymApparatus;
         private JComboBox GymGroupCode;
         private JLabel label;
         private JLabel scoreLabel;
         private double currentApparatus;
         private double currentCode;
         private String ScoreLine;
         private double TotalValue;
         private double[] score = new double[20];
         public GymnasticsControls()
         score[0] = 1.2;
         score[1] = 1.4;
         score[2] = 0.5;
         score[3] = 0.2;
         score[4] = 2.2;
         score[5] = 0.7;
         score[6] = 0.2;
         score[7] = 0.2;
         score[8] = 6.2;
         score[9] = 3.2;
         score[10] = 2.2;
         score[11] = 0.76;
         score[12] = 0.378;
         score[13] = 0.87;
         score[14] = 0.19784;
         score[15] = 0.1278;
         score[16] = 0.2834;
         score[17] = 0.3534;
         score[18] = 0.323;
         score[19] = 0.45;
              ScoreLine = "Your starting value is: "+TotalValue;
              scoreLabel = new JLabel(ScoreLine);
              //The following is the declaration of the list of options in the drop down menus
              String[] Apparatus = {"Apparatus", "Floor", "Pommel", "Vault", "Rings", "PBars", "High Bar"};
              GymApparatus = new JComboBox (Apparatus);
              GymApparatus.setAlignmentX (Component.LEFT_ALIGNMENT);
              String[] GroupCode = {"Group Code", "I", "II", "III", "IV", "V"};
              GymGroupCode = new JComboBox (GroupCode);
              GymGroupCode.setAlignmentX (Component.LEFT_ALIGNMENT);
              //Sets up the panel
              add (scoreLabel);
              setPreferredSize (new Dimension (300, 100));
              setBackground (Color.cyan);
              setLayout (new BoxLayout (this, BoxLayout.Y_AXIS));
              add (Box.createRigidArea (new Dimension(0,5)));
              add (GymApparatus);
              add (Box.createRigidArea (new Dimension(0,5)));
              add (GymGroupCode);
              add (Box.createRigidArea (new Dimension(0,5)));
              GymApparatus.addActionListener (new ComboListener());
              GymGroupCode.addActionListener (new ComboListener());
              TotalValue = currentApparatus + currentCode;
              private class ComboListener implements ActionListener
                   public void actionPerformed (ActionEvent event)
                        //Should assign a number based on the number string to whatever is chosen in the drop down menu
                        currentApparatus = score[GymApparatus.getSelectedIndex()];
                        currentCode = score[GymGroupCode.getSelectedIndex()];
    }I tried moving stuff all around, and it still doesn't work. Thanks very much for all the help!
    -Ian

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.AudioClip;
    import java.net.URL;
    import java.lang.*;
    public class GymnasticsControls extends JPanel
         private JComboBox GymApparatus;
         private JComboBox GymGroupCode;
         private JLabel label;
         private JLabel scoreLabel;
         private double currentApparatus;
         private double currentCode;
         private String ScoreLine;
         private double TotalValue;
         private double[] score = new double[20];
         public GymnasticsControls()
         score[0] = 1.2;
         score[1] = 1.4;
         score[2] = 0.5;
         score[3] = 0.2;
         score[4] = 2.2;
         score[5] = 0.7;
         score[6] = 0.2;
         score[7] = 0.2;
         score[8] = 6.2;
         score[9] = 3.2;
         score[10] = 2.2;
         score[11] = 0.76;
         score[12] = 0.378;
         score[13] = 0.87;
         score[14] = 0.19784;
         score[15] = 0.1278;
         score[16] = 0.2834;
         score[17] = 0.3534;
         score[18] = 0.323;
         score[19] = 0.45;
              ScoreLine = "Your starting value is: "+TotalValue;
              scoreLabel = new JLabel(ScoreLine);
              //The following is the declaration of the list of options in the drop down menus
              String[] Apparatus = {"Apparatus", "Floor", "Pommel", "Vault", "Rings", "PBars", "High Bar"};
              GymApparatus = new JComboBox (Apparatus);
              GymApparatus.setAlignmentX (Component.LEFT_ALIGNMENT);
              String[] GroupCode = {"Group Code", "I", "II", "III", "IV", "V"};
              GymGroupCode = new JComboBox (GroupCode);
              GymGroupCode.setAlignmentX (Component.LEFT_ALIGNMENT);
              //Sets up the panel
              add (scoreLabel);
              setPreferredSize (new Dimension (300, 100));
              setBackground (Color.cyan);
              setLayout (new BoxLayout (this, BoxLayout.Y_AXIS));
              add (Box.createRigidArea (new Dimension(0,5)));
              add (GymApparatus);
              add (Box.createRigidArea (new Dimension(0,5)));
              add (GymGroupCode);
              add (Box.createRigidArea (new Dimension(0,5)));
              GymApparatus.addItemListener(new ComboListener());
              GymGroupCode.addItemListener(new ComboListener());
              TotalValue = currentApparatus + currentCode;
              private class ComboListener implements ItemListener
                   public void itemStateChanged(ItemEvent event)
                        //Should assign a number based on the number string to whatever is chosen in the drop down menu
                        currentApparatus = score[GymApparatus.getSelectedIndex()];
                        currentCode = score[GymGroupCode.getSelectedIndex()];
                        TotalValue = currentApparatus ;
                        scoreLabel.setText("Your starting value is: " + TotalValue);
    }Check the above modified code. Its an example. ItemListener added instead of ActionListener

  • Need help in design scenario

    Hi experts,
    I have a scenario in which XI put an xml file in a destination server (very simple scenario, SAP>Proxy>File receiver CC).
    The new request is: to make a call to SAP after having put file in destination.
    In this call I have to write to SAP that file has been written successfully to destination.
    My collegues told me to add a RFC call to SAP in my scenario, is it the correct way?
    I'm not skilled about that.
    Thanks
    Fabio Boni

    Hi Fabio,
    If you want to achive this scenarion without BPM then you need to create 2 diffrent scneraio,.
    !) Your first scnario:
    SAP -Proxy-File receiver( It will write the file in Folder A)
    2) Second scenario:
    File sender to RFC receiver
    File sender will poll the folder A for files.If file is available in Folder A then this 2nd scenarion will trigger.
    Create some constant mapping in the target RFC structure. and make a call to RFC using receiver RFC adapter.
    So here If you pick the file from Folder A then you need to delete it or Archive it from the source folder.
    Sender file adapter has both the options of delete or Archive.
    If you archive the file to folder B in sender file adapter  itself then your receiver RFC can find the File from Folder B.

  • Need help on idoc scenario

    Hi,
    I am working on idoc to file scenario.
    if idoc has some modification has done then what are the procedure do i follow.
    Is it necessery to import idoc again and do th mapping.
    Give me suggestions.
    Thanks,
    Seenu.

    Hi,
    Idoc Metadata is required in the PI System. Once the Scenario runs there should be a reference structure in PI to know what the IDoc Structure is.
    IDX2 step is not mandatory, Idoc Metadata will get automatically created in the PI server once you run the scenario. If still the Metadata is not present then add through IDX2. Provide IDX1 port configurations are correct.
    Also, in your case it's better to reimport Idoc to PI system as the structure is changed in the SAP R/3 system for Idoc.
    In PI 7.1, u can make the changes in the Mapping itself to the structure, the Mapping wn't be affected. In PI 7.0, if u do any changes in the structure , Mapping will be affected. Need to re do the Mapping.
    Thanks,
    Sreejith

  • Need help with this scenario....

    Hi, here I want the out amount to be calculated with the variable ranges..
    I attached the report output.
    I took doc.no and doc.date in column,
    restricted doc.date with current day ( date changed to  05.05.2006)
    2 variables as manual entry, 2 variables as customer exit.
    with those manual entry variables i calculated different dates for 2 customer exit variables using ABAP
    everything is going fine till here.
    when i drag amount in a selection n restrict it with range of customer exit variables in doc.date
    the output does not shows the value for the range
    its just show the output  for the particular date 
    dates
    05.05.2006
    05.04.2006
    i want the output to show the total sum of amount for 30 days (or the no. which user enters)

    Hi Praveen,
    i hope this is what your requirement(sample output as below):-
    Customer
    Amount(01.05.2006 - 05.05.2006)
    Amount(06.05.2006 - 10.05.2006)
    C1
    $100
    $500
    C2
    $200
    $700
    if so, can we do this way: on KF1, restrict the document date with user input variable 1
    and KF2 with user input variable 2.
    if user enters first user input variable as  01.05.2006 - 05.05.2006
    and the same way for the second one. in that case, no  need of further logic to determine the variable ranges.
    Let us know if this works?
    Regards,
    Sakthi.

  • Auto Loading on FDM - Need help with this scenario

    Okay, I just waNt to know if there is a better way to load data from FDM to HFM.
    We have txt files containing data for every month. For example, there 12 files for year 2007 (1 file per month) for one country and similarly we have data arranged in this manner for every country.
    Now, what we are doing is that we are taking every file (every month) and loading it one after the other doing the FDM process of import, validate, export and check. This process is taking too long because we have to load monthly data for every year AND for every country. Too many files to load.
    Now, how can batch loading solve this problem. Where is the script written on FDM to do this process. Currently, the files for importing (monthly files) are NOT located in Inbox but a different directory. Would copying all these files into Inbox make it any better?
    This could save our company enormous amount of time loading and so I would certainly appreciate a better work around?
    There must be a way by which these loading of every file can be automated. Let me know. I have no idea about the script that is used but is the script present on the FDM admin manual for batch loading what we have to copy paste? Thanks.
    -- Adi

    Adi,
    This is why I originally stated that more advanced scripting might be needed.
    If there is an error, it stops at the error. You can then either manually run a report or check the fish status inside of the FDM web interface. If you wanted something to automatically be done when an error is encounted, the more advance scripting is required.
    As for the invalid map, it would stop just as it would from the web interface. The BatchLoader assumes you have all your information correct and that loads will be sucessfull.
    There is a feature called 'AutoMapCorrect' that is explained in the Admin doc as well. It is used to push all non-mapped data to a particular value. You then would need more advanced scripting to either let you know it automapped values, or run batch reports manually. Then you would need to correct the 'pushed' mapping to actual values and reload the data (import, validated, export, check)
    Thank you.

  • Need help on one scenario

    Hi,
    I have one scenario, how i can implement it using BODS:
    A logic will be developed on to verify Value dependency fields which are going to be exposed on Portal through API calls.
    Eg.:If attribute X has value A- --> Possible values for field Y are B, C, D and Possible values for field Z are E, F, G
    Thanks,
    Vicky

    Vicky
    What is your back end Database??
    version of SAP BODS??
    I'm Back

  • Need help with boot up password

    Hi I need help with my IBM G41 think pad I when to sleep one night and I put some papers on the keys then close the lid with the papers in between on top of the keys now I get need a password when I started my PC can some some help me with this . Or is there any one whom had this some problem . I see a lock on the screen .

    Sorry if this seems like a stupid question, but why don't you have the password already? did the computer just randomly lock you out of it? If that is the case, that would be really strange. If there is no bios password on the computer, you should be able to reset the password in the bios.
    http://www.google.com/search?q=lenovo+boot+password+reset&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:defficial&client=firefox-a

  • Need help on SQL Statement for UDF

    Hi,
    as I am not so familiar with SQL statements on currently selected values, I urgently need help.
    The scenario looks as follows:
    I have defined two UDFs named Subgroup1 and Subgroup2 which represent the subgroups dependent on my article groups. So for example: When the user selects article group "pianos", he only sees the specific subgroups like "new pianos" and "used pianos" in field "Subgroup1". After he has selected one of these specific values, he sees only the specific sub-subgroups in field "Subgroup2", like "used grand pianos".
    I have defined UDTs for both UDFs. The UDT for field "Subgroup1" has a UDF called "ArticleGroup" which represents the relation to the article group codes. The UDT for field "Subgroup2" has a UDF called "Subgroup1" which represents the relation to the subgroups one level higher.
    The SQL statement for the formatted search in field "Subgroup1" looks as follows:
    SELECT T0.[Name] FROM [dbo].[@B_SUBGROUP1]  T0 WHERE T0.[U_ArticleGroup]  = (SELECT $[OITM.ItmsGrpCod])
    It works fine.
    However, I cannot find the right statement for the formatted search in field "Subgroup2".
    Unfortunately this does NOT WORK:
    SELECT T0.[Name] FROM [dbo].[@B_SUBGROUP2]  T0 WHERE T0.[U_Subgroup1]  = (SELECT $[OITM.U_Subgroup1])
    I tried a lot of others that didn't work either.
    Then I tried the following one:
    SELECT T0.[Name] FROM [dbo].[@B_SUBGROUP2]  T0 WHERE T0.[U_Subgroup1] = (SELECT T1.[Code] FROM [dbo].[@B_SUBGROUP1] T1 WHERE T1.[U_ArticleGroup] = (SELECT $[OITM.ItmsGrpCod]))
    Unfortunately that only works as long as there is only one specific subgroup1 for the selected article group.
    I would be sooooo happy if there is anyone who can tell me the correct statement for my second UDF!
    Thanks so much in advance!!!!
    Edited by: Corinna Hochheim on Jan 18, 2010 10:16 PM
    Please ignore the "http://" in the above statements - it is certainly not part of my SQL.
    Please also ignore the strikes.

    Hello Dear,
    Use the below queries to get the values:
    Item Sub Group on the basis of Item Group
    SELECT T0.[Name] FROM [dbo].[@SUBGROUP]  T0 WHERE T0.[U_GroupCod] =$[OITM.ItmsGrpCod]
    Item Sub Group 1 on the basis of item sub group
    SELECT T0.[Name] FROM [dbo].[@SUBGROUP1]  T0 WHERE T0.[U_SubGrpCod]=(SELECT T0.[Code] FROM [dbo].[@SUBGROUP]  T0 WHERE T0.[Name] =$[OITM.U_ItmsSubgrp])
    Sub group 2 on the basis of sub group 1
    SELECT T0.[Name] FROM [dbo].[@SUBGROUP2]  T0 WHERE T0.[U_SubGrpCod1]=(SELECT T0.[Code] FROM [dbo].[@SUBGROUP1]  T0 WHERE T0.[Name] =$[OITM.U_ItmsSubgrp1])
    this will help you.
    regards,
    Neetu

  • Need Help About AC or battery or pc :(

    Hello!
    i am kinda new to the forum,i have GT70 2pe dominator pro laptop(bought from ibuypower) When i play demanding games,my ac unplugs itself from the laptop i dont know what to do ,i updated ec,bios,did the ec reset,battery calibration(from msi support page), but i did these long time ago i dont know if this started then or the problem was already on pc when i bought it,i didnt test playing demanding games before i did those things
    I tried playing w/o battery sometimes when the game loads laptop shuts down
    So i really need help..? 

    i think i have the correct model,well if it is going to fail can i use it until i buy a new one 2 weeks later?,i mean is this going to do harm to my computer until i get a new one?
    Thanks for the help  (sorry about the full sized picture)

  • .R3D Error & unsuported need Help Please

    I have Donwloaded .R3D file from the link below,
    http://www.reduser.net/forum/showthread.php?66510-So-what-can-you-do-with-a-Scarlet-X
    just wanted to try them in my editing system, but each time I try to import the files its says (unsupported or damaged file error). I have also updated the latest version of premiere CS5 - 5.0.3 & After effect CS5 - 10.0.2
    I work on Adobe CS5
    My editing system is:
    i7 980x extreme
    24 GB ram DDR3
    120 SSD Drive OS
    2TB HDD Drive
    GTX 480
    Please need help in this problem

    hello
    I think default red support is for regular red one only. For scarlet/epic you have to install an installer from adobe labs - http://labs.adobe.com/technologies/redepic_importer/ . But I think it works only with CS5.5 (not sure) so if you have regular CS5 then you may be out of luck.

  • Hello guys need help with reverse array

    Need help reversing an array, i think my code is correct but it still does not work, so im thinking it might be something else i do not see.
    so far the input for the array is
    6, 25 , 10 , 5
    and output is still the same
    6 , 25 , 10 , 5
    not sure what is going on.
    public class Purse
        // max possible # of coins in a purse
        private static final int MAX = 10;
        private int contents[];
        private int count;      // count # of coins stored in contents[]
         * Constructor for objects of class Purse
        public Purse()
           contents = new int[MAX];
           count = 0;
         * Adds a coin to the end of a purse
         * @param  coinType     type of coin to add
        public void addCoin(int coinType)
            contents[count] = coinType;
            count = count + 1;
         * Generates a String that holds the contents of a purse
         * @return     the contents of the purse, nicely formatted
        public String toString()
            if (count == 0)
                return "()";
            StringBuffer s = new StringBuffer("(");
            int i = 0;
            for (i = 0; i < count - 1; ++i)
                s.append(contents[i] + ", "); // values neatly separated by commas
            s.append(contents[i] + ")");
            return s.toString();
         * Calculates the value of a purse
         * @return     value of the purse in cents
        public int value()
            int sum = 0; // starts sum at zero
            for( int e : contents) // sets all to e
                sum = sum + e; //finds sum of array
            return sum; //retur
         * Reverses the order of coins in a purse and returns it
        public void reverse()
           int countA = 0;
           int x = 0;
           int y = countA - 1;                                          // 5 - 1 = 4
           for (int i = contents.length - 1; i >=0 ; i--)                        // 4, 3 , 2, 1, 0
                countA++;                                             // count = 5
            while ( x < y)
                int temp = contents[x];
                contents[x] = contents [y];
                contents [y] = temp;
                y = y- 1;                                         // 4 , 3 , 2, 1 , 0
                x = x + 1 ;                                             // 0 , 1,  2  , 3 , 4
    }

    ok so i went ahead and followed what you said
    public void reverse()
          int a = 0;
          int b = contents.length - 1;
          while (b > a)
              int temp = contents[a];
              contents[a] = contents;
    contents [b] = temp;
    a++;
    b--;
    }and its outputting { 0, 0, 0, 0}
    im thinking this is because the main array is has 10 elements with only 4 in use so this is a partial array.
    Example
    the array is { 6, 25, 10, 5, 0, 0, 0, 0, 0, 0,}
    after the swap
    {0, 0 , 0 , 0, 0 , 0 , 5 , 10 , 25, 6}
    i need it to be just
    { 5, 10, 25, 6}
    so it is swapping the begining and end but only with zeroes the thing is i need to reverse the array without the zeroes                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Multiple Source Messages Scenario - Need help

    Hi,
    This is my scenario.
    System A sends Message A
    System B sends message B
    both of them are diffrent strcutures.
    Now I need to map both of the messages to Message C and send it to system C.
    I would need help on how to achive this requirement.
    I tried using correlation in BPM but i dont know if I'm following the right approach to activate correlation.
    Any help in this regard would be appreciated.
    Cheers!!
    Sidharth

    Hi,
    I've gone through the thread but did not find much information.
    The blog talks about collecting messages for same interface which I'm afraid is not wht I'm looking for.
    Just to summarize wht I've done....
    Start --> Receive 1 (Message A) --> Receive 2 (Message B) --> Transformation --> Send 1 (Message C) --> Stop
    I've defined correlation accordingly... to pick up the PO num field.
    Now when message A is submitted the outbound status on sxmb_moni is set to waiting....
    But the moment I submit message B, The outbound status is set to a Green Flag and there is a  SYSFAIL entry in the queue.
    The error is " Permanent Error in BPE Inbound Processing"
    But I see the message A is has still got the outbound status wating..
    I guess I'm missing something in correlation..
    cheers!!
    Sidharth

Maybe you are looking for