PassivateStateForUndo stores temporary DBSequence after db error ?

I'm noticing something strange with our DBSequence attributes, perhaps you could help us out here.
Whenever we try to create a new Entity instance a temporary negative value is generated for the DBSequence attributes (which is correct). Then, when we Commit the outstanding changes. Before posting our changes to the database, we use "passivateStateForUndo" to create a savepoint for the ApplicationModule.
Next, a "before insert row" trigger is waiting in the database to create a new value using a sequence. But, we have a number of business rules implemented using PL/SQL and when one of them raises a ORA-exception we call "activateStateForUndo" to revert to the previous state.
When we modify our data, so our business rules are all validated ok, and commit the changes ... the Entity is succesfully stored in the database using the "temporary negative number". When we query the db we see, for example, ID = -16. This tells us that the temporary value is actually passed to the database.
This is the code in the trigger we use to generate a new value :
      IF (br$row.ID IS NULL)
      THEN
         SELECT rbs_klm_seq.NEXTVAL
           INTO br$row.ID
           FROM DUAL;
      END IF;The described behaviour is not displayed when, for example, a mandatory attribute is left empty. This is caught on the middle tier before any changes get posted to the database.
Could it be that the passivateStateForUndo is passivating just a little too much ? Should the temporary negative value for DBSequence attributes really be posted to the database in the postChanges(TransactionEvent) ?
In other words, am I missing something ? Or is this overeagerly behaviour of the passiveStateForUndo / activateStateForUndo method ?
We're using :
==========
- Jdeveloper 10g 10.1.2.1.0 (build 1913)
- Jheadstart 10g 10.1.2.1 (build 27) --> But, my guess is that Jhs has nothing to do with this issue.
Regards,
Pascal Prins

As you can see in your plsql statement you test for null values only.
In my opinion you should add a test if sequence is negatif to your condition.
We use sequences:
1) Sequence fetched in ADF create method
2) Sequence fetched in DB pre-insert trigger
When 2) is implemented we check the flag requery on insert in the entity and the condition is:
field is null or field < 0 => select sequence
Hope this helps.
Regards
Fred

