Unable to update column through ODI

H , i am facing some strange issue
while from ODI i am trying to update a column it not working , but if i run that same code in DB , it updated that column
is their any issue , i am not getting it , here is my code
DECLARE
V_CNT NUMBER(10);
V_SESS_NO NUMBER(10);
BEGIN
SELECT 10370 INTO V_CNT FROM DUAL; ----- This is my number of error records which i am getting through Jython code
SELECT 12122 INTO V_SESS_NO FROM DUAL; ---- This is my ODI step number
EXECUTE IMMEDIATE 'UPDATE TEST_EDW_FILES_LOAD_LOG SET ERROR_RECORDS = :V_CNT WHERE SESS_NO=:V_SESS_NO' USING V_CNT ,V_SESS_NO ;
COMMIT;
END;
is their any issue with this code , but this code is working in DB level

Hi ,
now it's working don't know , but i just delete all procedure and create it again , and it's working
i didn't change anything , and use the same old code :)
DECLARE
V_CNT NUMBER(10);
V_SESS_NO NUMBER(10);
BEGIN
SELECT 200 INTO V_CNT FROM DUAL;
SELECT 1098002 INTO V_SESS_NO FROM DUAL;
EXECUTE IMMEDIATE 'UPDATE EDW_FILES_LOAD_LOG SET ERROR_RECORDS = :V_CNT WHERE SESS_NO=:V_SESS_NO' USING V_CNT ,V_SESS_NO ;
COMMIT;
END;
Edited by: 916710 on Mar 6, 2012 2:15 AM

