APP-FND-00756: Cannot find combination CCID=303998 CODE=MSTK SET=1079

In Purchasing, when I inquiry Autocreate form, it appears this error APP-FND-00756: Cannot find combination CCID=303998 CODE=MSTK SET=1079.
Does anyone have any ideas what cause this?
Thank you.

Sandeep,
Your answer is correct, One PO in my company had the same issue. I checked that the item with the inventory item id "XX" (from  "CCID=XX") was not assigned to the warehouse under which the PO was placed.
Thanks

Similar Messages

  • APP-FND-00756: Cannot find combination CCID=3 CODE=MSTK SET=121

    Hi anybody pls help me as why is this error occuring when we open an requisition form and i googled the oracle support unable to find a solution.
    If you have any solution, pls update me on [email protected]
    Regards,
    C.Karthick

    Sandeep,
    Your answer is correct, One PO in my company had the same issue. I checked that the item with the inventory item id "XX" (from  "CCID=XX") was not assigned to the warehouse under which the PO was placed.
    Thanks

  • APP-FND-01242: Cannot read value from field Error in Forms

    Hi,
    I have a form which is having a navigation
    Setup -> Codes,
    as soon as the Code page has open, am pressing Cntrl + F11, and am getting the
    below error.
    APP-FND-01242: Cannot read value from field COMBO.ENABLED_FLAG
    Cause: The field COMBO.ENABLED_FLAG could not be located or read.
    Action: This error is normally the result of an incorrectly-entered field name string in a trigger, or a field name string that does not uniquely specify a field in your form. Correct your trigger logic to precisely specify a valid field.
    when am clicking on the button 'Ok' am getting a value one by one.
    am a newbie to forms, please let me know how to solve this error in details
    steps that helps me

    Ask your question in an eBusiness-suite related forum, maybe here OA Framework

  • Does anyone know if iphone 4s has audiobooks as a built in app? I cannot find this on my iphone4s and need to download a audiobook

    Does anyone know if iphone 4s has audiobooks as a built in app? I cannot find this on my iphone4s and need to download a audiobook.

    In the music app, but only if you actually have an Audiobook on your phone.

  • APP-FND-01630 Cannot open file

    Hi,
    While opening forms getting error:-
    "APP-FND-01630 Cannot open file"
    Regards,
    Bhatia

    I had this problem before and i solve it
    To implement the solution, please execute the following steps:
    1. Rename the temp directory.
    2. Create new temp directory.
    3. Run cmclean.sql using apps user name
    you can download cmclean.sql from metalink
    the following is cmclean.sql
    REM
    REM FILENAME
    REM cmclean.sql
    REM DESCRIPTION
    REM Clean out the concurrent manager tables
    REM NOTES
    REM Usage: sqlplus @cmclean
    REM
    REM
    REM $Id: cmclean.sql,v 1.4 2001/04/07 15:55:07 pferguso Exp $
    REM
    REM
    REM +======================================================================+
    set verify off;
    set head off;
    set timing off
    set pagesize 1000
    column manager format a20 heading 'Manager short name'
    column pid heading 'Process id'
    column pscode format a12 heading 'Status code'
    column ccode format a12 heading 'Control code'
    column request heading 'Request ID'
    column pcode format a6 heading 'Phase'
    column scode format a6 heading 'Status'
    WHENEVER SQLERROR EXIT ROLLBACK;
    DOCUMENT
    WARNING : Do not run this script without explicit instructions
    from Oracle Support
    *** Make sure that the managers are shut down ***
    *** before running this script ***
    *** If the concurrent managers are NOT shut down, ***
    *** exit this script now !! ***
    accept answer prompt 'If you wish to continue type the word ''dual'': '
    set feed off
    select null from &answer;
    set feed on
    REM Update process status codes to TERMINATED
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating invalid process status codes in FND_CONCURRENT_PROCESSES
    set feedback off
    set head on
    break on manager
    SELECT concurrent_queue_name manager,
    concurrent_process_id pid,
    process_status_code pscode
    FROM fnd_concurrent_queues fcq, fnd_concurrent_processes fcp
    WHERE process_status_code not in ('K', 'S')
    AND fcq.concurrent_queue_id = fcp.concurrent_queue_id
    AND fcq.application_id = fcp.queue_application_id;
    set head off
    set feedback on
    UPDATE fnd_concurrent_processes
    SET process_status_code = 'K'
    WHERE process_status_code not in ('K', 'S');
    REM Set all managers to 0 processes
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating running processes in FND_CONCURRENT_QUEUES
    prompt -- Setting running_processes = 0 and max_processes = 0 for all managers
    UPDATE fnd_concurrent_queues
    SET running_processes = 0, max_processes = 0;
    REM Reset control codes
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating invalid control_codes in FND_CONCURRENT_QUEUES
    set feedback off
    set head on
    SELECT concurrent_queue_name manager,
    control_code ccode
    FROM fnd_concurrent_queues
    WHERE control_code not in ('E', 'R', 'X')
    AND control_code IS NOT NULL;
    set feedback on
    set head off
    UPDATE fnd_concurrent_queues
    SET control_code = NULL
    WHERE control_code not in ('E', 'R', 'X')
    AND control_code IS NOT NULL;
    REM Also null out target_node for all managers
    UPDATE fnd_concurrent_queues
    SET target_node = null;
    REM Set all 'Terminating' requests to Completed/Error
    REM Also set Running requests to completed, since the managers are down
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating any Running or Terminating requests to Completed/Error
    set feedback off
    set head on
    SELECT request_id request,
    phase_code pcode,
    status_code scode
    FROM fnd_concurrent_requests
    WHERE status_code = 'T' OR phase_code = 'R'
    ORDER BY request_id;
    set feedback on
    set head off
    UPDATE fnd_concurrent_requests
    SET phase_code = 'C', status_code = 'E'
    WHERE status_code ='T' OR phase_code = 'R';
    REM Set all Runalone flags to 'N'
    REM This has to be done differently for Release 10
    prompt
    prompt ------------------------------------------------------------------------
    prompt -- Updating any Runalone flags to 'N'
    prompt
    set serveroutput on
    set feedback off
    declare
    c pls_integer := dbms_sql.open_cursor;
    upd_rows pls_integer;
    vers varchar2(50);
    tbl varchar2(50);
    col varchar2(50);
    statement varchar2(255);
    begin
    select substr(release_name, 1, 2)
    into vers
    from fnd_product_groups;
    if vers >= 11 then
    tbl := 'fnd_conflicts_domain';
    col := 'runalone_flag';
    else
    tbl := 'fnd_concurrent_conflict_sets';
    col := 'run_alone_flag';
    end if;
    statement := 'update ' || tbl || ' set ' || col || '=''N'' where ' || col || ' = ''Y''';
    dbms_sql.parse(c, statement, dbms_sql.native);
    upd_rows := dbms_sql.execute(c);
    dbms_sql.close_cursor(c);
    dbms_output.put_line('Updated ' || upd_rows || ' rows of ' || col || ' in ' || tbl || ' to ''N''');
    end;
    prompt
    prompt ------------------------------------------------------------------------
    prompt Updates complete.
    prompt Type commit now to commit these updates, or rollback to cancel.
    prompt ------------------------------------------------------------------------
    prompt
    set feedback on
    REM <= Last REM statment -----------------------------------------------------
    hope this help you also
    Radwan Al-qubati
    ITapplication senior developer
    Safer oil company-Rebublic of Yemen

  • I cannot find Japanese in siri's language setting

    I recently purchased iphone4s. I cannot find Japanese in siri's language setting. Do you know how to add Japanese?

    http://support.apple.com/kb/HT5173

  • My mac book air connects to my network and gets internet access but time machine cannot find my airport base station to set up time machine

    My mac book air connects to my network and gets internet access but airport utility  cannot find my airport base station to set up time machine

    airport utility  cannot find my airport base station to set up time machine
    Normally, AirPort Utility is not used or needed to set up Time Machine backups......unless a default setting on the Time Capsule to Enable File Sharing has been changed.
    On the other hand, if you open AirPort Utility, a picture of the Time Capsule should be displayed. Are you saying here that the Time Capsule does not appear when you open AirPort Utility?

  • Cannot find the passbook choice in the setting part of iphone6 plus

    why i cannot find the passbook choice in the setting part of iphone6 plus

    Because Passbook doesn't have any settings in Settings. What are you trying to do?

  • I have an update required for Evernote in my Imac app store, but cannot find how to get this update. It says to sign in with my emailm address, but I cannot find a way to do this.  Please help!!

    I recently downloaded Mlountain Lion on my Imac. It shows that I have an update for Evernote that should be downloaded, but I cannot find out how to complete this update. It asks for me to sign in with my email address, but does not show how to do this.  Please help!

    I have done exactly what you said. When I check "update", a screen  drops down that asks that I enter my email address to continue........but i cannot find any way to do this.
    In the past, all I would do is check "update", and the update would take place. Since I upgraded to Mountain Lion, this has changed, and i do not know how to do this simple thing.......the app store shows an update is due to be updated, but i cannot find out how to do it.

  • Apps to Go cannot find my iPad

    I've downloaded the Apps to Go application for my iPad 2 and now I cannot "sync" using the instructions because the desktop software cannot "find" my iPad - event when connected with a usb cable.

    See  >  Change your iTunes Store country
    Here  >  http://support.apple.com/kb/HT1311
    Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region = Change Country / Region

  • Utility cannot find airport extrme, how can I set it up? thanks

    trying to setup the airport extreme but utility cannot find the deviceto begin setup , any suggestions be gratly appreciated

    Which model AirPort Extreme is it, are you using a Mac to configure it, and if so what version of OS X is it running?
    In general, start with a "hard reset" - hold its reset button depressed continuously, five to ten seconds, until its LED flashes rapidly. After it restarts the Extreme will create an open wireless network to which you must connect and subsequently use AirPort Utility to configure it.

  • Windows cannot find my boot camp partition in set up.

    I have been trying to install windows 7 via boot camp on my new imac. Every time I get to the install screen it asks where do I want to install windows.  I choose the boot camp partition and format it as it says.  The computer than tells me that set up cannot find a partition to install on.  In the boot camp installation guide it says that the partition will be partition 3 but mine says partition 4.  Does this have anything to do with why I am not able to install. Please help. 

    You will need to uninstall the software using the HP scrubber.
    To do so, perform the following steps:
    1. Go to Applications/Hewlett Packard/ and then click on “HP Uninstaller”
    2. Next click “Continue”
    3. Highlight the device on the left pane.
    4. Press and hold Control+Alt+Cmd on the keyboard simultaneously while you click on “Uninstall”.
    5. After you do this, you will see a pop up that asks you if you want to uninstall all HP software. Please note, that in doing this, it will remove any other HP printers that you also have installed.
    6. Click “continue” and wait for the program to finish.
    7. After it completes, reboot your computer.
    Once the computer is back on, do the following steps:
    1. Go into “System Preferences” and then select “Print & Fax”
    2. Right click (or control+click) in the rectangle listing your printers and then select “Reset Printing System”. This is going to delete all of your printers.
    After you have reset the printing system, go to the following link and download the most recent version of software for your operating system.
    HP Officejet Full Feature Software and Drivers - OS X 10.8
     Once it is downloaded, install the software and everything should work now! If it doesn’t, just let me know and I will see what else I can do to try and help resolve this issue for you.
    If I have been helpful or if you’d like to say thanks you can click the white star under my name to give me Kudos.  I really appreciate it!
    Best of luck,
    Kyle
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • I had icloud set up perfectly well on my vista operating system, but when it had to be reconfigured I lost my icloud and cannot find the version I need to set up again.

    I had icloud set up to work perfectly between my vista PC, ipad and iphone.  However when I had to have a service and reconfigure on my PC, I lost the connection with icloud and cannot find a download.  Is there one available?

    Go here: http://support.apple.com/kb/DL1687.

  • ITune 11 where is the apps upgrade ?  cannot find on side bar

    The iTune 11 is really Shxx !!!  I have the side bar shown up and under Library, it shows Apps, but when hit the "Apps", it just shown the big logo of Apps, and a big button of Apps in the App Store.  When I hit it, then it just led me to the iTunes Store... Can never find the same view as previous version.
    Apple is getting so confusing, and I don't know how those people are thinking now.  Why Apple is making things more and more user unfriendly !!!

    DC_Louisville wrote:
    Found the issue ... Basically, my issue is because I did a laptop swap. Although the disk image is exactly the same, however Itunes just don't recognize as valid, so I need to "Transfer Purchase" from my iPhone back to this new laptop. Once done, everything work as is now!!
    Just copy the entire /Music/iTunes/ folder from old computer to new computer.

  • My podcast still loads on the podcast app, but i cannot find the podcast in the itunes store

    My 200 plus episodes are on my already subscribed podcast app and they load there fine, but when i try to find the podcast in the iTunes store,it is gone. I tried to reload my RSS feed to itunes, but it says that feed is already loaded. I recently added a new RSS feed for another show and where posting the same shows in both. I have one as the network where i post many different shows, but also have one of those shows on its own RSS feed so people could subscribe to just that show as well. The one thats missing is Wild Jones Podcast Network, the one that shows is Sativa Sports Talk.

    For your feed - http://wildjones.com/rss
    It is valid - but missing the iTunes category - that should not be why it went missing - that said - in your libsyn account for that show - go to "Destinations" and then click on "Edit" for Libsyn Classic Feed - and add in the iTunes category on that page and click save.  You should also enter the other info while on that page as well.
    That said - the reason why your show was removed from iTunes is that you have profanity in the show description.
    You can not have any profanity in the show title / description or the episode title or description.  Apple has a bot that removes the shows if there is profanity - and there are 3 F-bombs in your shows feed.  You will need to remove all of them - and any other profanity - once that is done - then contact me - ************* - and let me know and I will help you get back into iTunes
    Regards,
    Rob W
    libsyn
    <E-mail Edited by Host>

