Unable to Update infotype 586 and 585 through BDC or LSMW

Dear Sir/ Madam,
I am in process of updating actual investment by employee in info type 0586 and 585.
I have already inputed the projected investments in 586 & 585 and as per tax tax is computed.
Also I have written a LSMW to update in the actual Tick.
But the problem is now I want to update actual investemnet using BDC, But my ABAper is unbale to do so as the records has been sorted on the projected investmnet ( ascending order),.
As this is to be updated for nearly 2500 records which vary ..
IKinldy suggest any standard program availble or in BDC can I use the investvent codes in Table T7INI3
Regards
Deepak Gadekar

Hi,
Recording of psv2 and psv1 are complex.
I have done it using BDC since i need to do certain validations.
Go with BDC rather than LSMW.
Kindly mention the fields u need to update.Based on it u can decide on BDC or LSMW?
Edited by: Thyagu on Jun 15, 2009 11:51 AM

Similar Messages

  • HT1918 I was in Singapore when I created this Apple ID and payment information. Now I am have shifted to India and I am unable to update the Country and Payment related information. When I click on country no option comes up. Can somebody suggst anything?

    I was in Singapore when I created this Apple ID and payment information. Now I am have shifted to India and I am unable to update the Country and Payment related information. When I click on country no option comes up. Can somebody suggst anything?

    Hi Peyush!
    You may want to try changing the country associated to your Apple ID from your iOS device. I have an article for you here that I believe will help you change the country for your signed in Apple ID:
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Specifically, this is the section of the article you will want to pay attention to:
    Change your iTunes Store country
    Sign in to the account for the iTunes Store region you'd like to use. Tap Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.
    Follow the onscreen process to change your region, agree to the terms and conditions for the region if necessary, and then change your billing information.
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • I am travelling overseas. My usual PC is unable to update my purchase and unable to detect my iPhone. How can I resolve this?

    I am travelling overseas. My usual PC is unable to update my purchase and unable to detect my iPhone. How can I resolve this?

    I do not think so. I travel quite a bit. When I return home, everything is fine. I believe is something with network?!

  • TS1424 I am unable to update my apps and get this message: There was an error in the App Store. Please try again later. (20)

    Help, i'm unable to update anything in the app store and get this message: There was an error in the App Store. Please try again later. (20)? I updated my account info and still no luck...
    And yes, I have tried later.

    And now I get this message:
    There was an error in the App Store. Please try again later. (13)

  • HT4623 Since my recent update, i am unable to update any apps and access my itunes account??

    I have just recently updated my i-phone 4 to the latest ios update, since then i am unable to update any apps i have on my phone and unable to download anything from itunes???? any help would be appriciated.

    No, since last Thursday, unable to access i-tunes store at this time.
    I loaded up my laptop, went on the i tunes store, error message came up think it was an -30???
    I have logged out from iTunes on my phone, turned off , then turned back on, but still no joy.

  • Unable to update keynote, numbers and pages

    Unable to update Keynote, Numbers, Pages.  Says 3 updates available but won't let me update.

    Hide the three apps in the Trash and redownload them from the Purchases pane.

  • Unable to update pages, Keynote and Numbers

    Under my apps updates its asks to update pages, keynotes and numbers. I press update and it will imediatly proceed to this app cannot be updated. For all three apps. It then asks for a product key to 'purchse' it. I alreay purchased the apps when I bought the laptop.

    You're describing the behavior of these apps as versions prior to the Mac App Store. MAS versions do not require product keys, serial numbers or passcodes of any kind. Tell us about any previous versions of these apps or trial versions that you have had on this Mac.
    If these apps appear in your MAS Purchases list, then the way to solve this is to delete these apps form your Mac, all vestiges and then you should be able to download the most recent versions from your purchases list.

  • Unable to Update data in Ztable (dbase) through Table Control.

    Hi Experts.
    I am able to pull dta from Ztable into table control and also able to insert a new line and delete a row from table control. But after trying a lot I am unbale to pass the same from Table control to Ztable.
    Any ideas. Seems like here Update of Ztable needs some different treatment.
    PLZ LOOK into the code in red only. rest are for reference.
    The code on the Flow Logic Screen:
    PROCESS BEFORE OUTPUT.
      module init_100.
      LOOP At it_auftrag1 with CONTROL tctrl1 cursor tctrl1-current_line.
      ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP AT it_auftrag1.
       Module modify_it_auftrag1.
    ENDLOOP.
    MODULE fcode_100.
    MODULE USER_COMMAND_9000.
    The code on main Screen (Mod. Pool Screen ) follows:
    PROGRAM  SAPMZDEMO_MPOOL_06.
    TABLES: ZLT_Auftrag1, ZLT_Kunde.
    DATA: fcode2(4), fcode(4).    "OK_Code.
    CONTROLS : tctrl1 type TABLEVIEW USING SCREEN '9000'.
    DATA: col TYPE cxtab_column.
    DATA: demo_cprop, demo_tprop.
    DATA:  Begin Of it_Auftrag1 occurs 20,
            marked.
            include structure ZLT_auftrag1.
    DATA:  END OF it_Auftrag1.
    DATA: linno TYPE i.
    DATA: fld(20).
    DATA: off TYPE i.
    module fcode_100 input.
    endmodule.                 " fcode_100  INPUT
    module modify_it_auftrag1 input.
      modify it_Auftrag1 index tctrl1-current_line.
    endmodule.                 " modify_it_auftrag1  INPUT
    module init_100 output.
      set pf-status 'ZSTATUS01'.
      Describe Table it_auftrag1  lines  tctrl1-lines.   "TO add Scroll Bar to Table Control1
      UPDATE ZLT_Auftrag1 From it_auftrag1.
    endmodule.                 " init_100  OUTPUT
    module USER_COMMAND_9000 input.
       CASE sy-ucomm.
    *To Populate Data into Kunde through Pushbuttons
        When 'OK_GETK'.
            IF ZLT_Kunde-K1 is NOT INITIAL.
                SELECT SINGLE *
                FROM  ZLT_Kunde
                Where K1 = ZLT_KUNDE-K1.
               IF ZLT_Kunde-K1 is NOT initial.
                  Select *
                  From ZLT_Auftrag1
                  INTO Corresponding fields of TABLE it_auftrag1
                  Where A3 = ZLT_Kunde-K2.
               ENDIF.
            ELSE.
                MESSAGE S000(8i) With 'Enter Kunde Name'.
            ENDIF.
      when 'DELL'.
    * remove marked lines
           delete it_auftrag1.
          loop at it_auftrag1 where marked = 'X'.
          UPDATE ZLT_Auftrag1 From it_auftrag1.
          endloop.
          if sy-subrc <> 0.
            get cursor field fld line linno offset off.
            set cursor field fld line linno offset off.
            if fld cp 'IT_auftrag1*' and sy-subrc = 0.
              linno = linno + tctrl1-top_line - 1.
              delete it_auftrag1 index linno.
              tctrl1-lines = tctrl1-lines - 1.
            endif.
          endif.
       When 'INSL'.
    * insert line above cursor position
          get cursor field fld line linno offset off.
          set cursor field fld line linno offset off.
          if fld cp 'IT_auftrag1*' and sy-subrc = 0.
            if linno >= 1.
              linno = linno + tctrl1-top_line - 1.
              clear it_auftrag1.
              insert it_auftrag1 index linno.
              tctrl1-lines = tctrl1-lines + 1.
            else.
              clear it_auftrag1.
              append it_auftrag1.
              tctrl1-lines = tctrl1-lines + 1.
            endif.
          endif.
         When 'SAVE'.
         loop at it_auftrag1 where marked = 'X'.
    *        Modify it_Auftrag1.
            Modify ZLT_Auftrag1 From it_Auftrag1.
          Endloop.
            IF sy-subrc = 0.
             MESSAGE s000(8i) With 'Data Saved'.
           ENDIF.
       When 'BACK'.
           Leave Program.
        When 'OK_CLEAR'.
          Clear : ZLT_KUNDE, ZLT_AUFTRAG1, it_auftrag1.
    ENDCASE.
    endmodule.                 " USER_COMMAND_9000  INPUT
    Looking forward for your advice,
    Regards
    Chandan

    Hi Venkat,
    Thanks again. I will try ur suggestion too. In the meanwhile I did the following changes in the code:
    Purpose: After data is getting pulled from dbase table (ZLT_Auftrag1) into internal table it_auftrag1 then and just after I press the button delete ( i.e. When the user command starts: When 'DELL' )
    then I delete all the contents reflecting in it_auftrag1 from ZLT_Auftrag1, Now the Ztable is empty but it_auftrag1 holds all values. futher when loop starts then the Marked line gets deleted. Now at this stage the it_Auftrag1 contains all data of ZLT_auftrag1 except the line that I want to delete. If I am able to MODIFY  the ZLT_auftrag1 from it_Auftrag1 at this stage then ZLT_Auftrag1 will again be populated with all those data except the line that I want to delete.
    Here goes the code that I modified ( ref the code in my 1st post in red to compare)
       WHEN 'DELL'.
    * remove marked lines
    *      If it_Auftrag1-Marked = 'X'.
            DELETE from ZLT_Auftrag1 where A3 = ZLT_kunde-K2.
    *      ENDIF.
          IF sy-subrc = 0.
                loop at it_auftrag1 where marked = 'X'.
                 DELETE it_auftrag1.
    *             INSERT ZLT_Auftrag1 From TABLE it_auftrag1 accepting duplicate keys.
    *             UPDATE ZLt_auftrag1 from TABLE it_auftrag1.
    *             MODIFY ZLT_Auftrag1 From TABLE it_auftrag1.
                endloop.
    *            INSERT ZLT_Auftrag1 From TABLE it_auftrag1.
    *             UPDATE ZLt_auftrag1 from TABLE it_auftrag1.
    *             MODIFY ZLT_Auftrag1 From TABLE it_auftrag1.
    *        If sy-subrc = 0.
    *          MESSAGE S000(8i) With 'Data Deleted from Database'.
    *        ENDIF.
          ENDIF.
            MODIFY  ZLT_Auftrag1 from it_Auftrag1.  ==> This modification doesn't works.
             If sy-subrc = 0.
              MESSAGE S000(8i) With 'Data Deleted from Database'.
            ENDIF.
          if sy-subrc <> 0.
            get cursor field fld line linno offset off.
            set cursor field fld line linno offset off.
            if fld cp 'IT_auftrag1*' and sy-subrc = 0.
              linno = linno + tctrl1-top_line - 1.
              delete it_auftrag1 index linno.
              tctrl1-lines = tctrl1-lines - 1.
            endif.
          endif.
    Looking forward for your suggestions.
    Regards
    Chandan

  • Updating PO confirmation and ASN through Work Order Confirmation

    Hi,
    We implemented PO collaboration and Supplier is doing PO Delivery confirmation and ASN.Now we are implementing Work Order Collaboration and system  created Work Order with reference to Purchase order.
    I want to know whether PO confirmation  and ASN date gets copied from Work order dates(after doing confrimation for phase Transport).
    I want to know what setting we need to do as presently it is not getting copied to Work order. And I want to know how it updates ECC confirmation tab for Purchase Order.
    Please do the needful
    Regards
    Raghavendra Pai

    Hi Raghavendra
    The above validation check will prevent supplier confirming purchase order request lines in PO details screen, so only supplier can confirm through WO confirmations, i.e by accepting the work order request lines in delivery overview, adapt the work order
    This will make the work status as CIAG from CINE, in negotiation to in agreement
    Then you can publish the work order, this will copy the confirmed data from the work order as identical request data and confirmation data to the purchase order. this data will be picked by ROC_Out and updates the po data in backend
    Please check whether ROC_out is available in customizing
    SPRO-SNC-BASIC SETTINGS-PROCESSING INBOUND & OUTBOUND-PROCESS TYPES OUTBOUND MESSAGES
    ASSIGN OUTBOUND MESSAGES TO DEFAULT PROCESS TYPES
    REPLORDC_O ASSIGNED TO ICH SUPPLIER COLLABORATION
    Still if does not trigger, kindlly check the log slg1
    it could be problem with ODM's ,POS etc
    Best Regards
    vinod

  • I am unable to update Adobe Flash and want it activated.Thanks

    I have tried multiple times to update Adobe Flash which was deactivated by Firefox. and have been unsuccessful.Need this system to view many of my e-mails/websites.Could you activate for me?

    What is the problem you are getting when you try to update Flash? Try the download from https://get.adobe.com/flashplayer/download/?installer=FP_16_for_Firefox_-_NPAPI&standalone=1

  • Unable to Update Resource Addresses and Subinventories

    Some of our users don't have access to update access to the Resource Addresses and Subinventories form in Field Service. They get the error below as soon as they hit save:
    You do not have the security privileges necessary to update this particular record. If you require more information, please contact your local operations support group (ENTITY_NAME=Party Addresses)
    It doesn't seem to be responsibility related as some users logging in with the same responsibility are able to.
    What drives the security behind this form ?

    Sorry for responding late:
    Just check whether person is attached to that user id or not.
    -Shahid

  • Unable to update Apple apps and system

    I thought I posted this yesterday, but I may have messed up, as I can't find the posting.
    Ever since updating to Mountain Lion, Apple updates finish with "the update failed. Contact the manufacture...etc." Yet when I check the updated application, its version number reflects that it DID update. Only Apple updates cause this problem—Third party updates are OK.
    When the 10.8.5 update gave me the "failed" message (and I used the combo updater), it was a disaster and I had to use the recovery partition to completely reinstall the system (over the internet).
    Can anybody tell me what's wrong?
    Marty

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select
    /var/log ▹ install.log
    from the hierarchical list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar. Then select the messages from the last installation or update attempt, starting from the time when you initiated it. If you're not sure when that was, start over and note the time. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • Unable to update apple TV and when restore activation failed

    Apple tv informing me updates available but when i try to update, update keeps ending in unsuccessfull. Then I tried a restore and reset but activation fails. Please can anyone give advice.

    Welcome to the Apple Community.
    If your problem persists get yourself a micro USB cable (sold separately), you can restore your Apple TV from iTunes:
    Remove ALL cables from Apple TV. (if you don't you will not see Apple TV in the iTunes Source list)
    Connect the micro USB cable to the Apple TV and to your computer.
    Reconnect the power cable (only for Apple TV 3)
    Open iTunes.
    Select your Apple TV in the Devices list, and then click Restore.

  • I am unable to update i movie and i photo.

    Says the person who purchased the application needs to be logged in to the app store to update.  They came on the computer and no one purchased them separately.  How do I update them ?  I am the administrator for the computer.  I have also logged the second user on to the computer and it still says it can not update. 
    Help ??

    To do the update from the App Store you need to be logged to the App Store with your Apple ID and password. So launch the App Store and in Featured look for the Quick Links box at the right side. Click on Account.

  • TS1717 itunes is unable to update my iphone and fails to connect to the internet yet my computer is connected to the net. Can any one help?

    If anyone has experienced this issue and has a way to solve this problem I would greatle appreciate the help.

    Error 13 and 14: These errors are typically resolved by performing one or more of the steps listed below:
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting.
    Put a USB 2.0 hub between the device and the computer.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly  can cause this error.  Contact the manufacturer  of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online.
    Try to restore from another known-good computer and network

Maybe you are looking for

  • Websites icons are not shown in favorites

    When I add web pages into my favorites they are presented as a standard colored safari icon, but some pages have their original icons. What is the problem? - Couple of times reseted history and others - Deleted conf file somewhere in folders Nothing

  • Website security question

    I am only now thinking of this. . . How secure it my website to hackers? Do I need to do anything to protect it from people messing with the content? There is a Dubai-based website that keeps having serious issues with their forum - hackers get in an

  • Template type

    Is it possible to create a new Template Type for Business Partner (Sales Area Data)? If yes, than how? I have applied a new template type but I cant assign the Minitemplates to a Template Type in the IMG path: CRM -> Master Data -> Business Partner -

  • Links not working after file download

    I have a button in a form that when clicked calls a Servlet that downloads a file. After having sucessfully download the file, no link within the page or in another frame seems to work, it just ignores them. I think that could be a problem of IE, but

  • ICloud doesn't recognize my Apple id password

    I just changed my Apple id password because someone else was listed under my email. After doing that, my icloud accound doesn't recognize my apple id password.  FYI, when I went in to my account to change the password, I saw all the persons info, add