Similar Messages

  • HT201611 After -42110 error -- we could not complete your iTunes Store request -- no time to view

    While downloading a rental movie I got the following error:
         -42110:  We could not complete your iTunes Store request.
    After a number of attempts over 12 hours, I finally succeeded.
    However, now I must watch this rental within 10 hours.
    I don't have the 30-day window to view it.
    What gives?  How can I extend my watch period?

    Hi werpg,
    I see that you have experienced an issue with one of your purchases. I would like to suggest that you report this issue using the information in the link below:
    Report a problem with an item purchased from the iTunes Store, App Store, Mac App Store, or iBooks Store - Apple Support
    https://support.apple.com/en-us/HT204084
    Thanks for using the Apple Support Communities!
    Cheers,
    Braden

  • After Effects error: opening movie - you do not have permission to open this file (-54)

    Hi all,
    I'm new to after effects. I have just started receiving the following error every time I try to render my movie:
    "After Effects error: opening movie - you do not have permission to open this file (-54)".
    Yesterday morning, I was able to render movies, however, after I did Apple's latest update I've started receiving the following error. What is happening is that I'm trying to render a movie. It gets to a certain point in the movie (about 0;00;16;09) and then this error pops up. This morning I've tried to repair the permissions with disk utility, but that doesn't seem to have helped.
    I've searched Google and the Adobe support forums with no luck. Please help.
    Thanks in advance for you help,
    William

    Have been able to downgrade to QT 7.3 using Pacifist. Did NOT require re-install of OS.
    http://discussions.apple.com/thread...347251&tstart=0
    Download the right version here:
    http://www.apple.com/support/downloads/
    Panther: http://www.apple.com/support/downlo...forpanther.html
    Tiger: http://www.apple.com/support/downlo...31fortiger.html
    Leopard: http://www.apple.com/support/downlo...forleopard.html
    Install with Pacifist
    http://www.charlessoft.com/
    Now that I am back to QT7.3, iTunes7.6 is now asking me to update QT to 7.4 in order to be able to view the new movie rental feature of the iTunes store... which sorta sheds some light on the no permission error. Now that iTunes is renting, not just selling, movies, QT is now all fussy about ownership and permissions. Just a guess.

  • When I open itunes to play content I've already purchased and while attempting to view trailers for movies in the itunes store, I receive a generic error message from windows, and I'm directed to reinstall the latest version of itunes.  Not a fix.  Help?

    When I open itunes to play content I've already purchased and while attempting to view trailers for movies in the itunes store, I receive a generic error message from windows, and I'm directed to reinstall the latest version of itunes.  Not a fix.  Help?

    after perusing other subjects with playback issues: 
    this is the fix: 
    -Launch Control Panel - Double click Quicktime, If you do not see quicktime, look on the top left side of control panel and switch to classic view. This will then allow you to see Quicktime.
    -Now click the advanced tab and click on Safe Mode GDI Only, Apply, then ok.

  • After Downloading, Error while opening PDF  : PDF has no pages

    After Downloading, Error while opening PDF  : PDF has no pages
    CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
        EXPORTING
          SRC_SPOOLID              = L_SPOOLNO
          NO_DIALOG                = SPACE
          DST_DEVICE               = MSTR_PRINT_PARMS-PDEST
        IMPORTING
          PDF_BYTECOUNT            = MI_BYTECOUNT
        TABLES
          PDF                      = MTAB_PDF
        EXCEPTIONS
          ERR_NO_ABAP_SPOOLJOB     = 1
          ERR_NO_SPOOLJOB          = 2
          ERR_NO_PERMISSION        = 3
          ERR_CONV_NOT_POSSIBLE    = 4
          ERR_BAD_DESTDEVICE       = 5
          USER_CANCELLED           = 6
          ERR_SPOOLERROR           = 7
          ERR_TEMSEERROR           = 8
          ERR_BTCJOB_OPEN_FAILED   = 9
    Thanks in advance
    Monika
          ERR_BTCJOB_SUBMIT_FAILED = 10
          ERR_BTCJOB_CLOSE_FAILED  = 11
          OTHERS                   = 12.
    Transfer the 132-long strings to 255-long strings
    LOOP AT MTAB_PDF.
    TRANSLATE MTAB_PDF USING '~'.
    CONCATENATE WA_BUFFER MTAB_PDF INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    it_attach = WA_BUFFER.
    APPEND it_attach.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    ****GET THE FILE NAME TO STORE....................
    v_path = 'C:\PD Form\' .
    CONCATENATE v_path p_pernr-low '.pdf' into v_name.
        create object v_guiobj.
        call method v_guiobj->file_save_dialog
          EXPORTING
            default_extension = 'pdf'
            default_file_name = v_name
            file_filter       = v_filter
          CHANGING
            filename          = v_name
            path              = v_path
            fullpath          = v_fullpath
            user_action       = v_uact.
        if v_uact = v_guiobj->action_cancel.
          leave to current transaction.
        endif.
    ..................................DOWNLOAD AS FILE....................
        move v_fullpath to v_filename.
        call function 'GUI_DOWNLOAD'
          EXPORTING
            bin_filesize            = MI_BYTECOUNT
            filename                = v_filename
            filetype                = 'BIN'
          TABLES
            data_tab                = it_ATTACH
          EXCEPTIONS
            file_write_error        = 1
            no_batch                = 2
            gui_refuse_filetransfer = 3
            invalid_type            = 4
            no_authority            = 5
            unknown_error           = 6
            header_not_allowed      = 7
            separator_not_allowed   = 8
            filesize_not_allowed    = 9
            header_too_long         = 10
            dp_error_create         = 11
            dp_error_send           = 12
            dp_error_write          = 13
            unknown_dp_error        = 14
            access_denied           = 15
            dp_out_of_memory        = 16
            disk_full               = 17
            dp_timeout              = 18
            file_not_found          = 19
            dataprovider_exception  = 20
            control_flush_error     = 21
            others                  = 22.
        if sy-subrc <> 0.
          message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        endif.

    My Generated Spool request is PDF Spool. It contains Adobe Forms data. To Download Adobe form
                 Spool (PDF Spool) into PDF format,
    First,
    A)     Read PDF Spool data by using u2018FPCOMP_CREATE_PDF_FROM_SPOOLu2019 Function module.
    B)     Assign the Output Data to XSTRING format
    C)     Convert that XSTRING data to Binary Format using 'SCMS_XSTRING_TO_BINARY' Function module.
    D)     Save File on Application server using OPEN DATASET , TRANSFER , CLOSE DATASET.You can see your
                          downloaded file in Transaction AL11 in specified directory.
    You can save your file on Presentation server also using GUI_DOWNLOAD.
    First three steps are necessary if your spool is PDF Spool.
    Basically we need this when we are downloading Adodbe forms ( which is not a SAPScript or smartforms)
    Example :
    DATA :
      e_pdf1 TYPE  fpcontent,
      e_renderpagecount1  TYPE i.
      CALL FUNCTION 'FPCOMP_CREATE_PDF_FROM_SPOOL'
        EXPORTING
          i_spoolid               = l_spoolno
          i_partnum               = '1'
       IMPORTING
         e_pdf                   = e_pdf1
         e_renderpagecount       = e_renderpagecount1
    *   E_PDF_FILE              = E_PDF_FILE1
    * EXCEPTIONS
    *   ADS_ERROR               = 1
    *   USAGE_ERROR             = 2
    *   SYSTEM_ERROR            = 3
    *   INTERNAL_ERROR          = 4
    *   OTHERS                  = 5
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      DATA : buffer  TYPE  xstring,
      append_to_table  TYPE  c.
      DATA : output_length TYPE  i.
      TYPES : BEGIN OF ty_binary,
                binary_field(1000) TYPE c,
              END OF ty_binary.
      DATA : lt_binary TYPE TABLE OF ty_binary WITH HEADER LINE.
      DATA : lv_xstring TYPE xstring.
      lv_xstring = e_pdf1.
    * Convert xstring to binary.
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer                = lv_xstring
         append_to_table       = ' '
    * IMPORTING
    *   OUTPUT_LENGTH         =
        TABLES
          binary_tab            = lt_binary.
      DATA : wa_binary LIKE lt_binary.
      DATA: BEGIN OF itab OCCURS 0,
      field(256),
      END OF itab.
      DATA: dsn(50000) VALUE '/usr/sap/tmp/',
      length LIKE sy-tabix,
      lengthn LIKE sy-tabix.
      CONCATENATE '/usr/sap/tmp/' lv_pernr '.pdf' INTO dsn.
    ******* Save file on Application server
      OPEN DATASET dsn FOR OUTPUT IN BINARY MODE.
      LOOP AT lt_binary.
        TRANSFER lt_binary-binary_field TO dsn.
      ENDLOOP.
      CLOSE DATASET dsn.
      CLEAR lt_binary.
      REFRESH lt_binary.
    cheers

  • ITunes Store error msg: We could not complete your iTunes Store request. An unknown error occurred (-50).

    So I began having trouble connecting to the iTunes store with my computer about a month ago. It was working fine, I purchased and downloaded some music, and then the next day I got this message when I clicked on the iTunes Store: "We could not complete your iTunes Store request. An unknown error occurred (-50). There was an error in the iTunes Store. Please try again later."
    Some basic facts about my computer:
    Mac OS X 10.7.3, purchased in May '12.
    iTunes is updated to the latest 10.6.3 version.
    I have Sophos Anti-Virus (newly installed in the last two weeks).
    No firewalls are set up.
    Parental controls are not blocking anything (don't have them set up).
    Internet connection is fine, no matter how I connect.
    I did have an older version of iTunes (the previous version, so it wasn't that old) when the problem began, so I updated to the newest version hoping it would fix it; but it hasn't. I have checked the firewalls per apple community posts. I have checked the network connection. I only just put on an Anti-Virus (and the problem was pre-AV, so it shouldn't be that). I FINALLY figured out how to uninstall iTunes, and then I reinstalled it. The store still won't open, giving me the same message. 
    A little more research seems to show that the (-50) error is when it times out? But the message appears barely half a second after I click on the iTunes Store icon. It doesn't seem to even try; there isn't enough time to warrant a 'timing out'.
    I am at a loss. At this point I am considering taking my computer in and telling them 'fix it, no matter what', but if I can avoid the hassle of being without my one and only computer for at LEAST a week, that would be great.
    Does anyone have any ideas?! 
    Thank you and God bless!
    Mary 

    Hi Laura-Wedders,
    Thanks for visiting Apple Support Communities.
    On August 7th, some users may have been unable to make purchases from the App Store, iTunes Store, Mac App Store, or iBookstore. Apple worked quickly to resolve these issues, however you may have experienced them.
    To check the current status of these systems please see:
    Apple - Support - System Status
    http://www.apple.com/support/systemstatus/
    If you are still experiencing issues, you may want to troubleshoot with the following articles:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    All the best,
    Jeremy

  • After Effects error: crash occurred while invoking effect plug-in "Looks" URGENT!

    My name is Tyler and i'm a Mult-Media Editor in training. Just recently meaning just this project i've been getting this error "After Effects error: crash occurred while invoking effect plug-in “Looks”." every time i try to render. If i try to remove the clip where it messes up and replace it with another it will just mess up in another spot.
    Screen Shot Here:http://gyazo.com/794429fd1091973c8a296a27d2af6fab.png
    Information:
    AE: After Effects CS5 (64-bit)
    OS: Windows Home Premium (64-bit)
    RAM: 8gb
    Processor: 1st Gen. i7 Quad-Core
    Graphics Card: NVIDIA GeForce GT 320
    Updates: Installed All Updated For Adobe Products
    Source Footage: Call Of Duty: Modern Warfare 2 @ 60fps using UT Video Codec YUV 420
    Worked Before? Yes
    Open GL: My open gl is not enabled
    I've read other forums and watched tutorials. I've already done the following. (Not in order used)
    1. Downgrade Magic Bullet Looks from 1.4.3 to 1.4.2 (Didn't Work)
    2. Upgrade Magic Bullet Looks to MBL 2.0 from Magic Bullet Suite 11 (Didn't Work)
    3. Uninstall my gfx card and re-install it with the newer version (Didn't Work)
    4. Reset AE preferences by pressing alt+shift+ctrl on the shortcut (Didn't Work)
    5. Change render settings from H.264 -> .AVI (Didn't Work)
    6. I've deleted "AE_OpenGL" from my After Effects folder (Didn't Work)
    My Composition:
    http://gyazo.com/53c7a2789a752cfba7e908bed31d7c01.png
    http://gyazo.com/da0cacaf4ef6d7e3276b6aa45b77da79.png
    The look file is not that complex but i don't know if it'll help but there it is.
    Look File Settings:
    http://gyazo.com/25346bb318edadc54e09273977964c7d.png
    I've never had this problem before and hope that someone has a solution to this problem... if so please post an answer. I don't know if its because i put the plug in on all of my clips and then made an adjustment layer with another Magic Bullet Looks or if it's my clips fault but i just dont know what to do.
    -Tyler

    It sounds like Looks is only crashing on this project. If that is so then it's most likely a problem with one of your video clips. Either there's a corrupted frame or some other codec glitch that's throwing the errors. I'd suggest replacing footage items with temporary footage. You could even use solids. Replace one at a time, then undo, until you find the footage that's causing the crash. Then either re-compress that footage to another codec or replace it.
    If Looks is crashing on every type of footage then you need to pursue other options that are more system related.

  • After Effects Error: Tracker_Register: Missing Suite ( 1 :: 0 )

    Product: AE CS4
    Version: 9.0
    OS: OS X 10.5.7
    One day this error just sprung up on me, after having worked fine for quite a while. Strangely, I have scoured the internet and found no mention of this specific error. The error happens upon launching After Effects and after clicking OK, the application shuts down. It does not ever reach the user interface. The loading splash screen comes up and then the errors come up shortly after.
    The two error messages come up one after the other and read in this order:
    "After Effects error: Tracker_Register: missing suite. ( 1 :: 0 )"
    "After Effects can't continue: Failed to register built-in motion tracker."
    I have attempted to reinstall After Effects entirely, even going as far as to wipe all the associated files that are left behind after an uninstall.
    I will attempt to update AE and will report back the progress on that.
    UPDATE
    Updated AE to 9.0.2
    There are now three errors, including the above two. The third error reads: "After Effects can't continue: unexpected failure during application startup"

    Okay, let's do this one step at a time. Removing components without proper uninstall procedures can indeed be dangerous, but I don't think that's the issue here. If the program reports an entire suite missing (which is merely another way of saying that some pieces of its core code have gone anywhere but here), one of the system libraries is not initializing. This is extremely rare on Macs, so this is even more puzzling. As a first step, I would definitely run a tool like OnyX or Apple's own Repair Permissions and disk health utility to check disk integrity. The thing is, the exact spot on the drive could be damaged and it's in the nature of OSX to not waste space, so it will always try to place files in the same physical spot, if they have the same name and similar properties to the predecessor and that region may actualyl have problems. Therefore updating AE might not solve the matter. Second, check the language settings on the files in your AE directory using right-click - Information. This also works with multiple files selected. If they have different settings, you will get a warning and may need to select them separately. On the info panel, have a look at the language options. If the language in which you run AE is not enabled or you have multiple instances of the same language checked (OSX again stores this per file redundantly), disable/ enable the check marks until everything seems right. While you are on the panel, also have a look at the compatibility infdo (it should refer to intel compatibility) and of course the user permission settings. All users must be at least able to read the files. From inside AE, check, whether you are using the "accelerate panels" option in the prefs. Since tracking is a layer window feature, it may cause issues, if there is something not right with your graphics card settings. Speaking of which, check your monitor settings if everything is right. As a last thing, definitely check your Quicktime install. I'm not aware of any definite problems, but QT is always a good candidate for causing issues of any kind.
    Mylenium

  • Mac App Store non responsive after trying to update to OS X 10.10.3

    Mac App Store non responsive after trying to update to OS X 10.10.3. Machine froze, and after rebooting App Store does not work. Force Quit menu shows two items as unresponsive - App Store and App Store Web Content.

    This procedure will delete certain temporary and cache files used by system processes. The files are automatically generated and don't contain any of your data. Occasionally they can become corrupt and cause problems such as yours.
    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    /var/folders/zz
    Right-click or control-click the highlighted line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with a subfolder named "zz" selected. Move that subfolder to the Trash. You may be prompted for your administrator login password. Restart the computer and empty the Trash.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • I am unable to download from the APP store. I get an error message saying my computer is not verified and click support under quick links..

    I am unable to download from the APP store. I get an error message saying my computer is not verified and click support under quick links..

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 & above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • HT204406 I have received an error message when i try to start iTunes Match, "We coulnd not complete your iTunes Store request.  An unknown error occurred (4001).  Can you help with this error?

    I subscribed to iTunes Match, but after the information is gathered about my iTunes library, i get an error message :  "We could not complete your iTunes Store request.  An unknown error occurred (4001).  Try again later." 
    Can you help fix this error?

    Yesterday I went to settings in my iPhone, Music, turned iTunes Match to "Off".  I then updated Match in iTunes and it worked!  I don't know why, but it worked.

  • "We could not complete your itunes Store request. An unkown error..."

    "We could not complete your itunes Store request. An unkown error occurred (3036).
    There was an error in the iTunes Store. Please try again later."
    What the heck is going on. The other was one error, all day today is this one to update a few free apps.
    Was able to download another app from the store but can't update via itunes.
    anyone else experiencing this?

    hi tailsyboy...
    - repairing permissions is always a good "first step" if things are acting weird, error messages come up. Permissions basically identify to the operating system what parts are allowed to interact with other parts, who can control them being changed etc. Updates can often screw these up so running Permissions Repair is always a decent plan after an update. To do this:
    Open Disk Utitlity (Applications > Utilities, or start to type 'disk... ' into spot light and it will pop up (upper right of menu bar magnifying glass icon)
    Next, select the drive on the left hand side that you want to repair. If you've subdivided your drives (partitioned) then you can repair each one.
    Once you've selected the drive (it has to be an operating system, you can't repair permissions on a drive you just use for files/storage etc.) click "Repair Permissions" (there's no need to "Verify" them as this only tells you if they are fubarred and then you have to run Repair Permissions anyways. It can take 5-10 minutes sometimes. it's a good idea to run it twice to ensure all has been repaired if you have a long list of repaired permissions - However NOTE: some elements in Leopard/Snow Leopard report being incorrect but do not repair (it's a strange, but correct report) like FrontRow etc.
    cheers.

  • ITunes error message: "We could not complete your iTunes store request. An unknown error occurred (4002). Any suggestions for curing this?

    After migrating my old iMac to my new one, every time I start iTunes, I get the following message: "We could not complete your iTunes store request. An unknown error occurred (4002). Any suggestions for curing this?

    Perfect - thanks so much!
    For anyone else wondering, the clue was in what was displayed on the screen after I turned iTunes Match on again: it asked whether I wanted to add this computer. Having copied my iTunes library over from the old machine, I'd completely forgotten that iTunes Match identifies each computer uniquely (not each iTunes Library), so was never going to work with this one until I specifically added it. Sorted!

  • TS1424 We could not complete your iTunes Store request. An unknown error occurred (0x800B0101)

    My Iphone 3GS(IOS 5.1.1) could not connect to my ITunes after I up date my old IOS to IOS 5.1.1. When I connect it to my PC by USB cable. The ITunes posted " we could not complete your Itunes Store request. An unknown error occured (0x800B0101) and There was an error in the ITunes store. Please try again later" What could I do to make my Iphone know my Iphone? Please help me to find out how to fix it... Thanks

    Thank Lookslikeamonkye..! I don't know how to make Funny restoring..! Because when I connect to the ITunes, It just post "we could not complete your Itunes Store request. An unknown error occured (0x800B0101) and There was an error in the ITunes store. Please try again later" every time. So I could not restore it. And There isn't have any apple retailer near my house.

  • TS2753 we could not complete your iTunes store request. An unknown error occurred (4200)

    When I sync the iphone 4s after updating the apps on the download section, I get the error code : we could not complete your iTunes store request. An unknown error occurred (4200).
    iTunes updates the phone as far as I know, but clearly there is some sort of error or fault. I have looked for code elsewhere and googled it too without success.
    Anyone else come across the same problem?
    Thanks

    It was just an outage for the store. Happened earlier today and was back up and working within 10 minutes.

Maybe you are looking for

  • Dual boot Windows 7 (64) and Arch Linux (64) problems

    Hello: I am new to Arch Linux and just finished installing the 64bit on my laptop. It had a prebuilt Windows 7 (64) installed which I kept but split the hdd from 160Gb to 80Gb and 80Gb. I installed Arch there and set 4 partitions, all of them as Logi

  • Posting Key in BAPI_ACC_DOCUMENT_POST

    Hi, I am using bapi 'BAPI_ACC_DOCUMENT_POST' to post 'Customer Document'  in FB01. I was able to post the document but Posting Key in the document is not as desired. When I try to Post the document with out any Posting Key by default I am having Post

  • Error using JAX-WS to consume a WS that has more than one parameter

    I am trying to create a web service proxy in JDeveloper using JAX-WS for an OAM web service from a WSDL (identity/oblix/WebServices/CompositeWebServices/WSDL/um_view_interface.wsdl). I received the following error when I try to run the proxy: Excepti

  • Sum HH:MM:SS in Sql Server

    I have searched and came out with no concrete answer on the best way to sum up hours, minute and seconds in using T_Sql. I have a query like below SELECT TaxPayer , STR(SUM(Elapsed)/3600) + RIGHT(CONVERT(char(8),DATEADD(s,SUM(Elapsed),0),108),6)AS El

  • Problems with displaying pictures for albums on iPod screen

    Hello! I have an iPod with 60gigs and since I've updated to software version 1.1 I couldn't display any new CD-covers on the iPod screen related to the album that is playing. Strange thing is that when I play the same song from the iPod in my iTunes,