Problem in Updation of OcrCode and CogsOcrCod

Hi,
My problem is as follows,
I am creating AR Invoices using DI, in the invoices we have the Dimensions (OcrCode), we can configure 4 different dimensions and use all 4 in a single Invoice now the problem is that we cannot add more than one Dimension when we create using DI.
What should i do regarding this.??
Vasu Natari.

Hi Vasu,
I'm working with B1 2007A PL44 and PL46 and we have 6 costing codes available
        Dim oDocument As SAPbobsCOM.Documents
        Dim oDocumentoLines As SAPbobsCOM.Document_Lines = oDocument.Lines
        oDocumentoLines.CostingCode = ""
        oDocumentoLines.CostingCode2 = ""
        oDocumentoLines.CostingCode3 = ""
        oDocumentoLines.CostingCode4 = ""
        oDocumentoLines.CostingCode5 = ""
Regards,
Vítor Vieira

Similar Messages

  • HT201210 nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and somet

    nowadays have many user have problem with update to ios7 and need active with apple id maybe in the future in order escape from these problems must be stop use these products else. Because of simple user don't know about this technology and sometime just hear from other user that it 's difficult to use then force they change phone that use to handle to another.

    It is a feature to discourage the theft of iPhones by making them useless if resold. It's not going anywhere. It's simple: just don't buy a phone until you make sure that the activation lock has been disabled.

  • Problem with update Photoshop, Illustrator and Indesign CS6

    Hi all. I have problem with update Photoshop, Illustrator and Indesign CS6 on OSx 10.8.4. Application are OK but update (bug fixies) not working. Update failed. (U44M1P7)

    Hi El Gondo,
    The following might explain and help solve the problem...
    U44M1P7 - Updates :
    http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-upda tes-ccm.html
    U44M1P7, U44M2P7 - Creative Cloud Help / Can't apply Extension Manager update 6.0.2 | Mac OS :
    http://helpx.adobe.com/creative-suite/kb/unable-apply-extension-manage r-update.html
    Thanks!
    Ankit

  • Problems in updating Lumia 920 and installing apps

    Hi,
    I have had problems with the new (approx. 1 month old) Lumia 920. In the beginning (bout 2 weeks) everything worked fine. Then started synchronization problems with MS account. I was some how able to fix these problems, even they renewed. I thought that the Black update would fix the problems, but the phone did not istalled the update. It started to download the update, but after dowloading 20-50 % of the update the download crashed with some error code. I also had problems to install some apps. App was downloaded to the phone, but duringthe installation the process crashed and reported some error. After one week of trying different kinds of tricks to get the update and installation of apps working I decided to reset the phone to original setting i.e. hard reset. The reset cycle went through fine. i was able to set the MS account and synchronization was working, got e-mail and contacts to the phone. Still the update does not work and now I can not install any apps to the phone. There are over 20 updates waiting, but always the result is the same. App is downloaded to the phone, but during installation the process crashes. I have tried different connections WiFi and mobile data and done the soft reset every now and then. Is there still something I can do myself to try the fix the problem or should I just take the phone to the Nokia Care.

    Bro
    I would recommend you to check your device thoroughly by Nokia Care Technical team or get it replaced because the problems you have described, unluckily it is a defective device.
    KK

  • New Problem w/updated iPod software and Alpine Integration (4th Gen)

    I have been happily using my 4th gen iPod with my Alpine head unit and Alpine iPod adapter.
    A few weeks ago, I updated my iPod software to the latest version. Now the iPod sometimes behaves strangley. I encounter the following problems:
    1) Sometimes when I turn the car off, the iPod now won't automatically go into pause and then turn off. It will just keep running with the car off and ultimately wear down the battery.
    2) Sometimes the iPod does go into pause mode and turn off when I turn the car off, but then it won't wake from its slumber. The only way to get it working again is to perform a reset.
    These problems seem most persistent when listening to Podcasts. Although I have not yet narrowed it down to exactly that. Also, I do not get problem #2 when the iPod is NOT connected to the Alpine unit.
    Any help of info would be appreciated. I am not sure it's the new iPod software, but that's the only thing that has changed and it's been working perfectly up until now.
    PS: I have done the 5 R's.

    Anyone?

  • Problem in updating bseg-zuonr and bseg-sgtxt fields.

    Hi guys,
    I have a requirement to update    ZUONR  and  SGTXT   fields in  BSEG , BSAS, BSIS, BSAK, BSIK, BSAD, and BSID tables .  Is there any FM or BAPI to achieve this functionality as i dont want to use UPDATE statement. anybody please help me out.
    Thanks in Advance
    Regards
    satish

    Perform some search at scn on transactions FB02 and FB09 (BDC solution) or FM FI_ITEMS_MASS_CHANGE (BDC generator actually)
    Regards,
    Raymond

  • Problem while updating Tel no and Fax no using BAPI_BUPA_ADDRESS_CHANGE

    Hi,
    Im trying to update the Telephone number and Fax number using a BAPI but unable to update in Tcode BP .can you please tell teh solution.my code is below.
    data : i_tel like BAPIADTEL occurs 0 with header line,
           i_fax like BAPIADFAX occurs 0 with header line,
           i_telx like BAPIADTELX occurs 0 with header line,
           i_faxx like BAPIADFAXX occurs 0 with header line.
    i_tel-telephone = '800-266-3377'.
    append i_tel.
    i_fax-fax = '505-796-9601'.
    append i_fax.
    i_telx-telephone = 'X'.
    append i_telx.
    i_faxx-fax = 'X'.
    append i_faxx.
    To add Telephone number and FAX number
    CALL FUNCTION 'BAPI_BUPA_ADDRESS_CHANGE'
      EXPORTING
        businesspartner              = '0007000006'
    TABLES
       BAPIADTEL                    = i_tel[]
       BAPIADFAX                    = i_fax[]
       BAPIADTEL_X                  = i_telx[]
       BAPIADFAX_X                  = i_faxx[].
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
    if sy-subrc =0.
    write:/5 'Successfully updated'.
    endif.
    Regards,
    Deepthi.

    DATA : i_tel LIKE bapiadtel OCCURS 0 WITH HEADER LINE,
             i_fax LIKE bapiadfax OCCURS 0 WITH HEADER LINE,
             i_telx LIKE bapiadtelx OCCURS 0 WITH HEADER LINE,
             i_faxx LIKE bapiadfaxx OCCURS 0 WITH HEADER LINE,
             i_return LIKE bapiret2 OCCURS 0 with header line.
      i_tel-telephone = '800-266-3356'.
      APPEND i_tel.
      i_fax-fax = '505-796-9656'.
      APPEND i_fax.
      i_telx-telephone = 'X'.
      i_telx-updateflag = 'I'.
      APPEND i_telx.
      i_faxx-fax = 'X'.
      i_faxx-updateflag = 'I'.
      APPEND i_faxx.
    To add Telephone number and FAX number
      CALL FUNCTION 'BAPI_BUPA_ADDRESS_CHANGE'
        EXPORTING
          businesspartner = '0007000006'
        TABLES
          bapiadtel       = i_tel[]
          bapiadfax       = i_fax[]
          bapiadtel_x     = i_telx[]
          bapiadfax_x     = i_faxx[]
          return          = i_return.
      CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
        EXPORTING
          wait = 'X'.
      IF sy-subrc = 0.
        WRITE:/5 'Successfully updated'.
      ENDIF.
    data:v_msg(255) type c.
    loop at i_return.
    CALL FUNCTION 'FORMAT_MESSAGE'
      EXPORTING
        ID              = i_return-id
        LANG            = 'EN'
        NO              = i_return-number
        V1              = i_return-message
      IMPORTING
        MSG             = v_msg
      EXCEPTIONS
        NOT_FOUND       = 1
        OTHERS          = 2 .
    write:/5 v_msg.
    endloop.

  • Is there a poor network connectivity after updating to 6.1.3 ? I have updated to it and seem to have to this problem

    Hi guys,
    I recently updated to 6.1.3 and seem to have to have network connectivity issue. The network bar stands at 2 to 3 where as the same connection on another phone stands well at full 5 bars (at the same location).
    And also App store takes ages to load.
    Any remedy for this ??
    P.S: I have done the basics like rebooting, cleaning history and cookies of Safari, exiting all backgroud processes, turning off location service and minimal push-notifications. But doesn't seem to take me anywhere . Kindly Suggest !!
    Thanks ! Cheers !

    I've had the same problem. Updated last night and haven't been able to use the phone at all since then. Black screen, grey screen, light blue screen, pixelated screen, white screen with darkened corners, flickering screen, white stripe across screen, no connectivity to anyone's computer incl bluetooth. Recurrent dead battery. Occasional apple on screen.
    Dead.
    Have you had any joy with yours? Or should I just bin it?

  • Connection problems after updating to iOS 5

    Hello everyone,
    I updated my iPhone 4 (bought it in June '10) to iOS5 a week ago like everyone else. Ever since then, I've been experiencing problems with pretty much anything that requires a data connection. It won't send messages, log in to Facebook or other communities or find any websites. I have to switch the phone off and back on and then it'll work for a while. Usually, the problem starts after I haven't the phone for 15 minutes or more. It just happened and when I checked the connections, I had full connection (five bars + 3G) to my phone provider and full connection to my wifi as well. Still, iMessage said my messages couldn't be sent, it didn't download new emails and Whatsapp Messenger wouldn't even connect. So far, I haven't experienced any problems with the phone connection, can make calls and haven't been told I couldn't be reached, so I think it's safe to assume the phone connection isn't part of the problem.
    There weren't any problems while updating the phone and I haven't dropped it or anything since then. The only thing I noticed was that when setting it to auto-sync via iCloud, it slowed down my internet, so I switched that feature back off. Do you think this has caused the problem? Any suggestions to what I should do?

    How long does the "waiting" message stay there? Does it eventually go away and the app loads or does it stay that way permanently?
    The app store is temporarily being overwhelmed by purchasers of the new iPad trying to get apps onto their devices. This might be a reason for a long wait. But eventually you should be able to get the app if the extra use is causing the problem.
    Did you try a reboot of your iPad? Press and hold the Home and Sleep buttons simultaneously ignoring the red slider until the Apple logo appears. Let go of the buttons and let the iPad restart. See if that fixes your problem.
    You might also have something else waiting to download that is causing the problem. Something like a podcast. Check all apps that download regularly to see if this is the case and delete those or terminate their download.
    Have you deleted those apps that are waiting? Do that and then retry them on at a time.
    Hope this helps.

  • How come whenever i plug my iPhone 5 into the computer the device will not show up on my itunes.  This is the first time that i have done it since i updated to iOS7 and before i had no problem but now it just wont work.

    How come whenever i plug my iPhone 5 into the computer the device will not show up on my itunes.  This is the first time that i have done it since i updated to iOS7 and before i had no problem but now it just wont work.

    Hi Celia51510,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    I can't tell from your post if you are using a Windows or a Mac Computer.
    Try deleting the iTunes application and redownloading the version you need below:
    iTunes 11.1 Download for Mac
    http://support.apple.com/kb/DL1614
    iTunes 11.1 for Windows (64-bit)
    http://support.apple.com/kb/DL1615
    Cheers,
    - Judy

  • I tried downloading a free app and it asked for my billing information and when i entered it, it says that there was a billing problem with a previoud purchase and i have to update it. I keep updating it and it wont let me verify it and i cant get apps

    I tried downloading a free app and it asked for my billing information and when I entered it, it said that there was a billing problem with a previous purchase and I have to update it. I keep updating it and it wont let me verify it and I cant get any apps even if they are free, and I just Deleted some apps to make room for my new upate!

    The message says: "The payment method has been denied, try another method"
    I'm living in the same country and city since I was born, so I don't think the location is the problem.
    And yes, I paid with the card a meal in Burguer King today. And nothing more.

  • I just recently purchased 3 songs from itunes not knowing that I had no money on my debit card (visa) left. My iphone wont let me update my apps and says that there was a billing problem with my last purchase. I dont know what I am supposed to do!

    I just recently purchased 3 songs from itunes not knowing that I had no money on my debit card (visa) left. My iphone wont let me update my apps and says that there was a billing problem with my last purchase. I dont know what I am supposed to do! I dont understand why it worked in the first place when it wasn't supposed to!

    There seems to be a billing problem with the iTS.  I've been trying to make purchases today (Dec 9th) too and it reports either the iTS can not process payments or it says my card was declined. I even changed the payment method to Paypal (which is never declined) and still no go.
    I don't think it is "you" but a problem at Apple.  Some popular new apps were released recently like Logic Pro and perhaps they're getting bombarded as they did when Lion was released.
    Wait a few hours and then try again.

  • HT201210 i tray to update my iphone but refused to update iOS 6.and give me note there is problem in dawn loud . please tell me what can i do?dawn loud

    i tray to update my iphone but refused to update iOS 6.and give me note there is problem in dawn loud . please tell me what can i do?dawn loud

    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. 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).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or photos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • I just updated my mac and when i went to open iphoto it says it "can not open because of a problem" how do i fix this?

    i just updated my mac and when i went to open iphoto it says it "can not open because of a problem" how do i fix this?

    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    2c: on 10.7 they're at
    /private/var/db/receipts
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.

  • Sync problem - earlier today I updated both iTunes and my iPod Touch. Since then, I have tried syncing the two. The iPod Touch claims that there is no music on the iPod, however, when I connect it to my computer it says my full library is on there.

    Sync problem - earlier today I updated both iTunes and my iPod Touch. Since then, I have tried syncing the two. The iPod Touch claims that there is no music on the iPod, however, when I connect it to my computer it says my full library is on there. At present, I am unable to listen to songs on the iPod when not connected to the computer. What can I do to fix this?
    Thanks for any help!

    - Have you reset your iPod:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Next would be to backup your iPod and then restore you iPod from backup via iTunes.

