Problem with mutiple BAPI calls during the commit

Hi all,
I am trying to create accounts for a given partner i the transaction F9K1 using the BAPI BAPI_BKK_ACCNT_CREATE. After calling the BAPI I am committing it too.
The problem is if I try to create multiple accounts like RCA, ACA, MCA, IOE and so on, the first time the BAPI is called to create RCA account it is successful an it is even committing. When I call the BAPI to create the the ACA account the return table from the BAPI shows success message but the commit fails. If I restart the program and try creation of accounts now the RCA will throw a error msg saying account already exist, ACA account will be created and then the MCA account creation fails in the same manner explained above.
I see the issue is with multiple BAPI calls and I tried using all sort of methods like clearing buffers, start new task in local and wait command and all.  But none of them seems to be working for me.
Can anyone please guide me on how I can overcome this problem.
Thanks.

BAPI :
BAPI BAPI_BKK_ACCNT_CREATE
Functionality
Use this method to create an account in Bank Customer Accounts. This method returns the following values:
Identification details for the newly created account such as the internal and the external account number, and the bank area details
A table containing error messages
To create an account by using this method, you must specify values for the import parameters Bank Area (BANKAREA) and Product (PRODUCTNAME).
Note: You must also specify a value in the External Account Number (EXTERNALACCOUNTNR) parameter if you have defined an external number range for the bank .
REgards,
Jayan.

