Problem with  BAPI_GOODSMVT_CREATE  FM - intersting Issue

HI all,
I need to do the GR for an open inbound delivery. At the item level of precessing document i.e PO 'No goods receipt' check is marked. Same thing is copied to my inbound delivery 'No goods Movement' is marked in Adminstrative tab of my inbound delivery item.
When I use the BAPI BAPI_GOODSMVT_CREATE to do GR for this Inbound delivery, it throws an error saying that 'No goods receipt possible for the PO item'.
But when I do the same thing manually it happened successfully by creating a "service confirmation document" and changed the goods movement status as C (fully completed) without creating an material document as these items are no relevant items for goods movement.
As we are moving goods directly from Vendor to customer, just we want to do service confirmation to vendor without any goods movement. It happening manually but not through BAPI. Please suggest.
Helpful anwers are certainly rewared
Thanks,
Raggs.

Hi,
Incase a goods movement document is not getting created then it will not be possible to use the BAPI BAPI_GOODSMVT_CREATE.
Although your process is interesting but its a widely used process.
I think there should be a service order in this scenario against which the confirmation may be happening.
Check any BAPI is available for creating the service order document and then confirming teh same
Check with your functional consultant to explain you the entire cycle and then check for some BAPI or FM available.
Regards,
Ankur Parab