Similar Messages

  • Unable to update apps through App Store on iPad mini: App Store says that 'All Apps are up to date'

    OK, so basically I've been having this problem where I'm unable to update the apps on my iPad through the App Store. The badge icon of the App Store displays a number 8, which should mean that there are 8 apps with updates, however, upon opening the App Store and going to the 'Updates' section, my iPad tells me that 'All apps are up to date', which is both frustrating and confusing.
    I have tried:
    - Closing the App Store and removing it from the App Switcher
    - Rebooting the device
    - Logging out and then back in with my Apple ID
    Also, I read elsewhere to try and individually update the apps by going to the 'Purchased' section, however this did not solve anything as none of the apps shown had an 'update' button next to them.
    If anyone can offer any help, it would be greatly appreciated.

    I should have mentioned before- I have been using my iPad without a computer and I haven't got access to one for a while. I was under the impression that when Apple released iOS 5, it was possible to use their devices completely independent of a computer. Hence, every device running iOS 5 or later should be usable And fully functional without a computer.
    Is there any way to fix this without a computer?

  • Unable to update Software through phone in Nokia A...

    Dear Nokia,
    I checked today that there is a software update available for my Asha 200. I downloaded the software through the option given in the phone. The software was downloaded successfully but when i tried to install the software, phone prompted a diaogue box '2.7 MB Memory needed. Delete some items?'. I tried to delete some items but couldn't because all the filed were system files hence protected. Please let meknow how to update the software using phone only? I cant not update this software using PC due to non-availability of PC with me.
    Thanks!
    Aditya

    Also, i saw that people are facing problems after updating the software update by Nokia. Guys, please let me know whether i shouldupdate my phone with new firmware or should wait for the another fixed version.
    Please help.

  • I am unable to update Pages through the App store. It appears someone else used my machine to update Pages previously.For the update,  I am asked to login to another account. I want to remove it and download the latest version. Can I do this?

    I was notified that Pages and one other application have updates. When I tried to login, the Apps page asks me to login to an account I am not familiar with. I imagine that this machine was used by someone else to update or download 2 apps. I would like to delete them and download the latest apps using my account. Can I do this?

    You can log in to your own account at any time and access the appliactions you have paid for, just fill in your own Apple ID.
    Peter

  • HT1338 I'm using 10.5.8 and I am unable to update further through my system updates. When I click on it, it says that there are no updates available. How do I download 10.6 and up?

    Is there any way for me to update further or is it something I'll have to purchase? I'm willing to purchase further updates, just not sure how.

    So we know more about it...
    At the Apple Icon at top left>About this Mac, report the version of OSX from that window, then click on More Info, then click on Hardware> and report this upto but not including the Serial#...
    Hardware Overview:
    Model Name: eMac
    Model Identifier: PowerMac6,4
    Processor Name: PowerPC G4 (1.2)
    Processor Speed: 1.42 GHz
    Number Of CPUs: 1
    L2 Cache (per CPU): 512 KB
    Memory: 2 GB
    Bus Speed: 167 MHz
    Boot ROM Version: 4.9.2f1

  • Unable to update the VAT_CODE column through supplier sites API

    Hi,
    I'm unable to update the vat code column of the ap_supplier_sites_all table using the ap_vendor_pub_pkg.update_vendor_site API.Oracle application instance 12.1.3 and OS linux.Please find the code below.I'm able to update other feilds,but not the vat_code.Please help on this.
    Thanks,
    Abhilash
    CREATE OR REPLACE PACKAGE BODY APPS.xx_wo172304_test
    AS
    PROCEDURE xx_vat_wo172304 (
    errbuf OUT VARCHAR2
    , retcode OUT VARCHAR2
    IS
    CURSOR cur_vat
    IS
    SELECT site.*
    FROM apps.ap_suppliers supp, apps.ap_supplier_sites_all site
    WHERE site.vat_code IN
    ('CZ OEUS 20', 'CZ OEUZ 20', 'CZ OJCD 20', 'CZ OT20', 'CZ-20-EDC', 'OEUS20', 'OEUZ20', 'OPP20E'
    , 'OS20', 'OT20')
    AND supp.vendor_id = site.vendor_id
    AND site.org_id IN (608, 1508, 2396, 2397)
    AND site.vendor_site_id =68154;
    l_vendor_site_rec ap_vendor_pub_pkg.r_vendor_site_rec_type;
    l_vat_code ap_supplier_sites_all.VAT_CODE%TYPE;
    l_vendor_site_id ap_supplier_sites_all.vendor_site_id%TYPE;
    x_return_status VARCHAR2 (100) := NULL;
    x_msg_data VARCHAR2 (1000) := NULL;
    x_msg_count NUMBER := NULL;
    l_error_reason VARCHAR2 (2000) := NULL;
    l_user_id           number := FND_GLOBAL.USER_ID;
    l_last_update_login           number := FND_GLOBAL.LOGIN_ID;
    l_program_application_id           number := FND_GLOBAL.prog_appl_id;
    l_program_id           number := FND_GLOBAL.conc_program_id;
    l_request_id           number := FND_GLOBAL.conc_request_id;
    BEGIN
    -- mo_global.init ('SQLAP');
    FOR rec_vat IN cur_vat LOOP
    IF rec_vat.org_id = 608 THEN
    IF rec_vat.vat_code = 'OEUS20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUS21';
    ELSIF rec_vat.vat_code = 'OEUZ20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ21';
    ELSIF rec_vat.vat_code = 'OPP20E' THEN
    l_vendor_site_rec.vat_code := 'CZ OPP21E';
    ELSIF rec_vat.vat_code = 'OS20' THEN
    l_vendor_site_rec.vat_code := 'CZ OS21';
    ELSIF rec_vat.vat_code = 'OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OS21';
    END IF;
    ELSIF rec_vat.org_id = 1508 THEN
    IF rec_vat.vat_code = 'CZ OJCD 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OJCD21';
    ELSIF rec_vat.vat_code = 'CZ OEUS 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUS21';
    ELSIF rec_vat.vat_code = 'CZ OEUZ 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ21';
    ELSIF rec_vat.vat_code = 'CZ OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OT21';
    END IF;
    ELSIF rec_vat.org_id = 2396 THEN
    IF rec_vat.vat_code = 'CZ OEUZ 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ 21';
    ELSIF rec_vat.vat_code = 'CZ OJCD 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OJCD 21';
    ELSIF rec_vat.vat_code = 'CZ OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OT21';
    ELSIF rec_vat.vat_code = 'CZ-20-EDC' THEN
    l_vendor_site_rec.vat_code := 'CZ-21-EDC';
    END IF;
    ELSIF rec_vat.org_id = 2397 THEN
    IF rec_vat.vat_code = 'CZ OEUS 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUS 21';
    ELSIF rec_vat.vat_code = 'CZ OEUZ 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ 21';
    ELSIF rec_vat.vat_code = 'CZ OJCD 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OJCD 21';
    ELSIF rec_vat.vat_code = 'CZ OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OT21';
    ELSIF rec_vat.vat_code = 'CZ-20-EDC' THEN
    l_vendor_site_rec.vat_code := 'CZ-21-EDC';
    END IF;
    END IF;
    l_vendor_site_id := rec_vat.vendor_site_id;
    l_vendor_site_rec.org_id := rec_vat.org_id;
    l_vendor_site_rec.vendor_id := rec_vat.vendor_id;
    --l_vendor_site_rec.vendor_site_code:='318581-MOR. KRU';
    l_vendor_site_rec.rfq_only_site_flag := 'Y';
    -- l_vendor_site_rec.last_update_date := SYSDATE;
    l_vendor_site_rec.last_updated_by := 1134;   MARTIN.ROUNDS
    -- DBMS_OUTPUT.put_line ('VAT CODE:' || l_vendor_site_rec.vat_code);
    --DBMS_OUTPUT.put_line ('Vendor Site Id:' || l_vendor_site_id);
    fnd_file.put_line (fnd_file.LOG
    , 'VAT CODE:' || l_vendor_site_rec.vat_code
    fnd_file.put_line (fnd_file.LOG
    , 'Vendor ID:' || rec_vat.vendor_id
    fnd_file.put_line (fnd_file.LOG
    , 'Vendor Site Id:' || l_vendor_site_id
    fnd_file.put_line (fnd_file.LOG
    , 'RFQ ONLY SITE FLAG:' || l_vendor_site_rec.rfq_only_site_flag
    ap_vendor_pub_pkg.update_vendor_site (p_api_version => 1
    , x_return_status => x_return_status
    , x_msg_count => x_msg_count
    , x_msg_data => x_msg_data
    , p_vendor_site_rec => l_vendor_site_rec
    , p_vendor_site_id => l_vendor_site_id
    ); --p_calling_prog     IN  VARCHAR2 DEFAULT 'NOT ISETUP'
    -- pos_vendor_pub_pkg.update_vendor_site (p_vendor_site_rec => l_vendor_site_rec
    -- , x_return_status => x_return_status
    -- , x_msg_count => x_msg_count
    -- , x_msg_data => x_msg_data
    --     ap_vendor_sites_pkg.update_row(
    --          p_vendor_site_rec => l_vendor_site_rec,
    --          p_last_update_date => sysdate,
    --          p_last_updated_by => l_user_id,
    --          p_last_update_login => l_last_update_login,
    --          p_request_id => l_request_id ,
    --          p_program_application_id => l_program_application_id,
    --          p_program_id => l_program_id,
    --          p_program_update_date => sysdate,
    --          p_vendor_site_id => l_vendor_site_id);
    fnd_file.put_line (fnd_file.LOG
    , 'Return Status:' || x_return_status
    IF x_return_status <> fnd_api.g_ret_sts_success THEN
    IF x_msg_count >= 1 THEN
    FOR i IN 1 .. x_msg_count LOOP
    IF l_error_reason IS NULL THEN
    l_error_reason :=
    l_error_reason
    || ','
    || SUBSTR (fnd_msg_pub.get (p_encoded => fnd_api.g_false)
    , 1
    , 255
    || SQLERRM;
    ELSE
    l_error_reason :=
    l_error_reason
    || ','
    || SUBSTR (fnd_msg_pub.get (p_encoded => fnd_api.g_false)
    , 1
    , 255
    || SQLERRM;
    END IF;
    --DBMS_OUTPUT.put_line ('Supplier Site API Error-' || l_error_reason);
    fnd_file.put_line (fnd_file.LOG
    , 'Supplier Site API Error-' || l_error_reason
    END LOOP;
    END IF;
    ELSIF x_return_status='S' THEN
    --DBMS_OUTPUT.put_line ('Supplier Site API Success-' || l_error_reason);
    fnd_file.put_line (fnd_file.LOG
    , 'Supplier Site API Success-' || l_error_reason
    END IF;
    END LOOP;
    COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
    --DBMS_OUTPUT.put_line ('Error-' || SQLERRM);
    fnd_file.put_line (fnd_file.LOG
    , 'Error-' || SQLERRM
    END xx_vat_wo172304;
    END xx_wo172304_test;

    Hi,
    I'm unable to update the vat code column of the ap_supplier_sites_all table using the ap_vendor_pub_pkg.update_vendor_site API.Oracle application instance 12.1.3 and OS linux.Please find the code below.I'm able to update other feilds,but not the vat_code.Please help on this.
    Thanks,
    Abhilash
    CREATE OR REPLACE PACKAGE BODY APPS.xx_wo172304_test
    AS
    PROCEDURE xx_vat_wo172304 (
    errbuf OUT VARCHAR2
    , retcode OUT VARCHAR2
    IS
    CURSOR cur_vat
    IS
    SELECT site.*
    FROM apps.ap_suppliers supp, apps.ap_supplier_sites_all site
    WHERE site.vat_code IN
    ('CZ OEUS 20', 'CZ OEUZ 20', 'CZ OJCD 20', 'CZ OT20', 'CZ-20-EDC', 'OEUS20', 'OEUZ20', 'OPP20E'
    , 'OS20', 'OT20')
    AND supp.vendor_id = site.vendor_id
    AND site.org_id IN (608, 1508, 2396, 2397)
    AND site.vendor_site_id =68154;
    l_vendor_site_rec ap_vendor_pub_pkg.r_vendor_site_rec_type;
    l_vat_code ap_supplier_sites_all.VAT_CODE%TYPE;
    l_vendor_site_id ap_supplier_sites_all.vendor_site_id%TYPE;
    x_return_status VARCHAR2 (100) := NULL;
    x_msg_data VARCHAR2 (1000) := NULL;
    x_msg_count NUMBER := NULL;
    l_error_reason VARCHAR2 (2000) := NULL;
    l_user_id           number := FND_GLOBAL.USER_ID;
    l_last_update_login           number := FND_GLOBAL.LOGIN_ID;
    l_program_application_id           number := FND_GLOBAL.prog_appl_id;
    l_program_id           number := FND_GLOBAL.conc_program_id;
    l_request_id           number := FND_GLOBAL.conc_request_id;
    BEGIN
    -- mo_global.init ('SQLAP');
    FOR rec_vat IN cur_vat LOOP
    IF rec_vat.org_id = 608 THEN
    IF rec_vat.vat_code = 'OEUS20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUS21';
    ELSIF rec_vat.vat_code = 'OEUZ20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ21';
    ELSIF rec_vat.vat_code = 'OPP20E' THEN
    l_vendor_site_rec.vat_code := 'CZ OPP21E';
    ELSIF rec_vat.vat_code = 'OS20' THEN
    l_vendor_site_rec.vat_code := 'CZ OS21';
    ELSIF rec_vat.vat_code = 'OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OS21';
    END IF;
    ELSIF rec_vat.org_id = 1508 THEN
    IF rec_vat.vat_code = 'CZ OJCD 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OJCD21';
    ELSIF rec_vat.vat_code = 'CZ OEUS 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUS21';
    ELSIF rec_vat.vat_code = 'CZ OEUZ 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ21';
    ELSIF rec_vat.vat_code = 'CZ OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OT21';
    END IF;
    ELSIF rec_vat.org_id = 2396 THEN
    IF rec_vat.vat_code = 'CZ OEUZ 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ 21';
    ELSIF rec_vat.vat_code = 'CZ OJCD 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OJCD 21';
    ELSIF rec_vat.vat_code = 'CZ OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OT21';
    ELSIF rec_vat.vat_code = 'CZ-20-EDC' THEN
    l_vendor_site_rec.vat_code := 'CZ-21-EDC';
    END IF;
    ELSIF rec_vat.org_id = 2397 THEN
    IF rec_vat.vat_code = 'CZ OEUS 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUS 21';
    ELSIF rec_vat.vat_code = 'CZ OEUZ 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OEUZ 21';
    ELSIF rec_vat.vat_code = 'CZ OJCD 20' THEN
    l_vendor_site_rec.vat_code := 'CZ OJCD 21';
    ELSIF rec_vat.vat_code = 'CZ OT20' THEN
    l_vendor_site_rec.vat_code := 'CZ OT21';
    ELSIF rec_vat.vat_code = 'CZ-20-EDC' THEN
    l_vendor_site_rec.vat_code := 'CZ-21-EDC';
    END IF;
    END IF;
    l_vendor_site_id := rec_vat.vendor_site_id;
    l_vendor_site_rec.org_id := rec_vat.org_id;
    l_vendor_site_rec.vendor_id := rec_vat.vendor_id;
    --l_vendor_site_rec.vendor_site_code:='318581-MOR. KRU';
    l_vendor_site_rec.rfq_only_site_flag := 'Y';
    -- l_vendor_site_rec.last_update_date := SYSDATE;
    l_vendor_site_rec.last_updated_by := 1134;   MARTIN.ROUNDS
    -- DBMS_OUTPUT.put_line ('VAT CODE:' || l_vendor_site_rec.vat_code);
    --DBMS_OUTPUT.put_line ('Vendor Site Id:' || l_vendor_site_id);
    fnd_file.put_line (fnd_file.LOG
    , 'VAT CODE:' || l_vendor_site_rec.vat_code
    fnd_file.put_line (fnd_file.LOG
    , 'Vendor ID:' || rec_vat.vendor_id
    fnd_file.put_line (fnd_file.LOG
    , 'Vendor Site Id:' || l_vendor_site_id
    fnd_file.put_line (fnd_file.LOG
    , 'RFQ ONLY SITE FLAG:' || l_vendor_site_rec.rfq_only_site_flag
    ap_vendor_pub_pkg.update_vendor_site (p_api_version => 1
    , x_return_status => x_return_status
    , x_msg_count => x_msg_count
    , x_msg_data => x_msg_data
    , p_vendor_site_rec => l_vendor_site_rec
    , p_vendor_site_id => l_vendor_site_id
    ); --p_calling_prog     IN  VARCHAR2 DEFAULT 'NOT ISETUP'
    -- pos_vendor_pub_pkg.update_vendor_site (p_vendor_site_rec => l_vendor_site_rec
    -- , x_return_status => x_return_status
    -- , x_msg_count => x_msg_count
    -- , x_msg_data => x_msg_data
    --     ap_vendor_sites_pkg.update_row(
    --          p_vendor_site_rec => l_vendor_site_rec,
    --          p_last_update_date => sysdate,
    --          p_last_updated_by => l_user_id,
    --          p_last_update_login => l_last_update_login,
    --          p_request_id => l_request_id ,
    --          p_program_application_id => l_program_application_id,
    --          p_program_id => l_program_id,
    --          p_program_update_date => sysdate,
    --          p_vendor_site_id => l_vendor_site_id);
    fnd_file.put_line (fnd_file.LOG
    , 'Return Status:' || x_return_status
    IF x_return_status <> fnd_api.g_ret_sts_success THEN
    IF x_msg_count >= 1 THEN
    FOR i IN 1 .. x_msg_count LOOP
    IF l_error_reason IS NULL THEN
    l_error_reason :=
    l_error_reason
    || ','
    || SUBSTR (fnd_msg_pub.get (p_encoded => fnd_api.g_false)
    , 1
    , 255
    || SQLERRM;
    ELSE
    l_error_reason :=
    l_error_reason
    || ','
    || SUBSTR (fnd_msg_pub.get (p_encoded => fnd_api.g_false)
    , 1
    , 255
    || SQLERRM;
    END IF;
    --DBMS_OUTPUT.put_line ('Supplier Site API Error-' || l_error_reason);
    fnd_file.put_line (fnd_file.LOG
    , 'Supplier Site API Error-' || l_error_reason
    END LOOP;
    END IF;
    ELSIF x_return_status='S' THEN
    --DBMS_OUTPUT.put_line ('Supplier Site API Success-' || l_error_reason);
    fnd_file.put_line (fnd_file.LOG
    , 'Supplier Site API Success-' || l_error_reason
    END IF;
    END LOOP;
    COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
    --DBMS_OUTPUT.put_line ('Error-' || SQLERRM);
    fnd_file.put_line (fnd_file.LOG
    , 'Error-' || SQLERRM
    END xx_vat_wo172304;
    END xx_wo172304_test;

  • HT4623 While updating ios6 through software update option, i am getting the error"unable to install the update an error occured installing IOS6"

    While updating ios6 through software update option, i am getting the error"unable to install the update an error occured installing IOS6"

    I am getting this message also.... mine cant update too...

  • I cannot access Content Library in iMovie - Content Library doesn't show on the iMovie screen and is greyed out when accessed through "windows" tab at the top. Also unable to update the projects/events (a suggested solution for a similar question).

    I cannot access Content Library in iMovie - Content Library doesn't show on the iMovie screen and is greyed out when accessed through "windows" tab at the top. Also unable to update the projects/events (a suggested solution for a similar question). I haven't had this issue before, I have always used the content library on the screen but haven't used this for about a month. How can I make the Content Library available?

    Thanks so much! I am backing up the entire computer now with an external hard drive - this should be fine right? And surely if I am backing up the whole computer these projects/videos will be backed up too? I wasn't sure how to do this any other way and I am clearly not great with tech issues. Once this is done and I am sure my projects/videos are safe I will do the delete and reinstall bit. Thanks for taking the time to help

  • Unable to update my software through creative cloud. receive download error

    unable to update my software through creative cloud. receive download error

    Hi Jeff,
    Thanks for your feedback, I managed to workout the problem.
    I went to info on my 'Adobe' folder within the 'Applications' folder on my
    harddrive and found that my 'Sharing and permissions' on the 'admin'
    option was read only.
    I unlocked the Adobe folder and changed my admin privileges to read and
    write.
    Laura Sassin
    Senior Creative Artworker
    Marketing Services
    <Removed by Moderator>

  • Since updating our iPhone to 6.1.4 we have been unable to play it through our Bose docking station - any ideas?

    since updating our iPhone to 6.1.4 we have been unable to play it through our Bose docking station - any ideas?

    But you can send an e-mail without an attachment OK?
    If you can, have the admins take a look at the ActiveSync logs. Something's definitely not right. I can't imagine what it would be on the phone, though assuming the Exchange account is set up the same on all of the devices.

  • HT4623 when i go to settings general    i have not found any update option .... in iphone 3gs.. what should i do??? i m unable to update through itunes,

    when i go to settings>general>   i have not found any update option .... in iphone 3gs.. what should i do??? i m unable to update through itunes,

    Since there is no "Software Update", you are not yet up to iOS 5.  That is where that feature was introduced.
    So your only choice is to use iTunes to update your software.

  • Unable to update the serial number through bdc in Sales Order

    Hi experts,
    I written the inboud FM for to update the 3rd party items serial number to the sales orders through BDC Call transaction Method.
    Here i am facing a problem when i have the 19 item Quan ,it is updating correct through idoc , when ever there is moe than 19 and at that if any serial number repeated for that if i am changing at that time it is loosing the control of the BDC and giving the control to the salesorder screen.
    how can i handle that control again has to come to BDC prgrm......
    Thnks,
    Regards,
    Bharani

    Hi,
    Can you please let me know the segment in ORDERS05 Idoc to process the Payment card information and if the standard Function Module can handle the creation of a Sales Order with data for Payment Card.
    We have a requirement to map the Tokenized Number of the Credit Card send from a store front end to ECC mapping via SAP-PI.
    Thanks in Advance,

  • Unable to Update Any Applications purchased through MAS

    Hello.
    I am unable to update any of my purchased apps from the Mac App Store. Have used the 10.6.6 combo updater, repaired disk permissions, reset Apple ID password, but am still unable to update. The updates tab is empty, and when I try to click an Update button from the purchases tab, I get a dialog that says:
    "You have updates available for other accounts. Sign in to (null) to update applications for that account."
    I haven't used any other Apple ID for the MAS.
    Console.app is spitting out this error when I try to update:
    1/18/11 7:48:26 PM App Store[6985] multibyte IDs are unsupported.

    I posted a solution in http://discussions.apple.com/thread.jspa?messageID=13006522&tstart=0 that worked for me. I had Spotlight indexing disabled (Privacy tab > added the root drive). I allowed Spotlight to reindex and now the App Store works as expected.
    If anyone wants to take the time and discern what specifically Spotlight needs to index that would be great as I never use it and hate the rude mds and mdworker processes thrashing at the drive.
    Hope it helps!
    Oh! The console message that led me here was:
    date time mdsprocessID (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    It appeared every time I started the App Store.

  • Update Statement in ODI Procedure

    Hi All,
    I want to update a value in a table through ODI procedure
    I Created a procedure,added new step,given details like Technology,Context,Schema in Command on target
    on the command:
    i was trying with:-
    update table_name
    set column_name1='value1'
    where column_name2='value2'
    and also i tried with:-
    begin
    UPDATE Schema_name.Table_name SET column_name1='value1' WHERE column_name2='value2';
    end;
    in both cases i am unable to update the value in the table
    Please suggest me
    Thanks in Advance

    Hi,
    Thanks for the reply
    I fixed that problem
    It was caused due to Database error
    Thanks

  • OSX: Adobe Creative Cloud unable to update (stall at 50%)

    Hey experts,
    ever since signing up for Creative Cloud I have been unable to update any application as my regular user on OSX. After exchanging 23 emails with the Adobe support in 2013 I finally gave up and created a workaround in the hope that the Adobe developers would finally look into the issue and fix the bug. With the last update of Creative Cloud my workaround stopped working so I took time to do a complete reinstallation of Creative Cloud to see if the bug was finally fixed. It was not.
    The bug:
    -Installation of Creative Cloud and Photoshop, Lightroom etc. through the Creative Cloud app works.
    -Any try to update a CC applicaton (e. g. Photoshop CC 2014 results in the state "waiting" at 50%):
    -Trying to update through the menu of Adobe Photoshop CC 2014 "Aktualisierungen"
    resulted in the following error message:
    Translation: "Update failed. Unable to apply updates. Adobe Application manager is already running. Close all instances of Adobe Application Manager before applying updates. etc."
    What I tried to resolve the problem:
    What did not work:
    -Complete reinstallation of Creative Cloud:
         -Uninstall of all Adobe applications
         -Ran the Adobe CC Cleaner tool
         -Eliminated every single *[Aa]dobe*-folder on my disk including my profile.
         -Reboot
         -Re-installation using a fresh CC download.
    -The common 1st-level-support acts of desperation:
         -Rebooting
         -Checking the file system
         -Fixing permissions
    -The bug even survived 2 OSX system upgrades
    -Even tried to track down the bug myself which I gave up after having discovered the endless chain of Creative Cloud and AAM-Processes executing each other...
    What worked:
    -Installing updates as another OSX user. (Which is cumbersome and to be honest I am unwilling to create a new profile and redoing the settings of all installed (especially non-Adobe) applications because of an Adobe bug...)
    Any help will be greatly appreciated.
    Patrick

    Sheena Kaul schrieb:
    Hi Patrick,
    Can you try to run the Adobe Creative Cloud on root user account?
    Enabling and using the "root" user in OS X - Apple Support
    Regards,
    Sheena
    Hessijames schrieb:
    What worked:
    -Installing updates as another OSX user. (Which is cumbersome and to be honest I am unwilling to create a new profile and redoing the settings of all installed (especially non-Adobe) applications because of an Adobe bug...)
    Any help will be greatly appreciated.
    Patrick

Maybe you are looking for

  • Unknown error message when trying to update or download Apps?

    Hello!  I have had no problems till now, and have been happily downloading and updating for 9 months.  Yesterday I received an unknown error message when I tried to update an App on my IPad 2, and have since been unable to update or download. Have tr

  • New Saved files not Showing up in finder

    When I save a new file, since updating to 10.5.4; new files will not show up in the folder it was saved in, until I close it and then reopen it. I have already performed a fix disk permissions with idisk and ran MacJanitor Is this a known problem wit

  • BPM Collect Message dependent AND time dependent

    Hi I have a IDOC to file scenario where I have to collect all the IDOC until I receive a stop IDOC. Once the End collect IDOC is received I have to do a n:1 transformation and write the file to the FTP. The problem is, at times the IDOC which is supp

  • Pio 110D on the way....question regarding firmware

    I finally pull the trigger and ordered a Pioneer 110D from OWC (along with 2GB ram, too!). Obviously I won't know what firmware it has until I get it hooked up, but I wanted to be prepared to upgrade it in the meantime. I found the DVRFlash utility,

  • How do i get my itunes to sync to my iphone 4s

    how can i get my itunes to sync to my iphone 4s