Similar Messages

  • Problem with multiple Ajax calls to the same Servlet

    Hi,
    I am new to AJAX. I have a requirement where in, i have to make ajax calls to the same servlet in an infinite loop and check for an application context attribute to refresh the contents in the JSP.I am using the following script in JSP. The problem is i am not able to invoke the servlet more than one time.But I am able to go through the script at specific time interval using setInterval() function of Javascript and able to get alerts.But the problem is with xmlhttp.open("Get", url, true);. Its not getting called more than one time, even though i make multiple calls to the function.
    *<script type="text/javascript">*
    var xmlhttp
    var resp
    function fAjax()
    alert("Here");
    xmlhttp=null;
    resp=null;
    // code for Mozilla, etc.
    if (window.XMLHttpRequest)
    xmlhttp=new XMLHttpRequest();
    // code for IE
    else if (window.ActiveXObject)
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    if (xmlhttp!=null)
    xmlhttp.onreadystatechange=state_Change;
    xmlhttp.open("GET","/PSAPBackOffice/TestServlet",true);
    xmlhttp.send(null);
    else
    alert("Your browser does not support XMLHTTP.")
    function state_Change()
    // if xmlhttp shows "loaded"
    if (xmlhttp.readyState==4)
    // if "OK"
    if (xmlhttp.status==200)
         resp=xmlhttp.responseText;
         //alert(resp);
         if (resp=="CALL"){
         form.method="GET";
         form.action="/Project/Details.jsp          
    form.submit();
    else
    alert("Problem retrieving XML data")
    function callTimer(){
         setInterval("fAjax()",5000);
    *</script>*
    *Code for Servlet here:*
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException
    ServletContext objContext= getServletContext();
         String value;
         synchronized (objContext) {
                   value=(String) objContext.getAttribute("Flag");
                        if(value==null){
                        else if(value.equals("Done")){
                             response.setContentType(CONTENT_TYPE);
                             PrintWriter out = null;
                                  try {
                                       out = response.getWriter();
                                  } catch (IOException e) {
                                       // TODO Auto-generated catch block
                                       e.printStackTrace();
                                                                } catch (NullPointerException npe) {
                                       // TODO Auto-generated catch block
                                       npe.printStackTrace();
                             objContext.setAttribute("Flag","No");
                             out.println("CALL");
    Can someone figureout the problem or mistake and help me out.Its urgent and please help me in this regard.Thanks in Advance !

    I'm not sure I'm following you. The mapping from URL to servlet can contain anything you want. So you could have the URL /blah/blah/blah that, with a mapping something like /blah/* would pass all requests with that URL pattern to your servlet - no one has to know it is a servlet. Your servlet could then parse the URL to see what it has to do or you could pass parameters as part of the URL or as hidden fields.

  • Problem with OO4O opendatabase() call, migrating the client from 9i to 10g

    I have the following code:
    VARIANT* pvaparams = new VARIANT[3];
    if (pvaparams == NULL)
    return NULL;
    for (int nIndex = 0; nIndex < 3; nIndex++)
    VariantInit(&pvaparams[nIndex]);
    pvaparams[0].vt = VT_I4;
    pvaparams[0].lVal = ORADB_ORAMODE;
    pvaparams[1].vt = VT_BSTR;
    pvaparams[1].bstrVal = bstrConnect; //user and passwd
    pvaparams[2].vt = VT_BSTR;
    pvaparams[2].bstrVal = bstrDBname; //database name
    VARIANT va_out;
    VariantInit(&va_out);
    va_out.vt = VT_DISPATCH; // expect IDispatch* for database
    DISPPARAMS params = {pvaparams, NULL, 3, 0};
    EXCEPINFO eInfo;
    unsigned int uiArgErr;
    //dispid_OpenDatabase OK, previously obtained
    hRes = m_pIOracleSession->Invoke( dispid_OpenDatabase, IID_NULL,1033,
    DISPATCH_PROPERTYGET , &params , &va_out,
    &eInfo, &uiArgErr );
    if ( FAILED( hRes ) )
    throw new COracleDBXception(eInfo);
    This is from an application developped in VC++ 5 which uses COM and OO40 for connecting to a 9i database; and works fine, with a 9.2.0.1.0 client.
    I have updated the server to 10g and kept the client and it's running OK.
    After that, I have installed the 10.2.0.1.0 client and it's not working anymore; the odd thing is that the call to Invoke() has succeded and hRes is 0, but there is no connection to the database!!!
    I set a breakpoint after Invoke() and, from PL/SQL Developer, the "select OSUSER, PROGRAM, TERMINAL from v$session t where username='NORO';" command reports nothing; with the 9i client, it was reporting 1 connection.
    I would like to add that I had uninstalled completely the 9i client and after that I installed the 10g client.
    Can anyone give me a hint?
    Thank you!

    Hi everyone!
    static const CLSID CLSID_Oracle =
    {0x3893b4a0, 0xffd8, 0x101a, {0xad, 0xf2, 0x04, 0x02, 0x1c, 0x00, 0x70, 0x02}};
    const DWORD ORADB_ORAMODE = 0x1 ;
    STDMETHODIMP Test()
         HRESULT     hr;
         IDispatch* pIDefaultSession;
         hr = ::CoCreateInstance( CLSID_Oracle, NULL, CLSCTX_SERVER, IID_IDispatch, (void**)&pIDefaultSession );
         if (hr != S_OK)
              return S_FALSE;
         // CreateNamedSession - DISPID: 0x6001000B
         // OpenDatabase - DISPID: 0x60010001
         // create unique name
         TCHAR strName[256];
         stprintf( strName, T("Session#%d"), 1);
         // call 'CreateNamedSession' method
         VARIANT vaparam;
         VariantInit(&vaparam);
         vaparam.vt = VT_BSTR;
         vaparam.bstrVal = SysAllocTString(strName);
         VARIANT va_out_3nd;
         VariantInit(&va_out_3nd);
         va_out_3nd.vt = VT_DISPATCH;     // expect IDispatch* for named session
         DISPPARAMS params = {&vaparam, NULL, 1, 0};
         EXCEPINFO excepinfo;
         unsigned int uiArgErr;
         // Invoke CreateNamedSession
         hr = pIDefaultSession->Invoke( 0x6001000B, IID_NULL, 1033, DISPATCH_PROPERTYGET, &params, &va_out_3nd, &excepinfo, &uiArgErr );
         ::SysFreeString(vaparam.bstrVal);
         if ( FAILED(hr) )
              return S_FALSE;
         CComPtr<IDispatch> m_pIOracleSession;      // pointer to the session
         m_pIOracleSession.p = va_out_3nd.pdispVal;
         // call "OpenDatabase" method
         HRESULT hRes;
         CSString m_strDbId = _T("databasename");
         CSString m_strUserName = _T("username");
         CSString m_strPswd = _T("password");
         CComBSTR bstrDBName = SysAllocTString(m_strDbId);
         CComBSTR bstrConnect = SysAllocTString(m_strUserName + T("/") + mstrPswd);
         VARIANT* pvaparams = new VARIANT[3];
         if (pvaparams == NULL)
              return S_FALSE;
         for (int nIndex = 0; nIndex < 3; nIndex++)
              VariantInit(&pvaparams[nIndex]);
         pvaparams[0].vt = VT_I4;
         pvaparams[0].lVal = ORADB_ORAMODE;
         pvaparams[1].vt = VT_BSTR;
         pvaparams[1].bstrVal = bstrConnect;
         pvaparams[2].vt = VT_BSTR;
         pvaparams[2].bstrVal = bstrDBName;
         VARIANT va_out_2nd;
         VariantInit(&va_out_2nd);
         va_out_2nd.vt = VT_DISPATCH;      // expect IDispatch* for database
         DISPPARAMS params_2nd = {pvaparams, NULL, 3, 0};
         EXCEPINFO eInfo;
         unsigned int uiArgErr_2nd;
         // invoke OpenDatabase:
         //here is the problem!!!
         hRes = m_pIOracleSession->Invoke(0x60010001, IID_NULL, 1033, DISPATCH_PROPERTYGET , &params_2nd , &va_out_2nd, &eInfo, &uiArgErr_2nd );
         delete pvaparams;
         if ( FAILED( hRes ) )
              return S_FALSE;
         CComPtr<IDispatch> m_pDatabase;
         m_pDatabase.p = va_out_2nd.pdispVal;
         CreateCustomDynaset - DISPID: 0x6001000C
         ExecuteSQL - DISPID: 0x60010006
         LastServerErrText - DISPID: 0x60010009
         Parameters - DISPID: 0x00000000
         LastServerErrReset - DISPID: 0x6001000B
         TCHAR* pAlterNumeric = T("ALTER SESSION SET NLSNUMERIC_CHARACTERS = \".,\"");
         // call "ExecuteSQL" method
         VARIANT va_params;
         VariantInit(&va_params);
         va_params.vt = VT_BSTR;
         va_params.bstrVal = SysAllocTString(pAlterNumeric);
         DISPPARAMS params_3nd = {&va_params, NULL, 1, 0};
         unsigned int uiArgErr_3nd;
         // Invoke ExecuteSQL:
         hr = m_pDatabase->Invoke( 0x60010006, IID_NULL, 1033, DISPATCH_METHOD, &params_3nd, NULL, &eInfo, &uiArgErr_3nd );
         if (FAILED(hr))
              return S_FALSE;
         return S_OK;
    If this function is called from DllMain(), it works. But if we call this function from another method from our .dll, and that method is called via COM from a client, this function doesn't work anymore! We use VC++ 5 and the 10g Oracle client.
    Can anyone give me a explanation?
    PS: The call to opendatabase() is successfull, but we don't see a connection on the database server and we get a SEGV error: "function not mapped to object".
    Noro

  • I am having problem with me Iphone4, looks like the mic of my phone is not working. no one can hear me if I make a call to them

    Can any one please help me I am having problem with me Iphone4, looks like the mic of my phone is not working. no one can hear me if I make a call to them. I have tried all restoring options but no use. please help me

    The mic on my iPhone4 has just quit also. Similar symptoms to yours in that people I'm talking to hear only static or my voice very faintly. The voice/memo recorder also only really records static.
    It happened suddenly and seemed to get better after a day or two but then went completely after another day.
    I'm returning it to Vodafone New Zealand shortly but will have to wait 5-10 days for a replacement. There are NO Apple accredited means to speed this procedure up in NZ.
    We don't even have a single physical Apple Store where you could walk in and talk to a Genius.

  • I am using Windows 7 Home Premium 64-bit OS.  I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installa

    I am using Windows 7 Home Premium 64-bit OS.I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installation process it gave me an error message that said: 
    Runtime error! 
    Program C:\Program Files\iTunes.exe
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I quit the installation, uninstalled iTunes and rebooted my computer.  I now receive a similar message with a slight difference:
    Runtime error! 
    Program C:\Program Files (x86)...
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I did not leave anything out from the error message.  It doesn't point to a specific file, it just ends with "(x86)..."  Every time I boot up my computer, this error message pops up on my desktop.
    How do I repair this issue?  I have found multiple suggested solutions but am unsure which one is the best, and I don't want to try a bunch of different things for fear I may make the problem worse.  I would like to try and fix this myself if possible but I need to know if that is really possible or if I need to take my computer to someone for repairs.  Any suggestions will be greatly appreciated!!

    Hi lustyln,
    I'm having a little trouble understanding all of what you are trying to explain. From what I can tell, it sounds like your PC has a lot of software problems and you want to know what is supposed to be there and what isn't.
    For reference, here are your product specifications:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01893242&lc=en&product=4043282
    To get your PC software back to how it was when it was first purchased, run a system recovery:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01867418&lc=en&product=4043282
    I hope this helps.
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

  • HT1222 I have iphone 4 and the software is ios 7.0.2. I am facing problems with my phone. Since the last software update my phone has started giving problems. like it hangs sometime when i recieve an incoming call. The carrier status bar shifts down a bit

    I have iphone 4 and the software is ios 7.0.2. I am facing problems with my phone. Since the last software update my phone has started giving problems. like it hangs sometime when i recieve an incoming call. The carrier status bar shifts down a bit and sometimes it vanishes automatically. I,m confused.
    Secondly i have an update IOS 7.0.4 waiting in my Software Update menu. I have tried so many times to update my iphone but it always fails to update the IOS 7.0.4. Any body suggest anything regarding this

    Wow. Lots of help. Thanks apple

  • I just had problems with a game called call of duty 4, modern warfare.  I decided that if I deleted it, I could reinstall it, I could get it back to normal. After I deleted it,I went to to the appstore and went to purchases and accidentaly deleted it/help

    I just had problems with a game called call of duty 4, modern warfare.  I decided that if I deleted it, I could reinstall it, I could get it back to normal. After I deleted it,I went to to the appstore and went to purchases and accidentaly deleted it.  please help me!

    You have not deleted it from the purchases list, it is just hidden. To unhide an app, open the Mac App Store app, click the Account link in the Quick Links to the right of the pane and go to the iTunes in the Cloud section where you can manage hidden apps.

  • Problem with BAPI_PO_CHANGE when called within ME_PURCHDOC_POSTED BADI Implementation

    Hi All,
    We have a situation where PR to PO conversion needs to happen through a custom program which submits ME59N in batches. During this conversion, it's a business requirement to update the PO's GS Partner function based on the manufacturer in the first item's inforecord.
    In order to do this, we have implemented the badi "ME_PURCHDOC_POSTED". The only method within this is "POSTED"
    In order to update the PO, I use "BAPI_PO_CHANGE" inside this badi with IN BACKGROUND TASK addition. The reason behind this is that this BADI is called before the commit that creates the PO happens. And by calling the BAPI_PO_CHANGE in a background task, I ensure that it's run after the commit has happened.
    This approach works extremely well, but fails in certain scenarios when executed for large PR to PO conversion where certain PRs exceed 300 line items.
    Since the background task call cannot be debugged, I used the enjoy bapi_po_change exit EXIT_SAPL2012_004 to dump the return table to a custom table or the application log, to check what has happened.
    In the instances that this has failed, the return table's content was -> function "change purchase order" performed in test
    I assure you I have NOT used the test flag. I even applied a couple of SAP notes that mention this issue, but still had no success. I am waiting for a proper response from OSS at the moment but this is a real headscratcher.
    Also importantly at this point, the PO was successfully created.So the partner function change should happen without issues  :'(
    Have any of you come across this issue before ? What steps have you taken to overcome this issue ?
    Regards,
    Tharindu

    Hi All,
    We have a situation where PR to PO conversion needs to happen through a custom program which submits ME59N in batches. During this conversion, it's a business requirement to update the PO's GS Partner function based on the manufacturer in the first item's inforecord.
    In order to do this, we have implemented the badi "ME_PURCHDOC_POSTED". The only method within this is "POSTED"
    In order to update the PO, I use "BAPI_PO_CHANGE" inside this badi with IN BACKGROUND TASK addition. The reason behind this is that this BADI is called before the commit that creates the PO happens. And by calling the BAPI_PO_CHANGE in a background task, I ensure that it's run after the commit has happened.
    This approach works extremely well, but fails in certain scenarios when executed for large PR to PO conversion where certain PRs exceed 300 line items.
    Since the background task call cannot be debugged, I used the enjoy bapi_po_change exit EXIT_SAPL2012_004 to dump the return table to a custom table or the application log, to check what has happened.
    In the instances that this has failed, the return table's content was -> function "change purchase order" performed in test
    I assure you I have NOT used the test flag. I even applied a couple of SAP notes that mention this issue, but still had no success. I am waiting for a proper response from OSS at the moment but this is a real headscratcher.
    Also importantly at this point, the PO was successfully created.So the partner function change should happen without issues  :'(
    Have any of you come across this issue before ? What steps have you taken to overcome this issue ?
    Regards,
    Tharindu

  • Problem with a bapi fm...

    hi all,
    i have a problem with Bapi_goodmvt_create.
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
          EXPORTING
            goodsmvt_header  = gt_header
            goodsmvt_code    = gt_bapigm_code
            testrun                 = 'X'
          IMPORTING
            goodsmvt_headret = gs_headret
          TABLES
            goodsmvt_item    = gt_item
            return                 = gt_return.
        IF gt_return-type <> 'E'.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
        ELSE.
          CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
        ENDIF.
    in the error table gt_return iam getting,
    while running in the test run mode no errors are comming. but while running test run mode immediately iam getting the below error, but i havent opened the plant or material anywhere,
    "The plant data of the material 801187 is locked by the user PREM."
    help me in this issue,
    Thanks,
    Prem.

    Use WAIT for 5 seconds before COMMIT. It may work.
    Regards,
    Amit
    Reward all helpful replies.

  • Problem with C++ library call with Labview/linux.

    HI,
    I'm working under LV for Macintosh and for linux.
    While I'm porting a vi, which is calling C and C++ code, developped
    under MAC, and ported to Linux, I get the following problem:
    Under Linux, the static object constructors of the library are not
    called during the load period of LabVIEW (which is done while the VI's
    are loaded on mac.)
    From there, I get a crash of LabVIEW (Segmentation fault) at the first
    access of a static object.
    I compile the files .cc with the following options:
    g++ -fPIC -shared -I -o f.o f.cc
    The link is done with that command:
    ld -fPIC -shared -u __pure_virtual\
    /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/crtbeginS.o \
    -l stdc++ \
    /usr/lib/gcc-lib/i386
    -redhat-linux/egcs-2.91.66/libgcc.so \
    /usr/lib/gcc-lib/i386-redhat-linux/egcs-2.91.66/crtendS.o \
    -o RUlib.dll
    LabVIEW does find all the functions in the libraries (it agrees to run),
    but doesn't call at all the constructors during library load.
    Under Macintosh, I've encounter the same problem, but I could solve it
    in choosing the right entry points of the library in the compiling
    option. (initilisation = __initialize, main = '' termination = __terminate).
    Thanks to let me know
    Eric Cano

    Sorry for necro'ing an old thread. But I have the same issue in labview 8.2 in Linux. Calling natively compiled applicationsin system exec causes segmentation faults.
    Anyone have any experience with this?
    I believe I found the issue. You need to configure the application to recieve data from STDIN if you don't the application will crash, this solved my issue.

  • Problem with messages and calls,, please respond

    Problem with my iphone is that the messages are sent and received very late, it hangs while sending, when delete a message it takes time to open messages firstly... messages in the thread disappear and such abnormalities.
    and in Calls, i receive notification when the call is missed.
    help!

    I would do a full restore using iTunes (backup first, of course)

  • Problem with messages and calls

    Problem with my iphone is that the messages are sent and received very late, it hangs while sending, when delete a message it takes time to open messages firstly... messages in the thread disappear and such abnormalities.
    and in Calls, i receive notification when the call is missed.
    help!

    Ritu Parchure wrote:
    I have ulmocked and restored the iphone.
    I assume you mean "unlocked and restored." My apologies if I msunderstand, but if you unlocked it yourself, then you must have hacked it. If it was originally locked at the time of purchase, only that carrier can unlock it.

  • Hiya, I've got a weird problem with my iPhone4. On the 'home page' of my iPhone the mail symbol tells me there's a new mail waiting for me. However, there's no new mail to be found. Does anyone know what the problem is? Thanks

    Hiya, I've got a weird problem with my iPhone4. On the 'home page' of my iPhone the mail symbol tells me there's a new mail waiting for me. However, there's no new mail to be found. Does anyone know what the problem is? Thanks

    This response is a little late as I just read about your problem. I have a 2012 Dodge Charger and a 2012 Chrysler Town and Country and both worked flawlessly with the iPhone 5s my wife and I had. However, we just upgraded to the iPhone 6 and Uconnect will receive calls but you cannot answer them. You can callout successfully, however. the annoyance being the inability to answer incoming calls in the HandsFree mode.

  • Having problem with siri on calling someone

    Hi.. i'm having a problem with siri when calling someone..it says " i can't call using that number "
    Im from Mauritius, our mobile number having been migrated into 8-digits since 1 month. I'd turn off siri, reset setting.. its the same!
    whats wrong with that?

    i"m from Mauritius also having the same problem when calling someone using siri.
    i think its because, of the 8 digits number.

  • "problem with shortcut/fatal error during installation" on other user accts

    I-tunes installed and works with no problem in original user, but when another user account attempts to open Itunes, program attempts to install/configure again, then results in a "problem with shortcut / fatal error during installation" message. Setting the other users to administrators doesn't help, nor does un-installing/re-installing, etc. I am at least the 4th person with this problem (see Burthomp earlier today,Jan. 17 and Richard 1018 on Dec. 29). This problem started with Itunes 7.5, and is still a problem on Itunes 7.6. I have a standard Dell setup, Model E510. There must be a lot of people with this problem. Apple, are you working on this? Anyone else have a suggestion?

    I ran into the same problem, but I think I have the solution. First, the problem isn't with iTunes, its an access problem with Windows XP. I tried to run the iTunes program from the Program Files, and I received an "Access Denied" error.
    If you try to open the Program Files in My Computer\Local Disk(C:) and receive an "Access Denied" Error, that is why you are receiving a "shortcut problem/Fatal Error during installation".
    Here is how I corrected it:
    1) Shut down the computer and restart it in "safe mode". I had to look up how to do this, but I pressed F8 when it was restarting and I highlighted the "safe mode" and started the machine. The icons will be large, but ignore it.
    2) Open a user that has administrative access -- I used the one user that has access to itunes.
    3) Go to My Computer\Local Disk (C:) and right click on the "Program Files" folder. Select "properties" at the bottom.
    4) Go to the Security Tab
    5) At the top you should see one or two users that have access to the Programs File. One will be the user that itunes works on. Click Add, then click Advanced, then click Find Now.
    6) At the bottom should appear a list of users. Select a user on which itunes doesn't work. Click Ok, then click OK again.
    7) Give that user full access to the Program File by putting a check mark in the Full Access box.
    8) Repeat for the remaining users.
    9) Restart computer in normal mode.
    10) Go into a user that had problems and click the itunes icon, and it should run.
    It worked for me, I hope it works for you.

Maybe you are looking for

  • News scroller with images/videos

    Any help would be appreciated. I am trying to create a news scroller such as the one on espn.com where you have a scrolling news component that can contain images and or videos and links to news stories stored in the database. Does anyone have any gu

  • How do I re-install my Photoshop Elements 12 following a computer crash?

    My computer crashed and I lost my Photoshop Elements 12. How can I reinstall the program?

  • Component Price Change before CK11N for Std Cost Estimate-Mat(ppc1)

    Hello CO Gurus , When I am running std. costing (ck11n) for a fert material it is giving price by exploding its bom( adding component prices). I want to take one of its component price by taking 125% .( i.e. in the master (account view )of component

  • Uninstalling ACR 6.7

    I have CS5.5 and Lightroom 4, today I noticed that any edits I made in Lightroom 4 did not flow to CS5.5 which had Raw 6.3. I saw that LR4 required ACR 6.6 so I downloaded the upgrade and now I get the "process 2012..." message, if I click on the opt

  • Corrupted BACKUP .dmg - any way I can retrieve the data?

    A friend needs to keep confidential data on a Mac so I suggested using an encrypted sparse image dmg file. So far it seems to be working fine but I had to test it and of course managed to break it. I created an encrypted sparse image file, added some