Similar Messages

  • Is anyone else having a problem with a "no service" issue on the iPhone 5?

    There are times my phone will go to "No Service" when the signal is low. I just got the iPhone 5. I did not have this problem with my 4. It doesn't say "searching..." it just automatically says "No Service" for a few seconds and then back to having bars. It comes and goes. I had my phone replaced at the Genius Bar and still have this problem. Is anyone else also having this problem? I hope it's just a software issue they will solve with an iOS update.

    I have this problem all the time. when i get back home from a overseas trip (about 3-4 times a month) I have to turn airplane mode of and on a few times to get rid of the "No Service" message.

  • Problem with BAPI_GOODSMVT_CREATE not updating Reservation

    Hi,
    When i do a manual MB1A 'Goods issue' with reference to Work Order it is posting the goods issue and updating the RESB ,but when i do the same through the bapi code 03 Table i was not able to post the goods issue at all. am i missing a input field in the bapi .Plz help me out.
    My code.
    gf_goodsmvt_code-gm_code       = '03'. "GI
      gf_goodsmvt_header-pstng_date  = sy-datum.
      gf_goodsmvt_header-doc_date    = sy-datum.
      LOOP AT it_details INTO gf_details .
        MOVE :gf_details-matnr TO gf_goods-material,
              gf_details-werks TO gf_goods-plant,
              rm07m-lgort      TO gf_goods-stge_loc,
              gf_details-charg TO gf_goods-batch,
              rm07m-bwart      TO gf_goods-move_type.
          MOVE gf_details-issue_qty TO gf_goods-entry_qnt .
          MOVE gf_details-meins TO gf_goods-entry_uom.
       gf_goods-mvt_ind = 'F'.
        gf_goods-reserv_no = gf_details-rsnum.
        gf_goods-res_item = gf_details-posnr.
        gf_goods-res_type = gf_details-rsart.
        gf_goods-withdrawn = 'X'.
       gf_goods-orderid = rm07m-aufnr.
       gf_goods-order_itno = 1.
        APPEND gf_goods TO it_goodsmvt_item.
        CLEAR gf_goods.
      ENDLOOP.
      IF NOT it_goodsmvt_item[] IS INITIAL.
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
          EXPORTING
            goodsmvt_header             = gf_goodsmvt_header
            goodsmvt_code               = gf_goodsmvt_code
      TESTRUN                     = ' '
         IMPORTING
      GOODSMVT_HEADRET            =
           materialdocument            = g_mat_doc
      MATDOCUMENTYEAR             =
          TABLES
            goodsmvt_item               = it_goodsmvt_item
      GOODSMVT_SERIALNUMBER       = 'X'
            return                      = it_return.

    check below Threads :
    Issue related to EXIT statement
    and see the sample program :
    Structures for BAPI
    data: gdsmt_header   like bapi2017_gm_head_01.
    data: gdsmt_code like bapi2017_gm_code.
    data: gdsmt_headret like bapi2017_gm_head_ret.
    data: gdsmt_item like bapi2017_gm_item_create occurs 1 with header line.
    data: return like bapiret2 occurs 0.
    data: retmatdoc like bapi2017_gm_head_ret-mat_doc.
    Setup BAPI header data.
      gdsmt_header-pstng_date = sy-datum.
      gdsmt_header-doc_date = sy-datum.
      gdsmt_code-gm_code = '06'.                                " MB11
    Write 262 movement to table.
      clear gdsmt_item.
      move '262'         to gdsmt_item-move_type.
      move i_resb-matnr  to gdsmt_item-material.
      move p_bdmng      to gdsmt_item-entry_qnt.
      move i_resb-meins to gdsmt_item-entry_uom.
      move i_resb-werks to gdsmt_item-plant.
      move i_resb-lgort to gdsmt_item-stge_loc.
      move i_afko-aufnr to gdsmt_item-orderid.
      append gdsmt_item.
    Determine cost center
        move '0000041430' to gdsmt_item-costcenter.
      append gdsmt_item.
    Call goods movement BAPI
      call function 'BAPI_GOODSMVT_CREATE'
           exporting
                goodsmvt_header  = gdsmt_header
                goodsmvt_code    = gdsmt_code
           importing
                goodsmvt_headret = gdsmt_headret
                materialdocument = retmatdoc
           tables
                goodsmvt_item    = gdsmt_item
                return           = return.
    Reward Points if it is helpful
    Thanks
    Seshu

  • Problem with BAPI_GOODSMVT_CREATE and MAA

    Hi experts,
       I'm trying to GR a PO with MAA (Multiple Account Assingment) by using BAPI_GOODSMVT_CREATE.
       My problem is that, as is a return delivery,  BAPI is checking wether the reference doc, position and year have been populated for the MAA related positions.
       This is done in method CL_MMIM_MAA_2 --> MAA_ITEM_DUPLICATOR_BAPI. As ain't populating those fields, BAPI returns error message M7 465 and not EM document is created.
       But, when doing the same by using MIGO transaction, document is created as there is not validation for reference document, because MIGO is using method CL_MMIM_MAA_2 --> MAA_ITEM_DUPLICATOR_MIGO.
       I've ssearched fot SAP NOTES (1654305) and SCN posts, with no results.
      Can someone explain how to do a return delivery with MAA by using BAPI_GOODSMVT_CREATE?. Is there any way to avoid the validation when using the BAPI?.
    Thank you so much in advance.
    Regards,
    Carlos.

    Hi,
       I think the reason and the solution for the error M7 465 is well explained in the note:  1654305 - MAA2 error M7 599 during return delivery GR with BAPI
       If the note is applicable for you and still the problem is not solved with the note, you may cross check the changes mentioned in the note and you may raise an OSS ticket to SAP.
    Regards,
    AKPT

  • Problem with bapi_goodsmvt_create

    hi all,
    iam using bapi_goodsmvt_create to do a goods recipt for a PO. while running the error message iam getting is
    "No goods receipt possible for PO 2200000065 010". But i can do it manually the recipt using MIGO for that PO & if i delete that Goods Recipt manually and if i run the program again, the program is picking that PO and its recipting properly as expected.
    the requirement is it should do it for the first time itself, rather than receipting manually & deleting that receipt & running the program again
    Help me in this issue,
    Cheers,
    Prem.

    here is the program...
    The following is an abap program making used of the BAPI function BAPI_GOODSMVT_CREATE to do Goods Receipts for Purchase Order after importing the data from an external system.
    BAPI TO Upload Inventory Data
    GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
                         02 - MB31 - Goods Receipts for Prod Order
                         03 - MB1A - Goods Issue
                         04 - MB1B - Transfer Posting
                         05 - MB1C - Enter Other Goods Receipt
                         06 - MB11
    Domain: KZBEW - Movement Indicator
         Goods movement w/o reference
    B - Goods movement for purchase order
    F - Goods movement for production order
    L - Goods movement for delivery note
    K - Goods movement for kanban requirement (WM - internal only)
    O - Subsequent adjustment of "material-provided" consumption
    W - Subsequent adjustment of proportion/product unit material
    report zbapi_goodsmovement.
    parameters: p-file like rlgrap-filename default
                                     'c:\sapdata\TEST.txt'.
    parameters: e-file like rlgrap-filename default
                                     'c:\sapdata\gdsmvterror.txt'.
    parameters: xpost like sy-datum default sy-datum.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          errflag.
    data: begin of pcitab occurs 100,
            ext_doc(10),           "External Document Number
            mvt_type(3),           "Movement Type
            doc_date(8),           "Document Date
            post_date(8),          "Posting Date
            plant(4),              "Plant
            material(18),          "Material Number
            qty(13),               "Quantity
            recv_loc(4),           "Receiving Location
            issue_loc(4),          "Issuing Location
            pur_doc(10),           "Purchase Document No
            po_item(3),            "Purchase Document Item No
            del_no(10),            "Delivery Purchase Order Number
            del_item(3),           "Delivery Item
            prod_doc(10),          "Production Document No
            scrap_reason(10),      "Scrap Reason
            upd_sta(1),            "Update Status
          end of pcitab.
    call function 'WS_UPLOAD'
      exporting
        filename                      = p-file
        filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
      tables
        data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      exit.
    endif.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    loop at pcitab.
      itab-move_type  = pcitab-mvt_type.
      itab-mvt_ind    = 'B'.
      itab-plant      = pcitab-plant.
      itab-material   = pcitab-material.
      itab-entry_qnt  = pcitab-qty.
      itab-move_stloc = pcitab-recv_loc.
      itab-stge_loc   = pcitab-issue_loc.
      itab-po_number  = pcitab-pur_doc.
      itab-po_item    = pcitab-po_item.
      concatenate pcitab-del_no pcitab-del_item into itab-item_text.
      itab-move_reas  = pcitab-scrap_reason.
      append itab.
    endloop.
    loop at itab.
      write:/ itab-material, itab-plant, itab-stge_loc,
              itab-move_type, itab-entry_qnt, itab-entry_uom,
              itab-entry_uom_iso, itab-po_number, itab-po_item,
                                                  pcitab-ext_doc.
    endloop.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
      TESTRUN                     = ' '
    IMPORTING
        goodsmvt_headret            = mthead
      MATERIALDOCUMENT            =
      MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
      GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    clear errflag.
    loop at errmsg.
      if errmsg-type eq 'E'.
        write:/'Error in function', errmsg-message.
        errflag = 'X'.
      else.
        write:/ errmsg-message.
      endif.
    endloop.
    if errflag is initial.
      commit work and wait.
      if sy-subrc ne 0.
        write:/ 'Error in updating'.
        exit.
      else.
        write:/ mthead-mat_doc, mthead-doc_year.
        perform upd_sta.
      endif.
    endif.
          FORM UPD_STA                                                  *
    form upd_sta.
      loop at pcitab.
        pcitab-upd_sta = 'X'.
        modify pcitab.
      endloop.
      call function 'WS_DOWNLOAD'
        exporting
          filename                      = p-file
          filetype                      = 'DAT'
    IMPORTING
      FILELENGTH                    =
        tables
          data_tab                      = pcitab
    EXCEPTIONS
      FILE_OPEN_ERROR               = 1
      FILE_READ_ERROR               = 2
      NO_BATCH                      = 3
      GUI_REFUSE_FILETRANSFER       = 4
      INVALID_TYPE                  = 5
      OTHERS                        = 6
    endform.
    *--- End of Program
    points please...

  • 2 problems with EA6300 both speed issue's

    I got my EA6300 for a while now, overall for what it is used its doing ok.
    Though recently i had to add a tv box to my network.
    Connecting it to the router would not work, since it did not get a IP.
    So i was forced to put a switch before the router.
    So the network cable with the internet signal on it is first connected to the switch to which the tv box is also connected.
    Then a cable supplying internet goes to the router, and another cable which is connected to my desktop pc.
    Both router and switch are all gigabit ports, so that is one thing to rule out.
    The PC is connected to the switch because if i connect it to the router then speed seems to be capped at 100mbit, while it should be capped at 1000mbit with the gigabit ports.
    The PC network is gigabit also, and with a 100mbit cap i cap my internet also since it is faster then that.
    So that is why i had to connect the PC to the switch.
    Could adding a 4 port gigabit switch make the router cap the amount of speed it lets through?
    Because this seems to have started when i added the switch, before that everything was fine.
    Then problem 2.
    To the router i got a external 2TB hard disk connected.
    For whatever reason i cannot get any faster transfer rate then 2mb/s when moving files from desktop to the HD.
    Most times it is just barely getting 1mb.
    This is over the regular windows network, maybe that is the main issue?
    Any help would be much appreciated.

    Sevy wrote:
    I managed to fix the speed issue from the router to the PC.
    Though still unsure why wired the transfer rate is so slow.
    From the drive to the desktop i get about 18mb/s which isn't to bad.
    But from the PC to the drive its now getting just below 10mb/s.
    Check if the slow wired transfer speed happens on all wired devices in the network. Upgrade the firmware of the router as well. 

  • Problem with Web Gallery (firewall issue??)

    I have the following problem:
    When I upload a webgallery from my office, everything works fine.
    When I try the same thing from home, it doesn't work. I get a can't connect to .mac error.
    What I also found out:
    Looking at my .mac preferences from the system preferences panel works at home and at the office.
    Looking at the web gallery tab under preferences in iphoto works ONLY at the office. At home I get a time out eventually.
    Anyone have an idea? I do have a rather transparent network on both places.
    Thanks!
    Martin

    ma_nj:
    Welcome to the Apple Discussions. Try deleting the iPhoto preference file, com.apple.iPhoto.plist, from your User/Library/Preferences folder on you home computer. Then try again.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 08 libraries. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Problem with BAPI_GOODSMVT_CREATE to transfer stock

    Hi all,
    i met a problem when i use BAPI_GOODSMVT_CREATE to transfer stock from one stock to another stock (one step).
    parameters:
    Goodsmvt_code = '04'  " MB1B
    Material,Plant,Stge_loc,Batch,Move_type,move_plant,Move_stloc,Move_batch
    Matdoc_item,Serialno
    then execute the bapi. i get the successful result.
    but when i check the stock, nothing happened.
    i also check the table SER03. the material documents didn't generate.
    i use MB1B to do it directly. the material is transfered and the material documents also generated.
    can anyone tell me what's wrong and what should i do? thank you very much.

    Dear Dave,
    Actually the Bapi that you user is a Test Function , so it will not posted,just do simulation, you need to copy the FM to program then commit it, then it will post the document.
    Regards,
    w1n

  • Line input problem with Logic X, No issues Logic Pro

    I use the line input on my 2011 Imac to record audio from my piano keyboard. When using LOGIC X there is no sound coming through the speakers, but with Logic Pro 9 I have no issues. I tested with new projects, ect but was unable to get to work.
    In both Logic Pro and Logic X I have made an audio track and made sure input monitoring is on. I made sure volume was sufficient. I have tried to fix this to no avail and was thinking about bringing to apple store, but this appreasrs to be some sort of logic x bug (or I am missing something). Any help is appreciated as this is very frustrating.
    Brian

    I think you're missing something.
    http://help.apple.com/logicpro/mac/10/#lgcpbb81aca5
    You have to configure each program top to bottom, go to the above link and make sure all your settings are correct. (the won't necessarily match the pic)
    Look at your Logic 9 settings  Preferences/Audio  and then set up Logic X the same way.

  • Problem with PGI (Post Goods Issue).......?

    hi Experts,
    i have taken 5 materials in my sales order, and do PGI via VL01n for 3 materials.
    after that we got some error in my Delivery Documents, so i reverse my Delivery document by using Tcode VA09,
    after reversing, we have an option to change the Quantity of material or reduce the number of material,
    but the problem is that, now i want to include the remaining 2 materials in my same delivery document.
    can i do this, if YES then how?
    thanks and regards,
    Vishal Singh

    Dear,
    In VL02 on the top click on DELIVERY DOCUMENT -- DELIVER SALES ORDER -- PUT ORDER NO. and also give selection for
    Line ITEM in pop screen.
    Regards
    AJIT K SINGH
    HAPPY TO HELP U
    Edited by: AJIT K SINGH on Dec 22, 2009 5:46 PM

  • Problem with printing report document issue

    hi i want to implement "Print all" button functionality in my simple school management software where the
    report printing of whole students of same class can be done with a single "print all" button function.
    how can i implement this? i am lacking logic and skill here. please help.
    thanks

    its the simple student management system where the teacher will input the marks of the students in particular subjects and store it in the database. now i have to print that on the report card. printing report as per student might be troublesome so i want to implement the " print all" button where the report card of all the students in that class will be printed in the report cards. its: printer printing the report of a student in the paper (A4 size) and then printer takes another paper sheet and then print the report of another student of same class until finish. how to accomplish this task?

  • Problem with K7N2 delta :booting issues

    my k7n2 wont boot after being unplugged from power unless i reset the FSB jumpers to 100mhz mode.  Also, it wont boot when I try to set the ram-FSB ratio different. It will not boot and I have to clear the CMOS to get it to work again.  Please help

    Quote
    Originally posted by bdjohnson
    my k7n2 wont boot after being unplugged from power unless i reset the FSB jumpers to 100mhz mode.  Also, it wont boot when I try to set the ram-FSB ratio different. It will not boot and I have to clear the CMOS to get it to work again.  Please help
    How about some info regarding what you are using in the system? We don't have the ability to peer into your office/home to see what's in your system...
    If you read the sticky posts at the top of the forum first you may find that you might answer your question first...alternatively do a search regarding your problem and you may find posts that will help you to find answers as well...
    Bonz

  • BAPI_GOODSMVT_CREATE Problem with movement 161

    Hi Gurus,
    I have a problem with BAPI_GOODSMVT_CREATE and movement type 161. We used to put 161 as the movement type when referencing a PO with "Returns Item" marked. Movement was properly posted. But now I am facing the following issue, when trying to post 161 I have the message "No goods receipt possible for purchase order 4200000084 ...", If I use movement type 101 system will assume 161 and everything is OK, but I don't understand why I could use 161 before and now I can´t, this is happening with all my POs with "Returns Item" marked.
    I understand that I can just use 101, the problem is that this will require a change in a non-SAP system... that is why we prefer still using 161.
    Any help will be highly appreciatted.
    Thanks!

    Hi,
    Check this link;
    Re: BAPI_GOODSMVT_CREATE for movement type 161
    Regards

  • Wifi problem with Mac after upgrade to Mavericks

    I just upgraded to Mavericks but something wrong with my wifi.
    i can get internet through LAN link from Airport but not through wifi even i can receive an IP address
    i tried connect to hotspot with my iphone5s and it works.
    Other devices can use wifi just fine through Airport, just not my Mac using Mavericks
    In conclusion,
    Airport should be fine because my other devices works.
    Mac wifi should be fine too because i can connect using hotspot.
    so why it's not working when i connect Mac to Airport?

    I was having problems connecting to Wifi with my Macbook Pro (!2010), after upgrading to Mavericks. I was on the phone repeateadly with AT&T because I have Uverse. Testing everything (channels, signal strength) and had techs come out to check the line, ports, switches, etc. When I hardwired the Mac into the Uverse router, it worked fine. This rulled out any problems with the line in.
    I considered getting a repeater but then I read that repeaters are not really good and it is better to reconfigure a router to act as an access point on the network. Plunked down about $80 for a Belkin AC750 router at Best Buy. In the setup it has an option to set it up as an access point only. Clicked that, connected it to my Motorola NVG510 Uverse modem and then connected to the Belkin router from my Mac. Voila!  It's been a solid 11+ Mbs ever since (my plan maxes at 12Mbs). Connection is still solid and life if good even though it ***** to plunk down another $80 for a second router. But it was worth it just to get rid of the headaches.
    I think the wifi capabilities of the Motorola NVG510 modem are the cause of a lot of problems with AT&T Uverse issues, particularly for Mac owners. I think it was also causing my Airport Expresses to drop occasionally.... Few minutes of music then drop... music drop.... All gone now.
    I don't know if you are on Uverse but if so, I highly recommend configuring a second router as an acces point (it can be any old router you still might have - the setup is just a bit trickier because you have to do it manually).
    Good luck.

  • Apple keyboard and mouse connection problems with windows 7

    Hello everyone,
    I just completed the installation of windows 7 home premium on my bootcamp partition, and even though in the beginning my keyboard worked properly after installing some windows updates it stopped working.
    So, i tried to reinstall the specific bootcamp drivers(as described in installation guide), I also tried repair drivers but the problem continues!
    Has anyone experienced something like this ? Could you advise me something?
    Thank you!

    Hi lolarennt,
    Have just done the same as you on the same system.  It took over 12 hours of mucking around. Had lots of problems with the black screen issue, mouse not working, failing to load error message 0x80070071 ( all this from memory... saw it a few times LOL).  The bottom line was I started up in Mac version and using disk utility repaired permissions and then started a fresh and sixth install.  To cut a long story short,  this fixed my installing issues. My mouse didn't work initially, an issue with  "DPInst.exe" something to do with the 64 bit install.  I then updated the win7 programme using the update windows function and things now work fine.  Granted the mouse does take a short while to work after starting Win7(10seconds or so) but no further problems...yet!  BTW I had to update something like 79 installs totalling over 250mb and if you go down this path don't interrupt the updating process, because you'll have to restore and redo the updates ( I did thinking the system had shutdown).  I only updated win7 not any other MS programme.  Enjoy

Maybe you are looking for

  • I cannot find corrupt iPhone backup file on my computer to delete it.

    I have an iPhone 5s. It backed up to my computer (Mac) just fine until I got a new computer. I loaded all my backed up files onto the new computer (also a mac), from my airport extreme computer backup (also a mac product) and the next time I went to

  • IDOC-XI-XML Scenario Questions

    Hi everyone, I am actually trying to configure a scenario starting from SAP and finishing creating a XML file. R/3 IDOC -> XI -> XML file The XI is receiving IDOCs from SAP correctly, but when it try to send to third party system, the monitor engine

  • Want to upgrade to CS6, but issue with AVCHD scrubbing might stop me

    I've been using the Adobe Creative Suite for years and really love it. The last version I stuck to was CS5. Premiere Pro CS5 had no problems scrubbing my AVCHD footage (mts wrapper from GH2 cameras) and I wanted to upgrade to CS5.5 when this became a

  • Pictures In Oracle Database

    Hi, I want to store images into oracle database but i dont know how. I have a form from developer and a database. Please help. Grace

  • Error while POF serialization

    Hi i am getting the following error while doing the POF serialization. please help java.lang.StackOverflowError at com.tangosol.io.pof.PofBufferWriter$UserTypeWriter.isEvolvable(PofBufferWriter.java:2753) at com.tangosol.io.pof.PofBufferWriter$UserTy