Question- Issue for productoin

Hello Experts,
                      Error 'Quantity falls below minimum stock level' in issue for production  window.What could be the reason for this ?

Hi,
I think you are maintaining the Items by warehouse level.So the Item may falls below the inventory level,So that when you are issuing the particular Item it may be falls below the Inventory level what you are maintaining.
Regards,
Rajesh
Edited by: Rajesh Chandrasekaran on Feb 5, 2009 10:43 AM
Edited by: Rajesh Chandrasekaran on Feb 5, 2009 10:44 AM

Similar Messages

  • Forgotten my security questions and cannot purcahse any apps etc. solutions on internet with rescue e-mail don't work . Have been trying to resolve this issue for 3 days now

    Forgotten my security questions and cannot purcahse any apps etc. solutions on internet with rescue e-mail don't work . Have been trying to resolve this issue for 3 days now

    If you don't have a rescue email address (or you do but aren't the receiving the email to it) then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • Item Conversion Template Issue for Oracle Migration - Copy functionality

    Hi,
    I am working on Migration project which is from Radius ERP to Oracle 11.5.10.2.
    Currently working on Item Conversion. This Item conversion having the fileds like (ORGANIZATION_ID,SEGMENT1,DESCRIPTION,ITEM_TYPE,COST_OF_SALES_ACCOUNT,SALES_ACCOUNT,ATTRIBUTE_CATEGORY,ATTRIBUTE1,ATTRIBUTE2,ATTRIBUTE3,ATTRIBUTE4,ATTRIBUTE5,ATTRIBUTE6,ATTRIBUTE7,ATTRIBUTE8,ATTRIBUTE9,ATTRIBUTE10,ATTRIBUTE11,ATTRIBUTE12,ATTRIBUTE13,ATTRIBUTE14,ATTRIBUTE15,GLOBAL_ATTRIBUTE10,REF_INVENTORY_ITEM_ID,REF_ORGANIZATION_ID).
    I have validated those fields and loaded into interfacing to Oracle Successfully in the master Org and Validated through Frontend.
    when I close the form, I will be receiving the below warning message and telling that Template id needs to be assign to the item before assigning item to the Org. The message is showing like
    "*You have not applied a template to this item, please apply a template before assigning this item to an ORG.*"
    Please find the below package which I wrote for this conversion requirement.
    The customer is saying like need to achieve the copy functionality based on the "REF_INVENTORY_ITEM_ID and REF_ORGANIZATION_ID".
    The Issue is am not able to handle the copy functionality and getting above message. kindly refer the package and suggest me where i am doing the mistake. Its high priority issue for me.
    Thanks in advance.
    CREATE OR REPLACE PACKAGE APPS.xxxx_inv_items_conv_pkg
    AS
    PROCEDURE xxx_item_conversion_proc (
    errbuf OUT VARCHAR2,
    retcode OUT VARCHAR2,
    p_org_id IN NUMBER,
    -- p_commit_point IN NUMBER,
    p_load_code IN VARCHAR2
    IS
    <<Local Variables Declaration>> <<For space limit deleted these variables>>
    CURSOR cur_item_master (pc_org_code VARCHAR2)
    IS
    SELECT itemstg.*
    FROM xxx_inv_system_items_stg itemstg
    WHERE itemstg.organization_id = pc_org_code
    AND itemstg.status_flag IS NULL;
    CURSOR cur_item_master_dup (pc_org_code VARCHAR2)
    IS
    SELECT itemstg.segment1, itemstg.organization_id
    FROM xxx_inv_system_items_stg itemstg
    WHERE itemstg.ROWID <
    (SELECT MAX (b.ROWID)
    FROM xxx_inv_system_items_stg b
    WHERE b.segment1 = itemstg.segment1
    AND b.organization_id = itemstg.organization_id
    AND b.organization_id = pc_org_code
    AND itemstg.status_flag IS NULL
    AND b.status_flag IS NULL);
    BEGIN
    IF p_load_code = 'Insert'
    THEN
    l_transaction_type := 'CREATE'; -- Default Value in I/F Table
    ELSIF p_load_code = 'Update'
    THEN
    l_transaction_type := 'UPDATE'; -- Default Value in I/F Table
    END IF;
    DBMS_OUTPUT.put_line ( 'Validation Starts At :'
    || TO_CHAR (SYSDATE, 'DD-MON-YYYY HH24:MI:SS')
    --Checking for Duplicate Records items
    BEGIN
    UPDATE xxx_inv_system_items_stg a
    SET a.status_flag = 'E',
    a.error_message = 'Duplicate Record'
    WHERE a.ROWID >
    ANY (SELECT b.ROWID
    FROM xxx_inv_system_items_stg b
    WHERE a.segment1 = b.segment1
    AND a.organization_id = b.organization_id)
    AND a.organization_id = p_org_id
    AND a.status_flag IS NULL;
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line ('Exception in updating duplicates'
    || SQLERRM
    END;
    DBMS_OUTPUT.put_line ('CheckPoint: Duplicate Record');
    BEGIN
    SELECT organization_id
    INTO l_organization_id
    FROM org_organization_definitions
    WHERE organization_id = p_org_id;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    DBMS_OUTPUT.PUT_LINE(p_org_id||' Org Does Not Exist');
    -- p_retcode := '2';
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.PUT_LINE('Exception in Getting Org Id'||'Cannot Proceed');
    -- p_retcode := '2';
    END ;
    DBMS_OUTPUT.put_line ('CheckPoint: Orgcode' || l_organization_id);
    /* IF p_retcode = '2'
    THEN
    RETURN;
    END IF;*/
    --Block             : Setting Master and Validation Orgs Flags
    BEGIN
    SELECT DECODE (master_organization_id, l_organization_id, 'Y', 'N'),
    master_organization_id
    INTO l_master_org,
    l_master_org_id
    FROM mtl_parameters
    WHERE organization_id = l_organization_id;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_master_org := 'N';
    l_master_org_id := NULL;
    DBMS_OUTPUT.PUT_LINE(p_org_id||' Org Does Not Exist');
    END ;
    DBMS_OUTPUT.put_line ('master_organization_id');
    SELECT fnd_profile.VALUE ('USER_ID')
    INTO l_user_id
    FROM DUAL;
    -- Block : Set the SET_PROCESS_ID
    l_set_process_id := l_organization_id;
    l_insert_count := 0;
    LOOP
    BEGIN
    SELECT COUNT (segment1)
    INTO l_insert_count
    FROM mtl_system_items_interface
    WHERE set_process_id = l_set_process_id
    AND transaction_type = l_transaction_type
    AND process_flag = 1;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_insert_count := 0;
    END;
    EXIT WHEN l_insert_count = 0;
    l_set_process_id := l_set_process_id + 10;
    END LOOP;
    DBMS_OUTPUT.put_line ('SET PROCESS ID -l_insert_count ' || l_insert_count);
    IF p_load_code = 'Insert'
    THEN
    BEGIN
    FOR recitem_data IN cur_item_master_dup (p_org_id)
    LOOP
    UPDATE xxx_inv_system_items_stg
    SET status_flag = l_processed_flag,
    error_message = l_error_message
    WHERE segment1 = recitem_data.segment1
    AND organization_id = recitem_data.organization_id
    AND status_flag IS NULL;
    COMMIT;
    END LOOP;
    EXCEPTION
    WHEN OTHERS
    THEN
    DBMS_OUTPUT.put_line ( 'Update of Duplicates Failed : '
    || SQLCODE
    || '--'
    || SQLERRM
    END ;
    END IF;
    FOR recitem_data IN cur_item_master (p_org_id)
    LOOP
    <<Local Variables Declaration>> <<For space limit deleted these variables>>
    IF p_load_code = 'Update'
    THEN
    l_error_message := 'Update Mode' || l_error_delimiter;
    END IF;
    --l_count := -1;
    BEGIN
    DBMS_OUTPUT.put_line ('CheckPoint: ItemValidationStart');
    SELECT DISTINCT inventory_item_id,
    restrict_subinventories_code,
    restrict_locators_code
    INTO l_inventory_item_id,
    l_restrict_subinventories_code,
    l_restrict_locators_code
    FROM apps.mtl_system_items_b msi
    WHERE msi.organization_id = l_organization_id
    AND msi.segment1 = UPPER (recitem_data.segment1);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_count := 0;
    -- l_processed_flag := 'F';
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP' || l_inventory_item_id||'-'||l_processed_flag);
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP' || l_inventory_item_id||'-'||recitem_data.ref_inventory_item_id);
    WHEN OTHERS
    THEN
    l_count := -1;
    -- l_processed_flag := 'F';
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP' || l_inventory_item_id||'-'||l_processed_flag);
    END ;
    DBMS_OUTPUT.put_line ('inventory_item_id - AFTER MAIN LOOP'||recitem_data.ref_inventory_item_id);
    IF l_count = -1
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Exception - Checking Item already Present'
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('Exception - Checking Item already Present'||l_processed_flag);
    ELSIF (l_count > 0 AND p_load_code = 'Insert')
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Item Already Exists In '
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('Exception - Checking Item already Present1'||l_processed_flag);
    ELSIF (l_count = 0 AND p_load_code = 'Update')
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Item Not Present In '
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('Exception - Checking Item already Present2'||l_processed_flag);
    END IF;
    BEGIN
    SELECT count(*)
    INTO l_seg_count
    FROM apps.mtl_system_items_b msi
    WHERE msi.organization_id = l_organization_id
    AND msi.segment1 = UPPER (recitem_data.segment1);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_seg_count := 0;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Item Not Present In Oracle'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('inventory_item_id - l_seg_count ' ||l_seg_count||'-'||l_processed_flag );
    WHEN OTHERS
    THEN
    l_seg_count := -1;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Item Not Present In Oracle'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    END ;
    IF p_load_code = 'Insert'
    THEN
    IF l_organization_id != l_master_org_id
    THEN
    BEGIN
    SELECT COUNT (1)
    INTO l_org_item_count
    FROM apps.mtl_system_items_b msi
    WHERE msi.organization_id = l_master_org_id
    AND msi.segment1 = UPPER (recitem_data.segment1);
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_org_item_count := 0;
    DBMS_OUTPUT.put_line ('l_org_item_count ' ||l_org_item_count||'-'||l_processed_flag );
    WHEN OTHERS
    THEN
    l_org_item_count := -1;
    END ;
    IF l_org_item_count = -1
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Exception - Checking Item in Master '
    || l_error_delimiter;
    ELSIF l_org_item_count = 0
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Item Does Not Exist in Master '
    || l_error_delimiter;
    END IF;
    END IF;
    END IF;
    DBMS_OUTPUT.put_line ( 'CheckPoint: Iteminmasterorg'
    || l_org_item_count
    IF (recitem_data.description IS NULL AND p_load_code = 'Insert')
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message || 'Description is NULL' || l_error_delimiter;
    END IF;
    IF (recitem_data.sales_account IS NOT NULL)
    THEN
    BEGIN
    SELECT code_combination_id
    INTO l_sales_account
    FROM gl_code_combinations_kfv
    WHERE code_combination_id= recitem_data.sales_account;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    -- l_processed_flag := 'F'; --QUESTION
    l_error_message :=
    l_error_message
    || 'Sales Account Not Setup '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'CheckPoint: Salesacct_Validation'
    || l_sales_account||'-'||l_processed_flag
    WHEN OTHERS
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Sales Account Exception '
    || SQLERRM
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'CheckPoint: Salesacct_Validation'
    || l_sales_account||'-'||l_processed_flag
    END ;
    END IF;
    IF (recitem_data.cost_of_sales_account IS NOT NULL)
    THEN
    BEGIN
    SELECT code_combination_id
    INTO l_cost_of_sales_account
    FROM gl_code_combinations_kfv
    WHERE code_combination_id =
    recitem_data.cost_of_sales_account;
    EXCEPTION
    WHEN NO_DATA_FOUND
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'COGS Account Not Setup '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'l_cost_of_sales_account'
    || l_cost_of_sales_account||'-'||l_processed_flag
    WHEN OTHERS
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'COGS Account Exception '
    || SQLERRM
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ( 'l_cost_of_sales_account'
    || l_cost_of_sales_account||'-'||l_processed_flag
    END check_cogs_account;
    END IF;
    BEGIN
    select distinct organization_code
    into l_ref_org_code
    from org_organization_definitions
    where organization_id = recitem_data.ref_organization_id ;
    EXCEPTION
    WHEN OTHERS THEN
    l_ref_org_code:= NULL;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Reference Org Not Present'
    || p_org_id
    || ' Organization '
    || l_error_delimiter ;
    DBMS_OUTPUT.put_line ('l_ref_org_code'|| l_ref_org_code||'-'||l_processed_flag);
    END;
    BEGIN
    select concatenated_segments
    into l_ref_inventory_item_code
    from mtl_system_items_kfv
    where inventory_item_id = recitem_data.ref_inventory_item_id
    and organization_id = recitem_data.ref_organization_id ;
    EXCEPTION
    WHEN OTHERS THEN
    l_ref_inventory_item_code :=NULL;
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Reference Item Not Present'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    DBMS_OUTPUT.put_line ('l_ref_inventory_item_code'|| l_ref_inventory_item_code||'-'||l_processed_flag);
    END;
    IF (l_master_org = 'N' AND p_load_code = 'Insert')
    THEN
    BEGIN
    SELECT count(*)
    INTO l_description_count
    FROM mtl_system_items_tl
    WHERE organization_id = l_master_org_id
    AND inventory_item_id =
    (SELECT inventory_item_id
    FROM mtl_system_items_b
    WHERE organization_id = l_master_org_id
    AND segment1 = recitem_data.segment1);
    END ;
    IF l_description_count > 0 THEN
    l_processed_flag:='F';
    l_error_message :=
    l_error_message
    || 'Item Description Not Present'
    || p_org_id
    || ' Organization '
    || l_error_delimiter;
    END IF;
    END IF;
    IF l_processed_flag = 'S'
    THEN
    BEGIN
    INSERT INTO mtl_system_items_interface
    (organization_id,
    segment1,
    description,
    ITEM_TYPE,
    COST_OF_SALES_ACCOUNT,
    SALES_ACCOUNT,
    attribute_category,
    set_process_id,
    transaction_type,
    process_flag,
    copy_organization_code,
    copy_item_number,
    creation_date,
    created_by,
    last_updated_by,
    last_update_date
    --attribute_category
    , attribute1
    , attribute2
    ,attribute3
    ,attribute4
    ,attribute5
    ,attribute6
    ,attribute7
    ,attribute8
    ,attribute9
    ,attribute10
    ,attribute11
    ,attribute12
    ,attribute13
    ,attribute14
    ,attribute15
    ,global_attribute10
    VALUES (l_organization_id,
    recitem_data.segment1,
    recitem_data.description,
    recitem_data.ITEM_TYPE,
    recitem_data.COST_OF_SALES_ACCOUNT,
    recitem_data.SALES_ACCOUNT,
    recitem_data.ATTRIBUTE_CATEGORY,
    l_set_process_id,
    l_transaction_type, --,l_transaction_type
    l_process_flag,
    l_ref_org_code,
    l_ref_inventory_item_code,
    SYSDATE, l_user_id,
    l_user_id, SYSDATE
    -- l_attribute_category
    ,recitem_data.attribute1
    ,recitem_data.attribute2
    ,recitem_data.attribute3
    ,recitem_data.attribute4
    ,recitem_data.attribute5
    ,recitem_data.attribute6
    ,recitem_data.attribute7
    , recitem_data.attribute8
    ,recitem_data.attribute9
    , recitem_data.attribute10
    ,recitem_data.attribute11
    ,recitem_data.attribute12
    ,recitem_data.attribute13
    ,recitem_data.attribute14
    ,recitem_data.attribute15
    , substr(recitem_data.global_attribute10,1,length(recitem_data.global_attribute10)-1) --recitem_data.global_attribute10
    l_insert_count := l_insert_count + 1;
    /* IF (l_insert_count = NVL (p_commit_point, 10000))
    THEN
    -- l_set_process_id := l_set_process_id + 10; -- REVERT BACK CHANGE
    l_insert_count := 0;
    END IF;
    EXCEPTION
    WHEN OTHERS
    THEN
    l_processed_flag := 'F';
    l_error_message :=
    l_error_message
    || 'Error in Inserting Item '
    || SQLERRM
    || l_error_delimiter;
    END ;
    COMMIT;
    DBMS_OUTPUT.put_line ('CheckPoint: Insertion Completed in Intfacetable');
    END IF;
    BEGIN
    UPDATE xxx_inv_system_items_stg
    SET status_flag = l_processed_flag,
    error_message = l_error_message
    WHERE segment1 = recitem_data.segment1
    AND organization_id = recitem_data.organization_id
    AND status_flag IS NULL;
    COMMIT;
    DBMS_OUTPUT.put_line ('Error Message'||l_error_message);
    EXCEPTION
    WHEN OTHERS
    THEN
    fnd_file.put_line (fnd_file.LOG,
    'Error:Updating Item:'
    || SQLCODE
    || '-'
    || SQLERRM
    END;
    END LOOP; --FOR recitem_data IN cur_item_master
    DBMS_OUTPUT.put_line ( 'Validation Ends At :'
    || TO_CHAR (SYSDATE, 'DD-MON-YYYY HH24:MI:SS')
    DBMS_OUTPUT.put_line ('Number of records inserted into Table Successfully -->'|| l_insert_count);
    END;
    END xxxx_inv_items_conv_pkg;
    Edited by: 896170 on Apr 12, 2013 11:58 PM

    Issue got solved... changed the PO line amount as:
    <?xdoxslt:set_variable($_XDOCTX,'line_amt',xdoxslt:to_number(LINE_AMOUNT))?>
    Reference :Syntax for 'to_number'
    Regards
    Manikanta Panigrahi

  • Goods Issue for a Return Outbound Delivery for both Sales Returns

    Hi gurus..
    tell me the approch for the following development....
    custom transaction to perform a Goods Issue for a Return Outbound Delivery for both Sales Returns and Consignment Returns (Pickups) process within a lean warehouse in SAP.
    it is vry urgnt
    thnks

    I seem to have found the information I required here:
    http://wiki.sdn.sap.com/wiki/display/Snippets/Simulating+the+Sales+Cycle+with+BAPI's
    I'm going to keep this post active because I'd still like answers to my questions and any advice that you might be willing to share in regards to what I am trying to do.
    Edited by: Mikael Nensén on May 18, 2011 3:52 PM

  • Memory Leak Issue for Adobe Access iOS API

    Hi,
    We are trying to develop an iOS app (with ARC enabled) using Adobe Acces API 4.0 and we have identified that the function [drmManager createDRMSession] has memory leak.
    DRMSESSION = [drmManager createDRMSession:METADATA playlist:PLAYLIST error:nil complete:^() {}];
    We are using:
    DRMSESSION  -> weak
    METADATA    ->strong  (as need to share within object)
    PLAYLIST       ->strong  (as need to share within object)
    After calling this function, the object is unable to dealloc and most of the leaking object related to networking (such as CFNetwork...)
    Is this a known issue for the Adobe Access iOS API or we are missing some key steps.
    Any suggestions is appreciated. Thanks in advance.

    ans0600, sorry about that, I read Hiroshi's forward too quickly.  I've done a little digging and have come up with two work-arounds:
    Create a file with ARC disabled to translate the returned object to be an autorelease
    declare the returned DRMSession as __unsafe_unretained and use CFRelease, as noted on stackexchange
    In the future we may change this method to return an autoreleased object to avoid this issue.  Let us know if you have any further questions!

  • Wireless loss issues for over a year now.

    Hello there all.
    So I kinda give up with BT in terms of support any longer, their answer to our issue is to continue to send out a replacement hub 3 and all that does is nothing.
    The issue is this, our wireless will just randomly explode and start going haywire, it'll go off and on off and on overloading all wireless connections to it. For example, when this happens I can sit and watch on any wireless device in the household, all the avaliable wireless connections going away and coming back. Just open your wireless list, that shows all wireless locations you can connect to, and then imagine all of them going off and on like a flickering light.
    We've watched this happen on every single device we own, we've even changed the wireless cards in the computers and still to no avail, as I said above BT's 'solution' to this problem is to just keep sending out 'brand new' (Yeah, right, they are all just refurbished gen 1's and I've checked each one for that) BT Hub 3's. This just isn't fixing our problem and seeing as their support just flat out doesn't care to send out an engineer to fix this I turn to you.
    We've had this issue for over a year now, and it's infuriating as when it happens no wireless device can use the internet. Too note, we don't lose the wireless connection to the hub, oh no. But we lose the internet through it. 
    It's like an electrical capaciter reaching over it's limit, parts lose power then others come back on then they go off and others go on. It's like the wireless is being overloaded at these points in time and we cannot pin point it, because ther'es no pattern to it. It's all random..
    If anyone can help, that would be amazing!
    -Chris.

    if you have had a few replacement HH3s and still the same problem then it is unlikely all of the HHs have the exact same fault so maybe you need to look nearer to home in that there is something causing interference to your wifi signal
    have you tried moving the router to a different location to see if that makes any difference?
    If you like a post, or want to say thanks for a helpful answer, please click on the Ratings star on the left-hand side of the post.
    If someone answers your question correctly please let other members know by clicking on ’Mark as Accepted Solution’.

  • W540 Questions & Issues

    Hi Folks,
    Questions & Issues:
    1.  Where is the Break key on the W540?
    2.  My W540 locks up about once every two days - there does not appear to be any common task that causes this.  When it lock nothing works, not Ctrl+Alt+Del, I must power off with the power button.  Any comments or suggestions?
    Observations:
    I'm not a fan of the new keyboard.  For example, the F1..F12 keys are difficult to read (the F parts, not the pictures) and the off center feel leads to difficult typing (at least for me). 
    TIA

    Hi SD
    1. Try Fn+B for Break
    Refer to this post for more information.
    1.2.
    2. Go to Start > Lenovo > System Update. Install all Critical and Recommended Updates.
    3. If No.2 does not work, go to Task Manager > Startup > Try uncheck a few which is optional. Do not uncheck Lenovo Stuffs and Antivirus.
    Peter
    ThinkPad W520 | ThinkCentre E73 SFF | IdeaPad K1 | IdeaPad Yoga 11s | Miix 2 10" | 3000 Y300
    Give kudos to reward people for their assistance | Mark thread solved if the solution works | Please do not send me an e-mail regarding technical questions | I am not an Lenovo employee
    =====================================
    Dolby ; IdeaPad Slate Tablet

  • PSS: Password Self Service: No "Admin Defined Questions" available for security question registration

    Dear Experts,
    I have configured PSS as below,
    Activated "PSS" in connector configuration.
    Configure PSS as per SAP note.
    Configured 2 Questions and activated them.
    Maintained "Service User" in 10 services mentioned in SAP note
    After this when I try to register new user with "Admin Defined Questions" I do not get any question to select, it comes as a blank field. But I can register with user defined questions and can reset password as well as get mail for the same too.
    Questions:
    How to deactivate "User Defined Questions" option?
    Why I am not getting "Admin Defined Questions" for security question registration?
    Did anybody faced the same issue?
    Thanks in advance,
    BR,
    Mangesh

    Hi Friends,
    Any advice on the same.
    I have three issues for PSS,
    Admin question are not visible
    set option "Challenge response"
    Set admin questions and marked them active
    No system displayed during password reset
    Marked connector as PSS activated
    User available in backend as this is allow me to login for users available in backend system through end user logon page
    GRACUSER and GRACUSRCONN has the entry
    How to deactivate option "user defined question" for all users
    Any suggestions. I have tried options suggested on community through threads but no luck till.
    Raised it to SAP now but if anyone can suggest would be great so I would try it.
    BR,
    Mangesh

  • Language issue for sold to party in sales order

    Hi,
    we have a sold to party A which is in china. the address for the same is maintained in local version and inetrnational version while creating customer master for A.
    we aslo have a sold to party B, which is in Greece. the address for the same is maintained in local version and inetrnational version while creating customer master for B.
    now we logon to sap and the language we select is Italian. we then go to t code Va01, then the first screen shows everything in Italian which is ok. we then enter order type and sales area. we then go to next screen and enter the sold to party A and we press enter. now the issue is the address against A is shown in chinese characters and not Latin ......... why so ??? we need the characters to be shown in latin and not chinese ?
    if we make a sales order for sold to party B ( logged into sap in Italian language), then the address appears in Latin and not greece ..so this is ok !
    but my question is why this is not happening for sold to party A ???  what settings i need to check in customer master and other settings. In fact how the language management works ??? and how we maintain the local and international version ? . can someone explain by taking my above example and also give possible solution to my question above for sold to party A
    regds

    Hi,
    A cutomer displaying  address in chinesse, even if you loging through Italian language,
    I think reseon for this is you had created customer master in chinesse language,
    Kapil

  • Conflict checking issues for package XYZ on zones a, b, c

    Hello.
    I'm trying to install postfix from Blastwave on a Solaris 10 U4 Sparc system with two non-global zones installed. To do that, I do:
    adm@winds02 ~ $ sudo pkg-get -i postfix
    No existing install of CSWpostfix found. Installing...
    Pre-existing local file postfix-2.2.8,REV=2006.03.13-SunOS5.8-sparc-CSW.pkg.gz matches checksum
    Keeping existing file
    Analysing special files...
    ## Verifying package <CSWpostfix> dependencies in zone <ldap-client>
    ## Verifying package <CSWpostfix> dependencies in zone <ldap-server>
    Conflict checking issues for package <CSWpostfix> on zones
    <ldap-client, ldap-server>.
    Do you want to continue with the installation of <CSWpostfix> [y,n,?] How do I find out, which issues there are supposed to be?
    Thanks,
    Alexander

    You could also try using an admin file that should answer those questions for you
    I usually use something like:
    mail=
    instance=unique
    partial=ask
    runlevel=ask
    idepend=nocheck
    rdepend=ask
    space=ask
    setuid=nocheck
    conflict=nocheck
    action=nocheck
    basedir=default

  • Conflict checking issues for package

    Trying to install SMCsubv144 on a server in the global zone. I get the following:
    root@xxxxxxx(pts/3):/tmp# pkgadd -d ./subversion-1.4.4-sol10-sparc-local
    The following packages are available:
    1 SMCsubv144 subversion
    (sparc) 1.4.4
    Select package(s) you wish to process (or 'all' to process
    all packages). (default: all) [?,??,q]:
    ## Verifying package <SMCsubv144> dependencies in zone <xxxxxx1>
    ## Verifying package <SMCsubv144> dependencies in zone <xxxxxx2>
    ## Verifying package <SMCsubv144> dependencies in zone <xxxxxx3>
    ## Verifying package <SMCsubv144> dependencies in zone <xxxxxx4>
    ## Verifying package <SMCsubv144> dependencies in zone <xxxxxx5>
    ## Verifying package <SMCsubv144> dependencies in zone <xxxxxx6>
    Conflict checking issues for package <SMCsubv144> on zones <xxxxxx1, xxxxxx2, xxxxxx3, xxxxxx4, xxxxxx5, xxxxxx6>.
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] n
    Installation of <SMCsubv144> was terminated due to user request.
    When I choose y to continue, I get into a loop of the following questions:
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/bin <package> on SMCsubv144 <zone>
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/doc <package> on SMCsubv144 <zone>
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/include <package> on SMCsubv144
    <zone>
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/lib <package> on SMCsubv144 <zone>
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/man <package> on SMCsubv144 <zone>
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/man/man1 <package> on SMCsubv144
    <zone>
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/man/man5 <package> on SMCsubv144
    <zone>
    Do you want to continue with the installation of <SMCsubv144> [y,n,?] y
    attribute change for /usr/local/man/man8 <package> on SMCsubv144
    <zone>
    and that goes on and on until I answer n. And never specifies which zone it's talking about...just <zone>.
    I've successfully installed the same pkg on a non-zoned server. Also tried SMCsubv143 and got the same error. So the pkg is ok, it appears a problem with the zones and/or /usr/local.
    Thanks for any info.
    mk

    You could also try using an admin file that should answer those questions for you
    I usually use something like:
    mail=
    instance=unique
    partial=ask
    runlevel=ask
    idepend=nocheck
    rdepend=ask
    space=ask
    setuid=nocheck
    conflict=nocheck
    action=nocheck
    basedir=default

  • ... several questionable issues ...

    Hello everyone,
    Issue 1 - Is there a search function to narrow the 12000 topics to handful I can manage?
    Issue 2 - Is LightRoom a better (faster, more specific with metadata, and speedier) than Bridge for a cataloging/browsing tool?
    Issue 3 - In LR, we've discovered we can catalog audio interviews by using the .wav files and giving them the same name as the image of the person being interviewed. (JimmyPic01.tif is paired with JimmyPic01.wav, JimmyPic02.tif is paired with JimmyPic02.wav - we give the image the metadata about the date and time of the interview, etc.) Now, is there a limit to the size of the .wav file associated with an image? Will our researchers be able to click on the .wav file and listen to the entire interview? Is it possible to alter the program used to open the .wav files in order to permit fast forward and replay functions? Does the audio player in LR permit those functions?
    Issue 4 - Does Adobe build a catalog package with the elegance of LR (pleasant-looking interfaces and speedy searches) and the simplicity and power of Bridge (catalog audio, video, and documents)? Does LR permit the creation of metadata fields as easily as Bridge?
    I guess many of these questions will get answered if I simply install a copy and play a while. . .?
    Okay . . . I'm off to see the download wizard. . .
    I'll come back and let everyone know what I find as well as see who contributes to my quest. . . (grin)
    Until that time. . . Earl J.

    Hello Wolf,
    Horace Walpole once stated
    The whole [Scotch] nation hitherto has been void of wit and humour, and even incapable of relishing it.
    So, perhaps this Lightroom forum is more like Scotland than is evident at first glance... (grin) I'm not familiar with the source of your quote... most professionals don't get that status until they have practiced their craft for many years... so, consider me a
    professional-in-training ... or
    amateur, if you like.
    Yet, another misunderstanding on the readers' part... I am fully aware that my comments here on the forum would draw as much attention from Adobe to ban me than my opinions on global warming would attract the attention of the new administration in DC... I was addressing the three initial responders to my original post and inviting them to do what they will to avoid my intrusions.
    My questionable issues revolved around issues of the program which caused me to ask questions for further clarification - there were never any
    objectionable issues raised... simply a few questionable ones.
    I have no intention of letting anyone drive me away while my curiosity for the program is still fresh and vibrant. I'll continue to be me and will permit others to be who they are ... I have no expectations about any aspect of these forums except that most subscribers come here 1 -
    to learn and 2 -
    to help. Finding and making friends might be an ancillary benefit, but for the most part, I would suspect not a primary objective.
    I base my knowledge on forum, email distribution list, and listserv memberships as the creator/moderator of a librarian forum that has recently moved past its decade-old mark... and the current host of several social networks.
    So, although I am new to
    this forum, I am not new to participating in them. I can appreciate the fact that many may not, and will not, accept my approaches to bulletin boards and email interactions; however, it's a big forum, and I am not required, or inclined, to follow any personal preference demands, content restrictions, or behavioral limitations of anyone outside the Terms of Use.
    So, I'll do the best I can at adjusting and adapting in order to get help and give help - but for those who demand the rest of us adjust to their expectations and behavioral norms, they'll have to do a bit of adjusting and adapting themselves ... if nothing else, just to demonstrate they
    can do something that they demand of others.
    @Wolf, thanks for the advice and the encouragement ... I will consider it seriously.
    Thanks for taking the time to respond and compose such a considerate response... I'm a retired Army paratrooper, so
    bail out has such a negative connotation to me - even before the economic crisis began - so I'm not about to leave until all the questions I have are answered.
    Until that time. . . Earl J.

  • Updating materials issued for  production thru movement type

    hi
    we are using repetitive manufacturing scenario, and we are using back flush,  how to find out the materials issued for production thru movement types, from which tables can i get the data
    from AUFK  i am getting the movement types and the order number, and i am unable to find out material numbers.
    the requirement is need to update the costs of the materials based on the movement types for the production

    Hi
    I dont know if this question falls under the category of "Asking basic questions"
    You can use MB51 to get the desired info.. It will give you the Material Consumed +  mvt type (261) and Order where the Material is consumed
    br, Ajay M

  • Goods issue for Reservation

    Hi Gurus,
    I have a question in Material Reservation.Can any expert guide me on below reuirement?
    (i)Can we restrict the goods issue for a material when there is Material reservation exists for material on that day.For Ex.
    Stock-100pcs,reservation on that day -70pcs,
    Goods issue of 40pcs before issuing for reservation should throw me Error.
    (ii)Any Message number for this process?
    (iii)Any user parameter to assign to user for Goods issue only with reference to Reservation?
    Points will be rewarded.
    Regards,
    Khasim

    Hi,
    I had the same requirement at a client where we were implementing. This is how I solved it:
    1) I activated the user exit (not sure now since it was about 6 years back, I think it was MBCF0002) and it would check whether the goods issue was against a reservation or not. If yes, then it would go through. If no, it would check the open reservations which were due for the day and compare quantities. If the remaining stock was not enough to satisfy the reservations, it would give a warning. This was originally made error, then changed to warning when we found that the system prevented emergency issues. Also, people made reservation for higher quantity than required - by mistake in some case and for safety in most cases - just to ensure that they got the required stock even if someone issued out of turn.
    2) Answered in 1. No standard message
    3) No standard parameter. However you can create your own (your ABAP person will know) and check it in the above issue.
    Lakshman

  • Syncing Audio with Merge Clips option and OMF export question/issue

    Hi,
    In the past when I've edited video, when it came to syncing audio I always did it manually.  This time, using Premiere Pro CC, I used the merge clips option, to speed up the syncing audio process, which was a huge time saver with excellent results.
    The question/issue I have..is that when I get my OMF exported for my sound editor, will this screw anything up, since on the project file, it doesn't use the original audio file, but the one that was merged.  And in the project list, I don't even need to have the original audio file listed, since it's already been merged into a clip, which I used in the project.  I know it's the same file used, but will it mess anything up since a merged clip audio was used instead of just dragging the original track onto the timeline? 
    - Ken

    A good way to know for sure (and therefore feel comfortable that you're doing the right thing) is to do a test OMF export, then open this in Audition. This ill show you exactly what you're exporting.

Maybe you are looking for

  • Decimals upto 2 in alv report

    Hi to all abapers, I have to show only upto 2 decimals in the field of an alv report but it is of type p and decimals 4.I dont want to change its type to 2 decimals due to some calculations.So can we show upto 2 decimals in the report? Thanks in Adva

  • Mac App Store Purchase Section All Changed From Open to Install

    Recent update to 10.10.3 Yosemite The MacApp Store purchased section changed from "OPEN" to "INSTALL" as shown in my screenshot below Any suggestions??

  • Transfer of music ??

    I have music on my old lap top also backed up onto an external hard drive and on my ipod classic. I now have a new computer and iphone. How do I get the music across to my new computer? My old laptop will not update the itunes software. I have downlo

  • How to get bytes[] using jni functions

    I am new to JNI and have a question. I have a java class which returns back bytes[] I have the class jclass for the object and the jmethodid bytesMethodID which is mapped like this: bytesMethodID = (*env)->GetMethodID(env, objcls, "bytes", "()[B"); n

  • Rollover images on Apple wiki

    Does the Apple wiki allow the use of rollover images? It keeps changing the html code for me. Is there another way to have a rollover image on the Apple wiki? Thanks.