Maybe you are looking for

  • No longer able to set retention choices on a per-podcast basis

    iTunes 11.1 has deleted 47 GB of my podcasts, not once, but twice.  I've restored from backup, so am back in business, but this is ridiculuous. There is no longer a way to manage the retention policy individually for each podcast. If you click on a p

  • Pacman.conf file syntax highlighting for nano

    Hi, here is pacman.conf file syntax highlighting for nano. It may be useful for those who edit their pacman.conf regularly. Just put this lines in the end of your /etc/nanorc or ~/.nanorc file: # syntax highlithing in pacman.conf syntax "pacman.conf"

  • Pdfs showing double when displayed within browser ff33.1.1 on mac osx 10.7.5

    says it all - i have to reopen the link with the pdf in safari inorder to read it

  • CS4 upgrade to CS6: where did Version Cue go?

    Ok, please pick up your jaw and clear out the cobwebs. Yes, I'm moving from CS4 to CS6. Searching has drawn no results, and guess-and-click is killing time. How does CS6 version files? Is there a utility to get CS4 Version Cue projects into CS6? I wo

  • Dependent projects and multiple SDKs

    I'm trying to build a pair of libraries that target the iPhone and OS X from the same set of sources. I've created a single project with two targets, one for each SDK. I've then created individual front-end projects that reference the appropriate tar