Problems in cancel functionality for a datagrid

Hi there,
I have a datagrid which has been assigned a bindable array collection variable to it's dataprovider, acData.
<mx:DataGrid id="dg" x="200" y="81" editable="true" dataProvider="{acData}">
As soon as the application is loaded, some data is flown into acData, which in turn shows up in the datagrid.
acData = event.result;
I tried to create a copy of this data so that I can use it, in case the user cancels the data entry. Hence, as soon as the data is loaded, I assigned the data to acData and also another array collection named acBackUp.
acData = event.result;
acBackUp = event.result;
Since the datagrid is editable, user can make changes in the datagrid. But there is a button called 'Cancel' at the bottom. If user clicks this button after making some changes in the datagrid, I want to assign the back up array collection to acData, ie,.
On click of cancel - > acData = acBackUp;
But what I noticed was even before assigning the back up ac to acData, acBackUp has be overwritten with the values that were entered in the datagrid. It wont have those old, event.result values in it.
Am I doing something wrong here ? How can I store the old values in some array collection and use it back for the datagrid?
pls help....
-Deepak

hi,
Sounds like your arrays are pointing to the result rather than being a copy of the result data.
may be try something like this
var acBackup : ArrayCollection = ObjectUtil.copy(event.result);
David.

Similar Messages

  • Problem with square function for a calculator

    i have done this calculator, which does all of the basic functions. but i am having problems setting up the square function. the calculator is setup is that 2 numbers must be entered. but with a sqaure calculation you only need 1 number. how can i set this up?
    this is my current coding:
    <code>
    import java.io.*;
    public class Math
    public static String input="";
    public static void main(String args[]) throws IOException
    BufferedReader getInput = new BufferedReader(new
    InputStreamReader(System.in));
    int len,
    counter=0;
    double number1,
    number2;
    String n1="",
    n2="",
    operation="";
    boolean gotOperation=false;
    System.out.println("Please type an equation (eg. 1+1 and press return key)");
    input = getInput.readLine();
    len=input.length();
    System.out.println("");
    while(counter!=len){
    if(input.charAt(counter)!='+' && input.charAt(counter)!='-' && input.charAt(counter)!='*' && input.charAt(counter)!='/' && input.charAt(counter)!='s' && input.charAt(counter)!='%'){
    if(gotOperation==false){
    n1=n1 + input.charAt(counter);
    counter+=1;
    else if(gotOperation==true){
    n2=n2 + input.charAt(counter);
    counter+=1;
    else{
    operation = input.charAt(counter) + "";
    counter+=1;
    gotOperation = true;
    number1=Double.parseDouble(n1);
    number2=Double.parseDouble(n2);
    if(operation.equals("+")){
    System.out.println(number1 + number2);
    else if(operation.equals("-")){
    System.out.println(number1 - number2);
    else if(operation.equals("*")){
    System.out.println(number1 * number2);
    else if(operation.equals("/")){
    System.out.println(number1 / number2);
    else if(operation.equals("%")){
    System.out.println(number1 / number2 * 100 + "%");
    else if(operation.equals("s")){
    System.out.println(number1 * number1);
    </code>
    below is where square function is linked
    <b>
    else if(operation.equals("s")){
    System.out.println(number1 * number1);
    </b>

    Here's some code, that does the trick, but no NumberFormatException handling, no division ny zero handling and still a bit clumsy.import java.io.*;
    public class Math {
         public static String input = "";
         public static void main(String args[]) throws IOException {
              BufferedReader getInput = new BufferedReader(new InputStreamReader(System.in));
              int len, counter = 0;
              double number1, number2;
              String n1 = "", n2 = "", operation = "";
              boolean gotOperation = false;
              System.out.println("Please type an equation (eg. 1+1 and press return key)");
              input = getInput.readLine();
              len = input.length();
              System.out.println("");
              while (counter != len) {
                   if (input.charAt(counter) != '+'
                        && input.charAt(counter) != '-'
                        && input.charAt(counter) != '*'
                        && input.charAt(counter) != '/'
                        && input.charAt(counter) != 's'
                        && input.charAt(counter) != '%') {
                        if (gotOperation == false) {
                             n1 = n1 + input.charAt(counter);
                             counter += 1;
                        } else if (gotOperation == true) {
                             n2 = n2 + input.charAt(counter);
                             counter += 1;
                   } else {
                        operation = input.charAt(counter) + "";
                        counter += 1;
                        gotOperation = true;
              number1 = Double.parseDouble(n1);
              number2 = 0.; // init
              if (!operation.equals("s")) { //not needed with "s"
                   number2 = Double.parseDouble(n2);     
              if (operation.equals("+")) {
                   System.out.println(number1 + number2);
              } else if (operation.equals("-")) {
                   System.out.println(number1 - number2);
              } else if (operation.equals("*")) {
                   System.out.println(number1 * number2);
              } else if (operation.equals("/")) {
                   System.out.println(number1 / number2);
              } else if (operation.equals("%")) {
                   System.out.println(number1 / number2 * 100 + "%");
              } else if (operation.equals("s")) {
                   System.out.println(number1 * number1);
    }

  • Problem with Save functionality for a Screen - Field

    Hi Experts,
    I  have included a custom field with list box option to an infotype. The new filed  displays the values based on the values selected in the standard field which has a list box option.
    Now if we enter the transaction in change mode and change the standard field value without pressing ENTER and click SAVE button, it gets saved with an improper value in the custom field. The reason being the custom field values with drop down list is retreived only after we press enter (POV is triggered) after selecting a standard field.
    Options tried:
    I have included an error message (in PAI)  to stop the values being saved, but the screen beomes disabled.
    I have done my validation only on the custom field as there is no other possibility to validate any other fields on the screen (all are standard). Here the error message pops up and the field is in the enable mode, but it does not retrieve the possible values for the custom field based on my earlier selection for the standard field.( Because as POV does not get triggered in this case)
    Ex.  Std field value = USA
           Custom field   =  United States of America
    I changed the value in Standard field to = UK and click SAVE - It get saved
    Now how to stop it from SAVING and let it know that there is an error in the custom field and it needs to select the right value from the list ie - United Kingdom.
    Lakshmi

    Perhaps a solution is to save the code value, not the text for the code, and only display the text.  In this way, the database would have UK and when you re-entered the screen, a PBO module could obtain the text for UK for display.
    Or, if you must store the text value instead of the code (seems redundant...you can look up the text anytime), an enhancement to the save to database logic to obtain the correct value from the current value of the code and save that to the database....

  • Save Point for Cancel Functionality

    Hi all,
    I followed Frank's document below on how to implement the Cancel functionality using "Explicit ADFm Save Points in ADF Taskflows":
    http://www.oracle.com/technology/products/jdev/tips/fnimphius/cancelform/cancelForm_wsp.html
    However when running the application with logging turned on, there was this warning message:
    *******WARNING*****: createSavepoint not supported for DCBeanDataControl.*
    Upon some digging, I found that the createSavePoint method in DCBeanDataControl returns null, while its base class DCJboDataControl calls the application module's passivateStateForUndo() method.
    I hope to implement the save point functionality declaratively, can someone tell me how to obtain the DCJboDataControl class instead of DCBeanDataControl so that the createSavePoint method works?
    Thanks!
    Hai Liang

    John,
    I think there might be a problem with our view project not "knowing" that the model layer is using ADF BC. The situation is like this, we first built the ADF BC model project (the EOs, VOs and AMs). Then we went on to create a viewController project (in the same Application workspace). Because the Applications Modules from the model project appear in the Application > Data Controls tab, we just used the AMs there and assumed that the viewController project is aware that it is using ADF BC components.
    Is there some setting we have to define inside the viewController project to make it "aware" that the model layer utilizes ADF BC and thus enable the "savepoint cancel" functionality?
    Thanks!
    Hai Liang

  • Problem in setting dataprovider for a dynamically generated datagrid

    Hi everybody
    I have a issue in flex, I am generating datagrids dynamically
    by using repeaters but i am unable to set a seperate dataprovider
    for each grid
    Grid1 might come with some set of data and grid 2 with some
    and so on so i want to set dataproviders at runtime for each grid
    how can i do that
    i have pasted my code for generating datagrid dynamically plz
    go thru that and find me some solution
    <mx:Repeater id="ProjectNames"
    dataProvider="{GetTimeSheetDetails.lastResult.NewDataSet.Table1}"
    >
    <mx:Canvas label="{ProjectNames.currentItem.ProjectName}"
    width="100%" height="251" id="CanvasTimeSheet"
    creationComplete="disablecanvas();">
    <mx:DataGrid x="10" y="10" width="864" height="206"
    editable="true"
    dataProvider="{GetTimeSheetDetails.lastResult.NewDataSet.Table}"
    id="dgTimeSheet">
    <mx:columns>
    <mx:DataGridColumn headerText="Task" dataField="TaskName"
    width="60" >
    </mx:DataGridColumn>
    <mx:DataGridColumn headerText="Task Description"
    dataField="TaskDescription" width="150" editable="true"/>
    <mx:DataGridColumn headerText="M" dataField="Monday"
    width="15" editable="true"/>
    <mx:DataGridColumn headerText="T" dataField="Tuesday"
    width="15" editable="true"/>
    <mx:DataGridColumn
    </mx:columns>
    </mx:DataGrid>
    <mx:Label x="564" y="222" text="0" width="35"
    textAlign="right" id="lblMonday" />
    <mx:Label x="602" y="222" text="0" width="33"
    textAlign="right" id="lblTuesday"/>
    </mx:Canvas>
    </mx:Repeater>
    </mx:TabNavigator>

    try this and say me if it works fine!!!
    <html>
    <head>
    <script>
    function fileds() {
         var myParent = document.getElementById('myDiv');
         var text = document.createElement('input');
         text.setAttribute('id', 'myText');
         myParent.appendChild(text);
         document.all.myText.focus();
    </script>
    </head>
    <body>
    <input type="button" onClick="javascript:fileds()" value="Create And Give Focus">
    <br>
    <div id="myDiv"></div>
    </body>
    </html>
    bye

  • For users having problems with Mail functionality...

    Hello! I have been having problems with Mail functionality as well, so, I took a few steps to see if I could solve the problem on my own.
    My problems were:
    Mail would freeze when sending mail, or, when I pressed quit, it would freeze.
    If I toggled between inboxes too much it would freeze up.
    Even after trying the many techniques others offered on this board, Mail still froze up. So.. here's what I did:
    1.) Turn off the auto-retrieve mail function in the preferences/general menu. Set it to a manual check. Just check it yourself every once in awhile. It may not be as convenient, but it works, trust me.
    2.) Under the fonts and colors menu, set all three fonts to the SAME font (mines Century Schoolbook, but anything works) and turn off fixed-width font. Sometimes mail has a tough time decoding and working with texts, and causes it to freeze.
    3.) Clean our your main inbox! Place the emails that you want to keep, but don't need to be in your inbox in a new folder on your inbox bar (mines aptly named 'Saved Messages.' That way, when you open up Mail to your default account, it doesn't have 1,000+ messages to index. Also, try to keep the inboxes from having more than 100-200 messages per. It seems to frown on any more than that.
    After trying these three easy, steps, restart mail and see if things run smoother. I have had no problems since these changes, and mail runs a ton better. Plus you don't have to worry about deleting your library/mail folder anymore. Let me know if things work out so I can see if my theory is a universally proven thing. Thanks and good luck!
    iMac G5 20"   Mac OS X (10.4.5)  

    Good question. I have worked very little with IMAP other than as a testing device, so, on a daily routine I cannot say how it would function. However, I can only expect that by having the option to download all emails for offline viewing selected, you are right in it being a lag creator. Another suggestion would be, if you are running a single-computer setup, to have the account delete emails from the server after recieving them on your computer. Thus, you reduce the risk of repeat downloads or unnecessary build-up on the server end. DO NOT select this option if you run multiple computer set ups on one AppleMail account system or you will cause some discrepancies and/or data loss from system to system. Or, if you have emails redirected from a seperate server to Mail (i.e. I redirect mail from my university email account into Mail so that I don't have to go to the web-mail site to check it--> just like Gmail or Yahoo etc etc) you won't be able to check them from the web-based email system if you have the system delete them. Ok that sounded confusing. Solution: have the system remove emails from the server after a week (or any period of time, just not immediately) so that, in the off-chance you need to use the online system, you will have access, and will give you a chance to check the emails on other systems without a threat of data corruption (by corruption i mean that frustrating feeling you get when you can't find that super important email that was in your inbox just 10 seconds ago on your desktop etc.)
    I will see if I can learn anything more about IMAP Ernie. Its definitley the biggest problem source for Mail, POP and .Mac being simple and functional as long as you don't play with the settings too much. As far as the issue of Offline viewing goes, try turning it off and seeing how Mail functions.
    BEFORE you turn it off, however, I recommend saving all of your emails in your inbox as a text file or something so, in case the server burps and has a brain flatuence, you don't lose anything. Been there, done that, thrown the books against the wall in a frustrated rage.
    My only reserve about the Offline Viewing is whether or not Mail will, when you click "recieve mail," have to re-download the emails from the server each time. If so, then it may end up taking longer and lagging more. The issue here is obviously minimizing the amount of activity between Mail and the email server without jeapordizing information on the server or multiple Mail programs on the same account. When we can find that balance, I think Mail's potential will be realized. Keep the questions coming.

  • Problem with active noise cancellation function : ...

    My nokia 6720 have problem with active noise cancellation function. It seem not working because it also have noise when this function is active. So, I try to disable this function and found that the noise is reduce (but still not clear). How do I correct this problem?
    Thanks.
    P.S. Firmware version is 012.008

    "I must must achive a segnificant attenuation of the noise in a closed volume using some NI devices ..."
    At first glance I would say "probably can be done using an FPGA as a target" since the FPGA can close a very fast loop.
    But to do that with a microphone input on a PC running Windows...
    I suspect that would be an exercise in futility.
    Anyone out there been able to turn around a microphone input fast enough to something like this?
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Eval functionality for AS3?

    I have searched through the forums and the web on this topic
    but can't seem to find a solution that works for my situation. I
    used to use the eval function in AS2 to access methods and
    properties of dynamically named variables but it seems to be much
    different in AS3.
    A simple example :
    var number_of_records:int=10;
    var i:int = 1;
    do {
    // the next line is what i want to emulate in AS3
    eval(mydynamicvariable_+i)._alpha = 0
    i+=1;
    }while (i<=number_of_records);
    Below is a different example and actually pertains more to to
    my question than the above example.
    I am get variables from a text file. Got that part working.
    My variables are going to be put into an array and then used in a
    dataprovider for the datagrid component. Got the last part working
    too. Just having difficulty accessing my variables dynamically and
    then putting them in an array. First I just want to trace my
    variables and that is what i am having difficulty doing. I can
    trace them with hardcoding them but not dynamically.
    //////////////My data.txt file example is:
    number_of_records= 10
    &record_1=variable 1
    &first_name_1=this someones name 1
    &last_name_1=this is somones last name 1
    &details_1=just some text 1
    &record_2=variable 2
    &first_name_2=this someones name 2
    &last_name_2=this is somones last name 2
    &details_2=just some text 2
    //////////////.. and so on to 10 for this example..
    //////////////My data.txt file is loaded with the following
    code into flash CS3 using AS3
    var myURLLoader:URLLoader= new URLLoader();
    var myURLRequest:URLRequest = new URLRequest("data.txt");
    myURLLoader.dataFormat=URLLoaderDataFormat.VARIABLES;
    myURLLoader.load(myURLRequest);
    myURLLoader.addEventListener(Event.COMPLETE, dataOK);
    function dataOK(myevent1:Event):void{
    var
    number_of_records:int=myURLLoader.data.number_of_records;
    trace("data is loaded");
    trace("number_of_records="+number_of_records);
    var i:int = 1;
    do {
    //////////////THE CODE ON THE NEXT FEW LINES IS MY QUESTION
    //////////////THE SECOND HALF IS HOW I WOULD WRITE IT IN AS2
    TO DYNAMICALLY ACCESS THE VARIABLES
    trace(
    "record_"+i.toString()+"="+eval("myURLLoader.data.record_"+i));
    trace(
    "first_name_"+i.toString()+"="+eval("myURLLoader.data.first_name_"+i));
    trace(
    "last_name_"+i.toString()+"="+eval("myURLLoader.data.last_name_"+i));
    trace(
    "details_"+i.toString()+"="+eval("myURLLoader.data.details_"+i));
    i+=1;
    }while (i<=number_of_records);
    How do i trace those variables with a loop using AS3? I can
    then figure out how to put it into the array and to get the info
    into the datagrid. Hope that I have provided enough information
    about my problem and hope that it is a simple solution.
    Please help and thanks!

    Andrei1 your awesome. Thanks dude! That's exactly what I was
    looking for. I actually did something similar but my syntax was not
    correct. I tried :
    trace(
    "record_"+i.toString()+"="+myURLLoader.data.["record_"+i])
    ///with a period before the []
    obviously wrong. Thanks again.
    trace(
    "record_"+i.toString()+"="+myURLLoader.data["record_"+i])
    ///without the period was correct.

  • I have an old iPhone 3Gs with software version 4.3.5,  I am trying to use it again, and it works fine, but I have not been able to update the software.  Every time I try, I get the following message: "there was a problem downloading the software for the i

    I have an old iPhone 3Gs with software version 4.3.5,  I am trying to use it again, and it works fine, but I have not been able to update the software.  Every time I try, I get the following message:
    "there was a problem downloading the software for the iPhone, the network connection could not be established".  This happens even though I have a working internet connection.
    Besides that, all the other functions work properly, even synchronize apps and library.
    Will I be able to update the software?

    look around the forum tons of people repport that they can't update
    makes you suspect that apples update servers can't meet the depand of too many users
    trying to update at once

  • Crash on search function for HTML Help file (.chm) when connected to a Visual C++ application

    Crash on search function for HTML Help file (.chm) when
    connected to a Visual C++ application
    I use the RH_ShowHelp API command to connect a HTML Help file
    (.chm file generated by RoboHelp Word X 5) to my Visual C++
    application. My application is able to call up this HTML help file
    in context-sensitive mode and everything is working great in the
    Contents and Index panels EXCEPT when I click on List Topics (after
    I enter a KEYWORD for search) in the Search panel.
    I got an error that said “Unhandled exception in
    xxxx.exe.(HHCTRL.OCX):0xC00000FD: Stack overflow”
    I am able to execute this .chm file by itself and the search
    function works well in this case. I am using HHActiveX.dll that is
    created on 2/23/04. Is this the correct version?? Any advice what
    to do here??

    Hi agschin and welcome to the RH forums. The hhactivex.dll
    file is not used by the search function so you can rule that our.
    Have you tried recompiling and seeing if the problem still happens?
    You can also start the Bug Hunter feature in RH - View > Output
    View and then select the Bug Hunter button - and see if that throws
    up any clues.

  • Problem with Checkbox ItemRenderer in a DataGrid

    Hello Everyone,
    I'm using a datagrid with two columns, which is used as a data entry grid. The first column has a simple text input field and the 2nd column has a checkbox as an itemrenderer. On creationComplete event, I'm passing an arraycollection as the dataprovider for this datagrid. The arraycollection:
    <mx:ArrayCollection id="psAC">
            <mx:source>
                <mx:Array>
                    <mx:Object PaText="line1" PaCheckbox="0" />
                    <mx:Object PaText="line2" PaCheckbox="0" />
                    <mx:Object PaText="line3" PaCheckbox="1" />
                    <mx:Object PaText="line4" PaCheckbox="0" />
                    <mx:Object PaText="line5" PaCheckbox="0" />
                </mx:Array>
            </mx:source>
        </mx:ArrayCollection>
    There is a datagrid (dGa) in the main application. On click of this, a pop up window comes up which has the same datagrid layout(i.e, 2 columns). And this is where the data is entered. Here, if the user checks the check box, I have assigned a value of '1' for the 2nd column of the arraycollection. THis code(below) works fine.
    <datagrid in pop up window>
    <mx:DataGridColumn headerText="Best Possible Action?" textAlign="center" width="200" editable="false">
                                <mx:itemRenderer>
                                    <mx:Component>
                                       <mx:CheckBox>
                                            <mx:Script>
                                                    <![CDATA[
                                                         override public function set data(value:Object):void{
                                                             if(value.PaCheckbox == 1){
                                                                this.selected = true;
                                                            }else{
                                                                this.selected = false;
                                                    ]]>
                                                </mx:Script>
                                            <!--<mx:change>
                                                <![CDATA[
                                                    if(this.selected == true){
                                                         data.PaCheckbox = 1;
                                                     }else{
                                                         data.PaCheckbox = 0;
                                                ]]>
                                            </mx:change>-->
                                        </mx:CheckBox>
                                    </mx:Component>
                                </mx:itemRenderer>
                            </mx:DataGridColumn>
    But I would also need to set the PaCheckbox value to 0 or 1, based on teh check condition of the check box. I tried using change event (commented in the code above). But there I get an error: Cannot access a property or method of a null object reference. I checekd in debug mode, there the data object is null! Can you please help me on how to pass back the values(0 o 1) to my arraycollection, based on the checkbox's status?
    Cheers,
    Deepak

    heyo,
    I solved it.....
    i was missing this line of code super.data = value; in the ovverriden function...Once we have this line, the data object will have teh field names and their values in it, which can be accessed on the change event...

  • Problem in Cancellation of Excise invoice

    Hi,
    User has created Import PO then he made custom MIRO then GR is done and through J1iex part1 is done. later he realized that there is problem with PO condition for that he has first cancelled the GR then secondly cancelled Custom MIRO. now while doing cancellation of excise invoice in j1iex then below error  is throwing
    Reverse the material document before cancellation of excise invoice.
    So after anaysis of PO in that PO histery got found some amount difference of MIGO delivery cost document. hence i guess this will be the reson of cancellation of excise invoice.
    So please provide the solution.
    Regards
    Rahul

    Hello,
    Cancell the Customes MIRO
    Cancel the MIGO , simuteneously system reverse the PART1 also
    Then Cancel the excise Invoice ,  (first capture the excise invoice wrt to reversed GR document and after the cancel the Excise
    Invoice wrt Internal doc nor or vendor excise Invoice no)
    Reason: before MIGO  you are captured the excise Invoice it means that system will updated J_1IEXCDTL table , after MIGO system will updated the GR refference in the above said table, so i,e the reason capture the excise Invoice wrt Reversed GR and check)
    Regards
    Mahesh Naik

  • Error "You cannot enter a partner function for output NEU"

    Hi Experts,
    I'm having these error "You cannot enter a partner function for output NEU" (message VN041) when I tried to assign a partner function (e.g OA)  in the conditions records for application "EV" (Purchase outline agreement). The system do not allow me to do this for any doc type (LP, LPA, MK, OA, etc). I'm using t-code NACE or MN08.
    I want to assign partner for key combination "Document Type". The conditions is already there but with no value, so I want to assign partner function "OA" or "VR".
    I already check all the configuration and looks fine. For example, define possible partner functions for output type "NEU" for application "EV" (Purc outline agree).
    Hope you can help me to find the problem.
    Thanks,
    Mairo.

    I have the error in NACE or using tcode MN08.
    As soon I executed those transaction the system shows the condition records created for varios Doc Type (e.g LP, LPA, MK, etc) but with no partner function assigned. For example:
    Doc. Type /  Name                     /             Funct  /   Partner     /            Medium  /  Date/time  /   Language
    LP        /       Scheduling Agreement     /  blank  / blank  /                                          2      /          3   /              EN
    LPA      /      Scheduling Agreement                              / blank    / blank   /                1        /       3         /        EN
    For example, I try to assign function "OA" for Doc. Type "LP", choose value from quickpick. Then when I press enter, the system give me the error "You cannot enter a partner function for output NEU", message no. VN041. Do not allow me to continue, so I have to leave this field blank, with no change.
    Thanks,

  • Problem in cancellation of entry sheet

    Dear experts,
    I am facing one problem in cancellation of entry sheet. IR has been cancelled for total amount. 0 value IR exists for same line item due to MRRL. while cancelling entry sheet thru Ml85 / ml81n getting error message saying PU IR deficit qty 0.001 AU. system wont allow to cancel that 0 value invoice.
    Please help me to solve this.

    Hi,
    Go to OMBZ and here activate "Rev GR desp. IR" for movement type 102 and then check by cancelling.

  • Classic Scenario PO has multiple OA Partner Functions for Vendor

    Hi,
    I have a 'design' issue. My R/3 Vendor has many OA Partner Functions for the different Branches they have and the PO needs to be Faxed to the OA Partner Function number, but the PO needs to be created against the VN Partner Function.
    So, how do i do this in SRM? I was going to have a seperate Catalog link for each OA Partner function, but this is not creating the R/3 PO with VN Partner Function of the 'core' Vendor number.
    Does anyone have any advice for this?
    regards Adam
    Using SRM 5.0 (Server 5.5) SP 8 and R/3 4.6C in Classic Scenario - my catalogs are external vendor.

    Hi
    Please see these links, which might help ->
    Partner function missing in backend PO
    Re: Error in transmission while PO cration
    "Multiple" partner data at PO header
    Partner functions in plan driven MM-SUS
    Re: Partner function not found
    Number range for business partner
    Re: Problem with BP. Assignment: Business partner person to user not unique
    Error in creation of Employee for Business Partner
    Re: enter exactly one partner of type vendor
    Re: Business partner as Vendor and Invoicing Party
    Partner functions in EBP for extended Classic Scenario
    Regards
    - Atul

Maybe you are looking for

  • Script exe for indesign cs2 is possible?

         i wrote a javascript for indesign cs2 application, user move that to script folder and run it. sometimes they edit the script for their own, it makes some problem. is it possible to make the script in exe format. by using Extend toolkit2 if i ma

  • Error in migrating SharePoint 2010 list fields to Office 365 list [CSOM]

    Hi, I am trying to migrate a SharePoint 2010 list to Office 365. I created a new ListCreationInfo for a new list in O365. But when i am to trying add fields from SP2010 list, its giving me an error after list.update()  - A duplicate field name "fa564

  • Did security update 2015-004 broke Illustrator & Dreamweaver CS5.5

    Hi community, from 2 days ago I can't launch Illustrator and Dreamweaver CS5.5, Illustrator crashes with an error (-108) on various stages of starting up, but Dreamveawer is just stuck on initializing CSS. The only thing I can remember is installing

  • Backup fails - restarted crashes OS X

    So far I am not having much luck with Time Capsule. In fact I am thinking it isn't stable enough to support my families needs. This morning I noticed that the last backup had failed. Attempts to restart the backup bought up the "You need to restart t

  • Trying selelct A,B,C,D from dual

    I want to create a sql statement where I select from dual letters A THRU E. I want them to come back in one field. I have done the following select 'A' ,'B','C','D' FROM DUAL but this brings them back in there own field.