Maybe you are looking for

  • BI 7.0 - Error while loading data from R3 to PSA

    Hi, I transported Master Data ATTR/TEXT object from DEV to QA (BI 7.0 NW 2004s); and getting the following error while loading the data from R3 in to PSA using the InfoPackage. Any clue to resolve this issue is appreciated. Monitor - STATUS tab: Erro

  • Gcc problems on Solaris 10 X86

    I'm using Solaris 10 x86 and gcc from /usr/sfw/bin and have come across a couple of problems: which gcc /usr/sfw/bin/gcc gcc -v Reading specs from /usr/sfw/lib/gcc/i386-pc-solaris2.10/3.4.3/specs Configured with: /builds/sfw10-gate/usr/src/cmd/gcc/gc

  • Code Signing certificate expired

    Hello, I please need an information about SGDEE 4.1 login applet: it seems applet code signing certificate was expired on September 2, 2005. I have no problem (after I deleted all expired root certificates from local client repository) with Internet

  • I bought new apple tv but it only shows Computers and Settings. how can I bring up other options, specially Youtube?

    I bought new apple tv but it only shows Computers and Settings. how can I bring up other options, specially Youtube?

  • Albums aren't playing

    I am unable to get an album to play all the way through. Either only the first song on the album plays and then it goes into random playing, or it will stop playing after the first song clicked. I do not have shuffle mode on and this used to be OK, b