'BAPI_ACC_DOCUMENT_CHECK' for Korea

Hi Guys,
I am using the following BAPI for checking the accounting docuement before posting for korea:
FUNCTION 'BAPI_ACC_DOCUMENT_CHECK'
  EXPORTING
    documentheader    = ti_doc_head
  TABLES
    accountgl         = ti_acc_gl
    accountreceivable = ti_acc_re
         accountpayable    = ti_acc_pa
    currencyamount    = ti_curr_amo
    return            = ti_return.
The posting is for gl accounts.
I am getting the following error message:
Change business place in document > long text
It seems it is asking to specify the Buisness Place. Can anybody tell me how to specify buisness place for GL posting.
Or you have any other solution then it is welcome.
Regards,
Prakash Pandey

Business Place refers to the tax deposit authority in SAP. Business place can be defined through customizing under the Finance Global setting - Witholding taxes - South Korea.
Please check and make the necessary update.
Regards,
Mamta Sarda

Similar Messages

  • Error "Enter section code" while doing revenue recog for Korea company code

    Hi
    While doing revenue recognition  for a sales document using VF44 for Korea  company code , i got an error to "enter sectio code".
    There is no WHT for the customer, only VAT is entered in the sales price.
    How to resolve this issue, Please help.
    Thanks,
    Vaishnavi

    Resolved.

  • Error Enter a Business Location for Korea

    Hello All,
    Trying to release billing to account (tcode:VF02) but encounterring this error message..
    *Enter a business location
    Message no. F5A192*
    any idea where to config ?
    we are using ecc6 for Korea .
    Thanks
    Mangesh

    Dear:
              Please proceed as per SAP note  to remove the error as given under
               You can have default business place per company code and for specific purposes. In one company, you can also define default  for each transaction or for all transaction codes.  If this customizing does not existed, the default from user paramter 'ID_BUPLA' is used.
               The customizing is required as the following :-
    IMG-> FI global setting -> Accounts Receivable and Accounts Payable
    -> Business Transactions -> Outgoing Payments -> Automatic Outg.Payment
    -> Automatic Posting -> Branch Assignment for Automatic Postings
    a)Define Assignment Keys (V_1AZFSCHL)
       Br.All   =  space  or <transaction code>
       Text     = 'Default bus.place for <transaction> in batch'
    b)Define Branch Assignment for Automatic Postings (V_T042ZF)
       Br.All   =  space  or <transaction code>
       Company  =  <company>
       Branch   =  <bus.place>
    Note: branch allocation key = space means for all transaction codes.
    2) implement the correction in func.module 'J_1H_BUPLA_GET_VALUE'
       and program MF05AFB0_BUPLA_SETZEN.
    Regards

  • Error occurs, BAPI_ACC_DOCUMENT_CHECK for creation of accounting document

    Hi Experts,
    I am creating accounting document using BAPI_ACC_DOCUMENT_CHECK  Bapi F.M.  Profit segment number  is mandatory ( T.code KEDR)  for G/L account 411103 .when i am using this G/L account for creation of accounting document, occurs below error message.
    1.Field  Prof. Segmt  is required field  for G/L account 0495 411103
    2. Account 411103 requires an  assignment  to a CO Object.
    Please let me know how i can resolve this problem using with BAPI.
    Thanks
    Jaya Reddy

    The BAPI you have mentioned is used to check whether a posting to accounting is possible.  You can use the Bapi "BAPI_ACC_DOCUMENT_POST" for posting accounting documents.  Depending on the GL account configuration you have to pass PROFIT CENTER / COST CENTER to the BAPI.
    Regards
    vinod

  • BAPI_ACC_DOCUMENT_CHECK for Vendor Items

    Hi friends,
    I am using the BAPI BAPI_ACC_DOCUMENT_CHECK to check the data to be posted for Vendor lines
    items. It is giving the error:
    'For document type RE, an entry is required in field Reference'
    I have written the code like this:
        Loop at t_final into wa_final.
    *       Populate data for accounting doc. header to populate to BAPI
            IF v_count = '1'.
              wa_documentheader_ap1-username     = sy-uname.
              wa_documentheader_ap1-header_txt   = wa_final-bktxt.
              wa_documentheader_ap1-comp_code    = wa_final-bukrs.
              PERFORM convert_dates using wa_final-bldat CHANGING wa_documentheader_ap1-doc_date.
              PERFORM convert_dates using wa_final-budat CHANGING wa_documentheader_ap1-pstng_date.
              wa_documentheader_ap1-doc_type     = wa_final-blart.             "= 'RE'
              wa_documentheader_ap1-ref_doc_no   = wa_final-xblnr.             "Passing the 'Ref 1' as value
              APPEND wa_documentheader_ap1 TO t_documentheader_ap1.
    *         Populate Vendor Line Item
              CLEAR wa_ACCOUNTPAYABLE_ap1.
              wa_ACCOUNTPAYABLE_ap1-ITEMNO_ACC = v_count.
              wa_ACCOUNTPAYABLE_ap1-VENDOR_NO = wa_final-lifnr.
              wa_ACCOUNTPAYABLE_ap1-GL_ACCOUNT = c_hkont_v.
              wa_ACCOUNTPAYABLE_ap1-COMP_CODE = wa_final-bukrs.
              wa_ACCOUNTPAYABLE_ap1-PMNTTRMS = wa_final-zterm.
              wa_ACCOUNTPAYABLE_ap1-BLINE_DATE = wa_final-zfbdt.
              wa_ACCOUNTPAYABLE_ap1-PYMT_METH = wa_final-zlsch.
              wa_ACCOUNTPAYABLE_ap1-TAX_CODE  = wa_final-mwskz.
              wa_ACCOUNTPAYABLE_ap1-REF_KEY_1 = wa_final-xblnr.                       "Ref 1 as value
              wa_ACCOUNTPAYABLE_ap1-REF_KEY_2 = wa_final-xblnr.                       "ref 1  as value
              wa_ACCOUNTPAYABLE_ap1-REF_KEY_3 = wa_final-xblnr.                       "Ref 1 as value
              APPEND wa_ACCOUNTPAYABLE_ap1 to t_ACCOUNTPAYABLE_ap1.
    *       Amount and Currecy details
              wa_currencyamount_ap1-itemno_acc = v_count.
              wa_currencyamount_ap1-currency = wa_final-waers.
              v_wrbtr =  wa_final-wrbtr * -1.
              wa_currencyamount_ap1-amt_doccur = v_wrbtr.
              v_wrbtr_cr_ap1 = wa_final-wrbtr.
              APPEND wa_currencyamount_ap1 TO t_currencyamount_ap1.
              CLEAR wa_currencyamount_ap1.
              v_count = v_count + 1.
           ENDIF.
    *       GL Line Item
            wa_accountgl_ap1-itemno_acc =  V_count.
            wa_accountgl_ap1-gl_account =  wa_final-hkont.
            CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
              EXPORTING
                input  = wa_accountgl_ap1-gl_account
              IMPORTING
                output = wa_accountgl_ap1-gl_account.
            wa_accountgl_ap1-item_text  =  wa_final-sgtxt.
            wa_accountgl_ap1-profit_ctr =  wa_final-prctr.
            wa_accountgl_ap1-costcenter =  wa_final-kostl.
            CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
              EXPORTING
                input  = wa_accountgl_ap1-costcenter
              IMPORTING
                output = wa_accountgl_ap1-costcenter.
            wa_accountgl_ap1-REF_KEY_1  = wa_final-xblnr.  "Ref 1 as a value
            wa_accountgl_ap1-REF_KEY_2 = wa_final-xblnr.  ""Ref 1 as a value
            wa_accountgl_ap1-REF_KEY_3 = wa_final-xblnr.  ""Ref 1 as a value
            wa_accountgl_ap1-costobject =  wa_final-kstrg.
            APPEND wa_accountgl_ap1 TO t_accountgl_ap1.
            CLEAR wa_accountgl_ap1.
    *       Amount and Currecy details
            wa_currencyamount_ap1-itemno_acc = v_count.
            wa_currencyamount_ap1-currency = wa_final-waers.
             wa_currencyamount_ap1-amt_doccur = wa_final-wrbtr_it.
            APPEND wa_currencyamount_ap1 TO t_currencyamount_ap1.
            CLEAR wa_currencyamount_ap1.
            v_count = v_count + 1.
    endloop.
    * Validating against BAPI_ACC_DOCUMENT_CHECK
      CALL FUNCTION 'BAPI_ACC_DOCUMENT_CHECK'
        EXPORTING
          documentheader = wa_documentheader_gl2
        TABLES
          accountgl      = t_accountgl_gl2
          currencyamount = t_currencyamount_gl2
          return         = t_return_gl1.
    But it is giving the error: ' 'For document type RE, an entry is required in field Reference''
    Is rthe value entered for Reference is valid document?
    Do i need to pass any other table to this FM to populate vendor data?
    What is the problem in my code?
    Thanks,
    Sreenivas reddy
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 4:01 PM

    Hi Srinivas,
    The minimun field required to make a vendor posting are as follows,
            wa_vendoritem-itemno_acc  = gv_count.
            wa_vendoritem-vendor_no    =  wa_vendor-newko.
            wa_vendoritem-item_text     = wa_vendor-sgtxt.
            wa_vendoritem-comp_code  = wa_vendor-bukrs.
            wa_vendoritem-pmnttrms     = wa_vendor-zterm.
            wa_vendoritem-bline_date   = wa_vendor-zfbdt.
            wa_vendoritem-item_text    = wa_vendor-sgtxt.
            wa_vendoritem-tax_code    = wa_vendor-mwskz.
            wa_vendoritem-profit_ctr     = wa_vendor-prctr.
    I think you missed the profir centre field which is mandatory for a vendor posting,or if is a new gl, it will derive the profit centre from the cost centre of the previous line(i.e. G/L line).  if it is not a new G/l , then you need to manually find the profit centre from cost centre and put the values. So double check passing these field , it should be working. Still have doubts please contact me.
    regards,
    Shobana.K
    Edited by: Shobana k on Jan 8, 2009 8:05 AM
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 4:01 PM

  • MOSS 2007 Enterprise Search not working for Korea based users but WSS Search is working fine.

    Hi,
    In my organization all the users are able to do Enterprise content search and people search but only Korea based users its not working (both content search & people search). But at the same time WSS 3.0 search (its a different farm) is working fine.
    Your search cannot be completed because of a service error. Try your search again or contact your administrator for more information.
    1. No changes in the URL for all users and Korea users
    2. Tried with different browsers and clearly the temp files but no use.
    3. Korea users also working from office only with Wired LAN connection.
    4. Tried different accounts (including Farm account) but no use.
    5. Not receiving any errors in the Event Viewer
    Anyone please let me know what went wrong.
    Regards,
    Prabhu.

    Hi,
    Is the Archive folders open in your Outlook?
    Please try to click and hight All Mail Items under Mail Folders and then try to search again:
    Please let me know the result.
    Best Regards,
    Steve Fan
    TechNet Community Support

  • ITunes account in English Language for Korea

    I have moved to Korea and I have a Korean credit card. I want to change my Apple iTunes account to Korea but in English language. Is that possible? How to go about it? Thanks in advance.

    Hi
    Dont worry Richard. You can download every user manual in your favourite language from the Toshiba page. I did it many times
    Simply follow this:
    http://eu.computers.toshiba-europe.com -> Support & Downloads -> Support homepage -> Toshiba User Manual
    There you can choose the right user manual for your notebook

  • ECM Base Pay formatting for Korea,Jordan

    Hi ECM folks,
                           I 'm facing issues with Korea,Taiwan,Jordan currency to display Annual Salary  with exact amount rounded in ECM Base Pay screen with 2 decimal places (SAP Std)
    for e.g : 123.00 is displayed as 12300 (Korea)
                  123.00 is displayed as 123.000 (Jordan)
    Eventhough from SAP ,we are passing amount rounded and shifted based on TCURX table .Only these countries seems different in screen.Other countries with 3 or 0 decimals looks good and displayed with 2 decimal places as SAP std
    Let me know for any solution .Thanks in advance.
    -Chitra

    hi chitra,
    first answer, aahhhhh!!!!
    these currencies are nightmares to work with, especially within ECM. 
    The reason why these currencies happen like this is because for these currencies, and about 7-10 others, there is no such thing as having a decimal amount.  You can't have 1,250.35 JPY.  So basically how SAP handles is this is the factor configuration used in TCURF.  If you look in this table things start to make sense.
    Basically you have to use these factors to properly load you rate of exchange in TCURR.  right now you are probably loading the ROE currencies mentioned with the same factor as normal currencies.  once you fix your ROE in TCURR, things will appear normal. 
    best regards,
    michael

  • Problem in entering passport details in 0185 IT for korea employees.

    Hi Experts,,
    I am facing the problem  whilw updating passport details in 0185 IT.
    Main problem is the subtype ....Passport  01 is  not showing up.
    In PA30 ,when we want to maintain personal ids...the passport subtype is not showing up.
    In Dev ..everything is fine.We can update the data in DEV.Later we moved to qualiity..everthying is moved.But when we want to updfate the passport details..the subtype is not showingup at all.Did we miss anything in configs.
    We did configs in tables  V_T582l and V_T591a.
    Please advice to showup the the subtype of personal ids pertaining to korea.
    Regards,
    Sairam

    Solved the issue by maintainting korea//Passport  in  V_T5R05 table
    Sairam.

  • Telephone number for Korea telecom freetel?

    I've discovered through AppleCare UK that my phone is locked to a Korean carrier, namely Korean Telecom Freetel
    Does anybody have any experience in contacting this carrier and getting their phone unlocked?
    Does anybody know the telephone number?
    Thanks

    Korean Telecom Freetel hasn't existed as a separate entity since 2009, when they merged with KT. Olleh is KT's current corporate identity, so you might try contacting them and see if they can help you, though if it is locked to them, Apple's most recent information is that they do not provide unlocking services. I don't read Korean either, so you'll have to do a web search for a support phone number.
    Even if they do, in most cases, though, a cell company will only unlock for the person with whom they had the contract, so if you purchased this iPhone used, as I'm guessing is the case or you'd know who it was locked to, you may not be able to get it unlocked.
    Good luck.
    Message was edited by: Dave Sawyer

  • Issue with Family Member/Dependent service for Korea

    Hello , When i try to run the Family Member / Dependent Service in the webdynpro I am getting this error. com.sap.tc.webdynpro.modelimpl.dynamicrfc.WDDynamicRFCExecuteException: Access via NULL object reference not possible., error key: RFC_ERROR_SYSTEM_FAILURE at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:101) at com.sap.xss.per.fc.persinfo.FcPersInfo.onCleanup(FcPersInfo.java:572) at com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfo.onCleanup(InternalFcPersInfo.java:840) at com.sap.xss.per.fc.persinfo.FcPersInfoInterface.onCleanup(FcPersInfoInterface.java:252) at com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfoInterface.onCleanup(InternalFcPersInfoInterface.java:299) at com.sap.xss.per.fc.persinfo.wdp.InternalFcPersInfoInterface$External.onCleanup(InternalFcPersInfoInterface.java:455) at com.sap.pcuigp.xssfpm.wd.FPMComponent.cleanUp(FPMComponent.java:644) at com.sap.pcuigp.xssfpm.wd.FPMComponent.access$1000(FPMComponent.java:78) at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPM.exitCalled(FPMComponent.java:963) at com.sap.pcuigp.xssfpm.wd.FPMComponent$FPMProxy.exitCalled(FPMComponent.java:1134) at com.sap.pcuigp.xssfpm.wd.BackendConnections.wdDoExit(BackendConnections.java:124) at com.sap.pcuigp.xssfpm.wd.wdp.InternalBackendConnections.wdDoExit(InternalBackendConnections.java:228) at com.sap.tc.webdynpro.progmodel.generation.DelegatingCustomController.doExit(DelegatingCustomController.java:77) at com.sap.tc.webdynpro.progmodel.controller.Controller.exitController(Controller.java:180) at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154) at com.sap.tc.webdynpro.progmodel.controller.Component.exitController(Component.java:251) at com.sap.tc.webdynpro.progmodel.controller.Controller.exit(Controller.java:154) at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.exit(ClientComponent.java:219) at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.exit(ClientApplication.java:474) at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.destroy(ClientApplication.java:527) at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.destroy(ApplicationSession.java:398) at com.sap.tc.webdynpro.clientserver.session.ClientWindow.destroyApplicationSession(ClientWindow.java:235) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doDestroyApplication(ClientSession.java:1003) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doSessionManagementPostProcessing(ClientSession.java:789) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:264) at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149) at com.sap.tc.webdynpro.clientserver.session.core.ApplicationHandle.doProcessing(ApplicationHandle.java:73) at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.sendDataAndProcessActionInternal(AbstractApplicationProxy.java:860) at com.sap.tc.webdynpro.portal.pb.impl.AbstractApplicationProxy.create(AbstractApplicationProxy.java:220) at com.sap.portal.pb.PageBuilder.updateApplications(PageBuilder.java:1288) at com.sap.portal.pb.PageBuilder.createPage(PageBuilder.java:355) at com.sap.portal.pb.PageBuilder.init(PageBuilder.java:548) at com.sap.portal.pb.PageBuilder.wdDoInit(PageBuilder.java:192) at com.sap.portal.pb.wdp.InternalPageBuilder.wdDoInit(InternalPageBuilder.java:150) at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:108) at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215) at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200) at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.init(ClientComponent.java:430) at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:362) at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.initApplication(ApplicationSession.java:756) at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doProcessing(ApplicationSession.java:291) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessingStandalone(ClientSession.java:713) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doApplicationProcessing(ClientSession.java:666) at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:250) at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:149) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:62) at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doPost(DispatcherServlet.java:53) at javax.servlet.http.HttpServlet.service(HttpServlet.java:760) at javax.servlet.http.HttpServlet.service(HttpServlet.java:853) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:401) at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:266) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:386) at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:364) at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:1039) at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:265) at com.sap.engine.services.httpserver.server.Client.handle(Client.java:95) at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:175) at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33) at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(AccessController.java:219) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172) Caused by: com.sap.aii.proxy.framework.core.BaseProxyException: Access via 'NULL' object reference not possible., error key: RFC_ERROR_SYSTEM_FAILURE at com.sap.aii.proxy.framework.core.AbstractProxy.send$(AbstractProxy.java:150) at com.sap.xss.per.model.mac.HRXSS_PER_MAC.hrxss_Per_Cleanup(HRXSS_PER_MAC.java:359) at com.sap.xss.per.model.mac.Hrxss_Per_Cleanup_Input.doExecute(Hrxss_Per_Cleanup_Input.java:137) at com.sap.tc.webdynpro.modelimpl.dynamicrfc.DynamicRFCModelClassExecutable.execute(DynamicRFCModelClassExecutable.java:92) Please can any one suggest how to correct the same.
    I Also checked the IT 0105 data and everything is mapped properly.
    Please help me resolve the issue.
    Thanks & Regards,
    Pramod

    Hi Surekha,
    Thanks for the reply....
    Sorry that I haven't posted all the details....
    We already checked changing the different use cases and the Portal JCo connections are working fine.
    For now the use case been used for IT 0021 Subty 1 is set to B2 and Subty 2 is set to B3
    Any other thoughts are highly appreciated.
    Thanks & Regards,
    Pramod

  • Enter a business location for ECC 6 EHP 5 (Taiwan)

    Hi,
    While releasing the billing doc to accounting we are getting the error Enter a business location
    Message no. F5A192
    We are working on ECC6 EHP 5 and this requirement is for Taiwan.
    I have found the SAP Note; 376018, however this is valid for 4.6c ONLY.
    Could you please check and advise is this note is valid for ECC 6 as well. Or do we need to apply any other notes.
    Or any other suggestions.
    Thanks & Regards,
    Student.

    Hi,
    Please check the below thread.
    Error Enter a Business Location for Korea
    Regards,
    P Gomatheeswaran

  • VAT summary report of South Korea (RFUMSV45R) in ECC 6.0

    Dear all,
    is there someone who has some experience on the VAT reporting for Korea. We are doing a roll out in Korea and need some support. My question is about the submission of the electronic file available in RFUMSV45R. After comparing the output file with the file from the leagacy system in Korea it seems that the output of VAT does not cover all requirements of the Korean Tax Authorities.
    Regards,
    Matthias

    Dear Matthias,
    have you succeeded with RFUMSV45R somehow? I am currently facing a similar issue.
    Best regards,
    Emanuel

  • Language Setting for - Hyperion Smart View for Office

    Hi,
    Here's a scenario I need to find an answer to.
    1. We have Essbase system 9 installed on a machine named: USESSSRVR and here the ESSLANG environment variable is set to "English_UnitedStates.US-ASCII@Binary".
    2. We build two Unicode cubes, one for Korea Sales called APPKR.SALESCUB & other for Turkey Sales called APPTR.SALESCUB
    3. Korean users are sitting in Korea & Turkey users are in Turkey & both these users need to see data in their local languages.
    4. Since Essbase Excel Add-In is not compatible with Unicode cubes, we have asked them to use "Hyperion Smart View for Office".
    Now question is,
    -> Where in this entire system do I need to do Language Settings so that they see their characters correctly?
    -> Is there a place in Smart View where you can set languages?
    -> Also we have a limitation that we need to have both the applications APPKR & APPTR on the same Essbase server which is in US.
    PLEASE HELP.
    Thanks.
    ~Jaymin Darbari.

    It's actually because you are installing over an old version. Uninstall SV, review the registry entries and directories and then reinstall with admin priv.
    Of course when I looked it up on support the Oracle ID 1466433.1 suggests that the .net install is corrupt so was i going mad? Not beyond reasonable doubt since I put in an SR a while back about it so I have proof that it is listed as an " "internal bug #14149839 : "SMART VIEW EXTENSION ACTIVATOR OBJECT (-2147467262) This is reported for excel 2010" has been raised with development team. As per the update from the bug this issue has been addressed in patch 11.1.2.2.310 which is yet to be released."
    So if you are on an earlier version of Office possibly is because of the .net install (which I think needs v3.5, at least for Office2003), but I would try do a clean install first.
    Steve

  • HT4009 GoGo 3D Korea: Stopped working. How to get map again?

    HI.
    I bought this app GoGo 3D Korea a year ago. I bought the perpetual license (lifetime).  Now I see that this app is no longer available in itunes, but it is available as another app BringGo Korea.
    I bought this In-app map license for lifetime.  I paid 49.90usd.  But after I upgraded to iOS7, the map data is gone.  I do have the app saved in my computer, so I installed the app, but the in-app map is not downloading again.  App is crashing everytime I am trying to download the perpetual map.
    How can I download this map again?
    EnGIS developer who made this app does not reply to the mails.  This is completely the developer's responsibility to provide me back the map, but there is no answer from them.  Infact now I can't even contact them as GoGo 3D Korea is no longer available on itunes. 
    What to do?

    Hi,
    I did have the same problem on Sept. 22nd, just after the new update installation. My GoGo 3D for Korea disappeared. Somehow I managed to reinstall the app, but I was charged again with 44,99€. I took me several times to get the app--but finally it is a rip off by either Apple or GoGo since I purchased the lifetime version.
    Diese Ausgaben waren fällig, weil nach dem update das Programm neu installiert werden musste--das ist nicht zu meinen Lasten--die Neu oder Wiederinstallation darf nicht zu Kosten führen. Das Programm wurde von mir bereits bezahlt.
    Am 23.09.2013 um 16:24 schrieb iTunes Store <[email protected]>:
    Rechnung an:
    [email protected]
    Lothar Münker
    Hauptstrasse 33
    57271 Hilchenbach
    DEU
    Bestellnummer: MHQ35T7QSG
    Belegdatum: 22.09.13
    Bestellung gesamt: 44,99 €
    Rechnung an: MasterCard ....
    Artikel
    Entwickler
    Art
    Preis pro Stück
    Gogo3D, Gogo3D       Map Data
    Ein Problem melden
    Engis       Technologies.Inc
    In-App-Kauf
    44,99 €
    Bestellung gesamt:
    44,99 €
    Bitte bewahren       Sie eine Kopie für Ihre Unterlagen auf.
    Die Bedingungen und Konditionen, die an diese Bestellung geknüpft sind,       finden Sie weiter unten.
    iTunes Store
    Sie finden die Verkaufsbedingungen und Verkaufsrichtlinien, indem Sie Ihr       iTunes-Programm starten und auf diesen Link klicken: Verkaufsbedingungen
    Antworten auf häufige Fragen zum iTunes Store finden Sie hier:http://www.apple.com/de/support/itunes/store/
    Apple-ID – Übersicht • Einkaufsstatistik
    Apple respektiert Ihre Privatsphäre.
    Informationen zur Verwendung Ihrer persönlichen Daten erhalten Sie hier: http://www.apple.com/de/privacy/
    Dies ist keine   Mehrwertsteuerbenachrichtigung. Copyright © 2011 iTunes S.à r.l. Alle Rechte vorbehalten

Maybe you are looking for