Any one faced below error ..please help

ID_FlexCtxtGlobal for the flex field segment Additional information does not exist in the Value set $FLEX$.DF_CONTEXTS
this is the error i am getting for some times in Appraisal pages , can any one help on this issue.

Check this thread helps,
Regarding Address in Selfservice
Thanks,
With regards,
Kali.
OSSi.

Similar Messages

  • I am facing syntactical error, please help

    Hi All,
    Please help me.
    I am facing syntactical error for the below mentioned code, please help me to get rid of it.
    I want to fetch the record set in cursor loop it to process one by one inside the loop - for every record - i need to fetch a record set and process it
    pseudocode will be like
    cursor c1 - select * from table
    for rec from c1
    loop
    create cursor c2 - select * form table where value = rec.value
    for rec2 from c2
    loop
    process record
    end loop
    loop end
    The exact code is
    DECLARE
    QNTY_REQ INT := 0;
    QNTY_ALLOCATED INT :=0;
    FGONHAND_CNT INT := 0;
    varINONHAND_CNT INT := 0;
    FGONHAND_QTY INT := 0;
    varINONHAND_QTY INT := 0;
    varORGANIZATION_ID INT :=166;
    varAFM_IN_TYPE_SUBINV VARCHAR2(500) :='-';
    CURSOR C1 IS
    SELECT * FROM
    (SELECT OH.ORDER_NUMBER,
    CONCAT(SUBSTR(OL.ORDERED_ITEM,0,(LENGTH(OL.ORDERED_ITEM)- 2 )),'IN') INITEM,
    (SELECT INVENTORY_ITEM_ID FROM MTL_SYSTEM_ITEMS WHERE ORGANIZATION_ID = 85
                   AND SEGMENT1 = CONCAT(SUBSTR(OL.ORDERED_ITEM,0,(LENGTH(OL.ORDERED_ITEM)- 2 )),'IN')) IN_INVENTORY_ITEM_ID,
    OL.ORDERED_ITEM,
    OL.ORDERED_QUANTITY,
    OL.INVENTORY_ITEM_ID FG_INVENTORY_ITEM_ID,
    OL.SUBINVENTORY FG_SUBINVENTORY
    FROM OE_ORDER_HEADERS_ALL OH , OE_ORDER_LINES_ALL OL
    WHERE OH.HEADER_ID = OL.HEADER_ID
    AND OH.ORG_ID = 146
    AND OH.ORDER_NUMBER = 250300149
    AND OL.SHIP_FROM_ORG_ID = varORGANIZATION_ID
    AND OL.BOOKED_FLAG = 'Y'
    AND OL.FLOW_STATUS_CODE ='AWAITING_SHIPPING');
    --NEED TO GROUP BY THE SUMATION OF QTY , IF SAME ITEM IS ADDED MORE THEN ONE LINE
    BEGIN
    ---DBMS_OUTPUT.ENABLE();
    CREATE GLOBAL TEMPORARY TABLE TMP_PICK_LIST
      --SLNO INT
      FGCODE VARCHAR2(25),
      INCODE VARCHAR2(25),
      LPN_ID INT,
      LPN_NUMBER VARCHAR2(30),
      QTY_AVAILABLE INT,
      QTYALLOCATE INT,
      ITEMTYPE VARCHAR2(10),  -- FG OR IN TYPE OF ITEM ALLOCATED
      PACK_OR_LOOSE VARCHAR2(10), -- PACKED ITEM OR LOOSE
      SUBINVENTORY VARCHAR2(20),
      LOCATOR_ID INT,
      LOCATOR VARCHAR2(20)
    ) ON COMMIT  PRESERVE ROWS;
    FOR REC in C1
    LOOP
      -- QUANTITY NEED TO ALLOCATE
      QNTY_REQ := REC.ORDERED_QUANTITY;
      QNTY_ALLOCATED  :=0;
      /* START : ALLOCATE FG QUANTITY IF AVAILABLE  */
      --CHECK FG ITEM AVAILABLE IN THE ORDERED SUBINVENTORY ?
       SELECT COUNT(1) INTO FGONHAND_CNT FROM MTL_ONHAND_QUANTITIES_DETAIL 
                  WHERE ORGANIZATION_ID = varORGANIZATION_ID AND INVENTORY_ITEM_ID = REC.FG_INVENTORY_ITEM_ID  AND SUBINVENTORY_CODE = REC.FG_SUBINVENTORY;
       IF FGONHAND_CNT > 0 THEN
          SELECT SUM(TRANSACTION_QUANTITY) INTO FGONHAND_QTY FROM MTL_ONHAND_QUANTITIES_DETAIL 
                     WHERE ORGANIZATION_ID = varORGANIZATION_ID  AND INVENTORY_ITEM_ID =REC.FG_INVENTORY_ITEM_ID  AND SUBINVENTORY_CODE = rec.FG_SUBINVENTORY;
          --IF THE AVAILABLE FG ONHAND IS LESS THEN EQUAL TO ORDER QUANTITY OR MORE
           IF ( FGONHAND_QTY <= QNTY_REQ ) THEN
                    INSERT INTO TMP_PICK_LIST (FGCODE          ,INCODE    ,LPN_ID, QTY_AVAILABLE      ,QTYALLOCATE         ,ITEMTYPE,PACK_OR_LOOSE,SUBINVENTORY     , LOCATOR_ID )
                                        SELECT REC.ORDERED_ITEM,REC.INITEM,LPN_ID,TRANSACTION_QUANTITY,TRANSACTION_QUANTITY,'FGITEM','LOOSE'      ,SUBINVENTORY_CODE,LOCATOR_ID
                                       FROM MTL_ONHAND_QUANTITIES_DETAIL  WHERE ORGANIZATION_ID = varORGANIZATION_ID
                                 AND INVENTORY_ITEM_ID =REC.FG_INVENTORY_ITEM_ID  AND SUBINVENTORY_CODE = rec.FG_SUBINVENTORY;
                --UPDATE ALLOCATED QTY
                QNTY_ALLOCATED := FGONHAND_QTY;
                --UPDATE QTY REQUIRED
                QNTY_REQ := QNTY_REQ - QNTY_ALLOCATED;
              END IF;
       END IF;
      /* END : ALLOCATE FG QUANTITY IF AVAILABLE  */    
      /* START : ALLOCATE IN TYPE ITEM IF AVAILABLE  */
          IF  QNTY_REQ > 0 THEN --IF YES , THEN ALLOCATE - IN TYPE OF ITEM
              SELECT COUNT(1) INTO varINONHAND_CNT FROM MTL_ONHAND_QUANTITIES_DETAIL 
                  WHERE ORGANIZATION_ID = varORGANIZATION_ID
                  AND INVENTORY_ITEM_ID = REC.IN_INVENTORY_ITEM_ID 
                  AND SUBINVENTORY_CODE IN ( varAFM_IN_TYPE_SUBINV );
              IF  varINONHAND_CNT > 0 THEN
                 CURSOR C2 IS
                 SELECT * FROM
                 (SELECT REC.ORDERED_ITEM,REC.INITEM,LPN_ID,TRANSACTION_QUANTITY QTY,SUBINVENTORY_CODE,LOCATOR_ID
                      FROM MTL_ONHAND_QUANTITIES_DETAIL  WHERE ORGANIZATION_ID = varORGANIZATION_ID
                       AND INVENTORY_ITEM_ID =REC.IN_INVENTORY_ITEM_ID AND SUBINVENTORY_CODE IN ( varAFM_IN_TYPE_SUBINV )
                       AND LPN_ID IS NOT NULL ORDER BY LPN_ID ASC);
                 FOR REC1 in C2
                 LOOP
                    IF REC1.QTY <= QNTY_REQ THEN
                       INSERT INTO TMP_PICK_LIST (FGCODE,INCODE,LPN_ID,QTY_AVAILABLE,QTYALLOCATE,ITEMTYPE,PACK_OR_LOOSE,SUBINVENTORY     , LOCATOR_ID )
                                     VALUES(REC1.ORDERED_ITEM,REC1.INITEM,REC1.LPN_ID,REC1.QTY,REC1.QTY,'INITEM','PACK',REC1.SUBINVENTORY_CODE,REC1.LOCATOR_ID );
                      --UPDATE ALLOCATED QTY
                      QNTY_ALLOCATED := QNTY_ALLOCATED + QTY;
                      --UPDATE QTY REQUIRED
                      QNTY_REQ := QNTY_REQ - QTY ;
                    ELSIF REC1.QTY > QNTY_REQ THEN --IF LPN HAVING MORE THEN REQUIRED
                      INSERT INTO TMP_PICK_LIST (FGCODE,INCODE,LPN_ID,                QTY_AVAILABLE,QTYALLOCATE,ITEMTYPE,PACK_OR_LOOSE,SUBINVENTORY     , LOCATOR_ID )
                                     VALUES(REC1.ORDERED_ITEM,REC1.INITEM,REC1.LPN_ID,REC1.QTY     ,QNTY_REQ,'INITEM','PACK',REC1.SUBINVENTORY_CODE,REC1.LOCATOR_ID );
                      --UPDATE ALLOCATED QTY
                      QNTY_ALLOCATED := QNTY_ALLOCATED + QTY;
                      --UPDATE QTY REQUIRED
                      QNTY_REQ := QNTY_REQ - QTY ;
                    END IF
                    IF QNTY_REQ = 0 THEN
                         EXIT;
                    END IF;
                 END LOOP;
                 CLOSE C2;
              END IF;             
          END IF;
      /* END : ALLOCATE IN TYPE ITEM IF AVAILABLE  */
    -- ELSE 
       --DBMS_OUTPUT.PUT_LINE(QNTY_REQ);
    END LOOP;
    --UPDATE LPN NUMBER & LOCATOR NAME
    --CLOSE C1;
    --DBMS_OUTPUT.PUT_LINE('M');
    END;    

    without going too much in depth about the code
    You error is here:
    BEGIN
    ---DBMS_OUTPUT.ENABLE();
    CREATE GLOBAL TEMPORARY TABLE TMP_PICK_LIST
    ...You're doing DDL inside a PL/SQL block. (creating the GLOBAL TEMPORARY TABLE)
    That is not correct.
    You would need to have that table created before running the PL/SQL block.
    Do not, never, create objects at runtime!

  • How to show PL/SQL package  output and fix below error(please help)

    --PACKAGE SPECIFICATION AND BODY complied successfully but I can not see output some error are also there..  please help ;how to fix this problem
    -- with code
    CREATE OR REPLACE PACKAGE package_variables IS
    -- Declare package components.
    PROCEDURE set(value VARCHAR2);
    FUNCTION get RETURN VARCHAR2;
    END package_variables;
    CREATE OR REPLACE PACKAGE BODY package_variables IS
    -- Declare package scope variable.
    variable VARCHAR2(20) := 'Initial Value';
    -- Define function
    FUNCTION get RETURN VARCHAR2 IS
    BEGIN
    RETURN variable;
    END get;
    -- Define procedure.
    PROCEDURE set(value VARCHAR2) IS
    BEGIN
    variable := value;
    END set;
    END package_variables;
    VARIABLE outcome VARCHAR2(20)
    CALL package_variables.get() INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    EXECUTE package_variables.set('New Value');
    CALL package_variables.get() INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    OUTPUT
    PACKAGE package_variables Compiled.
    PACKAGE BODY package_variables Compiled.
    Error starting at line 2 in command:
    CALL package_variables.get() INTO :outcome
    Error report:
    SQL Error: ORA-01008: not all variables bound
    01008. 00000 - "not all variables bound"
    *Cause:   
    *Action:
    OUTCOME
    1 rows selected
    anonymous block completed
    Error starting at line 2 in command:
    CALL package_variables.get() INTO :outcome
    Error report:
    SQL Error: ORA-01008: not all variables bound
    01008. 00000 - "not all variables bound"
    *Cause:   
    *Action:
    OUTCOME
    1 rows selected
    */

    EXECUTE package_variables.set('New Value');
    CALL package_variables.get INTO :outcome;
    SELECT :outcome AS outcome FROM dual;
    OUTPUT
    anonymous block completed
    Error starting at line 2 in command:
    CALL package_variables.get INTO :outcome
    Error report:
    SQL Error: ORA-06576: not a valid function or procedure name
    06576. 00000 - "not a valid function or procedure name"
    *Cause:    Could not find a function (if an INTO clause was present) or
    a procedure (if the statement did not have an INTO clause) to
    call.
    *Action:   Change the statement to invoke a function or procedure
    OUTCOME
    1 rows selected

  • I receive the error "invalid address" even if my apple ID is the correct one...i already tried a lot of times and th einformation is correct, so i m not being able to install any apps or updates..please help me!!!

    i receive the error "invalid address" even if my apple ID is the correct one...i already tried a lot of times and the information is correct, so i m not being able to install any apps or updates..please help me!!!

    contact itunes support

  • I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    I cannot use iCloud on Windows 7, as it won't recognize my apple ID when i try to sign in to icloud it i get error saying "you can't sign in because of a server error (please help some one)

    Although your message isn't mentioned in the symptoms, let's try the following document with that one:
    Apple software on Windows: May see performance issues and blank iTunes Store

  • I forget my apple ID and password. i can't activate my iphone model A1332 EMC 380A.please please help me.if any one read my massage.please.

    i forget my apple ID and password. i can't activate my iphone model A1332 EMC 380A.please please help me.if any one read my massage.please.

    Go to http://appleid.apple.com and click 'Find your Apple ID'.

  • HT202159 Tried restarting download from the "Purchases" tab but the app comes out with "an error ocurred " message and I the button next to it is grey without any text or action. Please help, cannot dowload bad piggies game

    Tried restarting download from the "Purchases" tab but the app comes out with "an error ocurred " message and I the button next to it is grey without any text or action. Please help, cannot dowload bad piggies game

    Hi aaronvilla,
    Sorry to hear you are having issues with your iTunes Store purchase.   The following information should help you with this:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    To report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase, follow these steps:
    Find the email receipt for your purchase.
    Click Report a Problem under the app that is having the issue.
    When prompted, enter the Apple ID and password you used to purchase the item, then click Report a Problem.
    Click Report a Problem next to the item you are having an issue with.
    From the Choose Problem dropdown menu, choose the appropriate issue.
    Follow the onscreen instructions and—if prompted—type a description of the problem into the text field.
    Click Submit to have your issue reviewed.
    Hope this helps ....
    - Judy

  • My Mac Book Pro 13 inch shuts down when I insert some usb on port. It will be dead for few days (no power, can't charge as well, no restarting) and after few days it will work? Any one facing same issue and any solutions please...

    My Mac Book Pro 13 inch shuts down when I insert some usb on port. It will be dead for few days (no power, can't charge as well, no restarting) and after few days it will work? Any one facing same issue and any solutions please...

    Hi ohmghimire,
    Thanks for visiting Apple Support Communities.
    If you're seeing unexpected behavior when using USB devices, try resetting the SMC on your MacBook Pro:
    Resetting the SMC on portables with a battery you should not remove on your own
    Note: Portable computers that have a battery you should not remove on your own include MacBook Pro (Early 2009) and later, all models of MacBook Air, and MacBook (Late 2009).
    Shut down the computer.
    Plug in the MagSafe power adapter to a power source, connecting it to the Mac if its not already connected.
    On the built-in keyboard, press the (left side) Shift-Control-Option keys and the power button at the same time.
    Release all the keys and the power button at the same time.
    Press the power button to turn on the computer.
    Note: The LED on the MagSafe power adapter may change states or temporarily turn off when you reset the SMC.
    You can find the article with these steps here:
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/HT3964
    If you still see this behavior after resetting the SMC, or your computer won't turn on, try the steps in this article next:
    Troubleshooting: My computer won't turn on
    http://support.apple.com/kb/ts1367
    Best Regards,
    Jeremy

  • Any one know what error -5000 is?  I get this error when I try to update to IOS 5 on my 3gs phone.

    Any one know what error -5000 is?  I get this error when I try to update to IOS 5 on my 3gs phone.

    I am also facing the same issue.
    four days back, my power buttton stopped working.
    Then my sim card slot stopped reading like it was stuck at gsm/cdma band.
    Even without simcard it said searching..
    then I changed the power button and antenna strip myself as my iphone5 is uk ee and i live in india.
    Everything was fine and I booted the phone.
    The power button worked like a new device... but the searching problem still remained.
    I hard resetted my phone but to no vail. even Find My phone was not turning off.
    then I forced my phone to recovery mode and downloaded iphone5,2 7.0.2,11A501_restore.ipsw from web and flashed it.
    At the start it recognised and everything was good until the "restoring iphone firmware" was stuck at the end point.
    I tried every trick on net. Even tried to downgrade.. but it was blocked.
    at the last it is either stuck at firmware or itunes unknown error (3)
    Please somebody help me to recover this PAPERWEIGHT to a phone again...

  • Windows - No Disk Error - Please help!

    Windows - No Disk Error - Please help!
    Hi,
    I have the following set up:
    * Lenovo T-61p
    * Windows XP Pro, SP 3
    * HP Photosmart 8250 printer (with nothing plugged into the various card readers, and USB slot in the printer)
    I am getting the following error:
    Windows - No Disk
    Exception Processing Message 0xc0000013 Parameters 0x75CE023C
    0x84C40C84 0x75CE023C
    I have done a lof experimenting and thru process of  elimination, and believe I have determined that this only happens when the HP Photosmart 8250 printer is plugged in to the USB slot of the computer.
    I can stop it from happening by safely removing hardware, and removing the drive that the 8250 creates on your computer when you plug it in.  In my case, this is drive E.  I'm guessing if there was something in the the various card readers, and USB slot in the printer, that's what those would be, but I don't those use those functions of the printer.
    I understand there is more at work than simply the printer, because I did not used to get this error, so some software changed as well, that is scanning all ports, and finding a drive that has no disk, and producing the error.
    A simple google search finds a lot people all over the world having this problem, and are solving it in different ways, because the suspected source is different: Norton, HP, etc.
    I have tried everything I have read, and the only thing that works was my own idea, of manually safely removing the drive the printer creates each time I plug in the printer.
    Anyone every any better, more permanent solutions?  Or know what the real root of the problem is?  What is scanning all the drives and being showing an error message because it found an empty drive?
    Thanks and Happy Holidays/New Year!

    I've been getting the same error on my 4G nano for the past week. I've had my nano for about a month and the first few weeks were fine. Tried it on 2 different computers (Vista and XP) and same problem. Tried it on a 3rd (XP) and it started ok. Problem started coming back after a day.
    I was able to find a quick fix though. I noticed that sometimes the message says something like "iexplore.exe... no disk..." even if I don't even use IE. What I do is end iexplore.exe on task manager before running iTunes and syncing my nano. I don't get the error whenever I do this, but one drawback is that the contents of my nano suddenly pops up in a window - even when disk use is not enabled.
    I've reset/restored my nano dozens and dozens of times to make sure it's clean. Leads me to believe it's a driver issue. Either that or I have a friggin malware problem I can't seem to find.
    I'll be posting updates every now and then. I'm no expert so I'm hoping an Apple expert also steps in to give some input.

  • I need the drivers for earl 2011 macbook pro 13 inch i7 4 gigs for windows 7 64 bits i tried downloading with bootcamp butt it never completes allways ends up with an error please help

    i need the drivers for earl 2011 macbook pro 13 inch i7 4 gigs for windows 7 64 bits i tried downloading with bootcamp butt it never completes allways ends up with an error please help if any one has the drivers or knows were i can download them

    Doug...
    If you don't have it for reference, the manual might come in handy > US/Boot_Camp_Install-Setup.pdf
    After it loads, Command + F to find information regarding the drivers.

  • Keep Getting Annoying Image/File Upload Error Please Help!

    I keep getting this error message - can't upload image X.png, it seems to happen with several different image - then I try to resume/retry wait some time; sometimes it works and sometimes it doesn't, getting kind of frustrating.  Please help!
    http://chefagogo.businesscatalyst.com/

    Hi
    Are you still facing the same issue ?
    It can be due to few reasons such as connectivity issues or if any update to your site is done at the same time from BC end.
    If still you are facing same error, please let me know.
    Thanks,
    Sanjit

  • Since installing the latest update on my iphone 3gs this afternoon whatsapp now says it cannot access my photos.  I have gone to settings-location services- but whatsapp is not listed in the list below.  Please help!!!!

    since installing the latest update on my iphone 3gs this afternoon whatsapp now says it cannot access my photos.  I have gone to settings-location services- but whatsapp is not listed in the list below.  Please help!!!!

    Contact Whatsapp for support.
    There is no logical expectation for Whatsapp to be listed under location services or for that to have any affect on what the app can access.

  • TS1389 I am trying to authorise a new computer. The Apple instructions are to select Authorise this computer from the itunes store menu. I can't find this in any menu. Can you please help? How do I authorise my computer?

    I am trying to authorise a new computer. Apple's instructions are to select "Authorise this computer" from the itunes store menu. I can't find this in any menu. Can you please help? How do I authorise my computer?

    Authorization and Deauthorization
    Macs:  iTunes Store- About authorization and deauthorization.
    Windows: How to Authorize or Deauthorize iTunes | PCWorld.
    In iTunes you use the Authorize This Computer or De-authorize This Computer option under the Store menu in iTunes' menubar. For Windows use the ALT-S keys to access it. Or turn on Windows 7 and 8 iTunes menus: iTunes- Turning on iTunes menus in Windows 8 and 7.
    More On De-authorizing Computers (contributed by user John Galt)
    You can de-authorize individual computers, but only by using those computers. The only other option is to "de-authorize all" from your iTunes account.
      1. Open iTunes on a computer
      2. From the Store menu, select "View my Account..."
      3. Sign in with your Apple ID and password.
      4. Under "Computer Authorizations" select "De-authorize All".
      5. Authorize each computer you still have, as you may require.
    You may only do this once per year.
    After you "de-authorize all" your authorized computers, re-authorize each one as required.
    If you have de-authorized all computers and need to do it again, but your year has not elapsed, then contact: Apple - Support - iTunes - Contact Us.

  • My iphone won't pass the connect to itunes. when i try to restore is says that there is an error. please help!

    hi my iphone is broken. it won't pass the connect to itunes. when i try to restore is says that there is an error. please help!
    thanks,
    jg2013
    <Subject Edited by Host>

    Hello, 02633. 
    Thank you for visiting Apple Support Communities. 
    If your iPhone is disabled, you will need to process the steps in the article below.
    iOS: Forgotten passcode or device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    Cheers,
    Jason H.

Maybe you are looking for