Populate list issue?

Hi,
I am using form 6i, the following coding compiling fine and executing fine but all (about 30 poplist) Empty.
What Happening?
Loop
          sqltxt := 'Select '||:System.Current_item||','||:System.Current_item||
            ' from item_master_base where destination = '''||:cnt_blk.destination||
            ''' and Eqpt_no_name = '''||:cnt_blk.Eqpt_no_name||''' and item = '''||:cnt_blk.Item||
            ' and '||:global.Firing_item||' = '''||:Global.Firing_value||'''';
       Msg(Sqltxt);    
       Rg1 := create_Group_From_Query('Q1',sqltxt);
       n := populate_Group(Rg1);    
       Populate_list(:System.Cursor_Item,'Q1');
        Exit When :System.Current_item = 'PLANT';
        Next_Item;
  End Loop;kanish

Yes defently, What actually i doing i will explain the steps
If :Item_Master_Base.Size1 Is Not Null Then
begin
:global.whe:=test3(:global.whe,'size1');
:global.whe:=:global.whe||' AND size1='||chr(39)||:item_master_base.size1||chr(39);
               go_block('ITEM_MASTER_BASE1');
               set_block_property('ITEM_MASTER_BASE1',default_where,:global.whe);
               set_block_property('ITEM_MASTER_BASE1',update_allowed,property_false);
               execute_query(no_validate);
               :global.Firing_item := substr(:System.Trigger_item,Instr(:System.Trigger_Item,'.')+1);
               :global.Firing_value := :Item_Master_base.Size1;
               Clearing_list_values;
               Frame_list;               
               GO_iTEM('ITEM_MASTER_BASE1.ITEM_CODE');               
end;
Else
     Buildingwhere;
     If :Global.BWhere is Null Then
        :Global.whe := :Global.Orgwhe;       
     Else
           :Global.whe := :Global.OrgWhe||:Global.Bwhere;
     End if;
     go_block('ITEM_MASTER_BASE1');
     set_block_property('ITEM_MASTER_BASE1',default_where,:global.whe);
     set_block_property('ITEM_MASTER_BASE1',update_allowed,property_false);
     execute_query(no_validate);
     :global.Firing_item := substr(:System.Trigger_item,Instr(:System.Trigger_Item,'.')+1);
     :global.Firing_value := :Item_Master_base.Size1;
     GO_iTEM('ITEM_MASTER_BASE1.ITEM_CODE');
End if;So the above code is working under when-list-changed. See the above code
Clearing_list_values;
Frame_list;The cliearing_list_values do the clear_list function using clear_list to the all poplist.
The i am calling Frame_list procedure.
PROCEDURE Frame_list IS
sqltxt varchar2(1000);
Rg1 RecordGroup;
n number;
BEGIN
  Go_block('Item_Master_Base');
  Loop
          sqltxt := 'Select distinct '||:System.Current_item||','||:System.Current_item||
            ' from item_master_base where destination = '''||:cnt_blk.destination||
            ''' and Eqpt_no_name = '''||:cnt_blk.Eqpt_no_name||''' and item = '''||:cnt_blk.Item||
            ' and '||:global.Firing_item||' = '''||:Global.Firing_value||'''';      
       Rg1 := create_Group_From_Query('Q1',sqltxt);
       n := populate_Group(Rg1);    
       Populate_list(:System.Cursor_Item,'Q1');      
        Exit When :System.Current_item = 'PLANT';
        Message(:System.Current_item);
        Next_Item;
  End Loop;
END; Nothing item will be add in the any poplist in the block. Please help me.
kanish

Similar Messages

  • ITunes missing from Media Browser -- "open itunes to populate list"

    I am on a MacBook Pro 10.7.3 running GarageBand '11 6.0.4 and all of the sudden no tracks will display under Audio in the Media Browser (Photos and Movies still appear). No tracks from either iTunes or GB show up. This is confusing as I have been using GB to make podcast/music mixes for more than 5 years and I haven't changed any settings or done anything different, but now I get the message "open itunes to populate list" or "To see GB songs here, open GB to edit and save your music."
    Also, for quite some time I have been unable to go the alternative route of dragging tracks directly from iTunes and dropping them on to the timeline in GB -- that used to work, but mysteriously stopped, so I am dependent on the Media Browser for importing music.
    I read thru the forums and tried the advice given to someone this was happening to in Final Cut -- recreating iTunes .xml file. Did that, still no tracks display.
    Other advice says to reinstall GB or iLife altogether -- I hope to avoid this, but if I need to go this route, how do I reinstall GB w/o a disk? Can I do it through App Store and will it recognize that I have already purchased it?
    I am dying to be able to get back in to my music mix making in GB, so thanks in advance.

    moontroll wrote:
    unable to go the alternative route of dragging tracks directly from iTunes {...} I am dependent on the Media Browser for importing music.
    another way:
    http://www.bulletsandbones.com/GB/GBFAQ.html#importfromitunes
    (Let the page FULLY load. The link to your answer is at the top of your screen)
    moontroll wrote:
    how do I reinstall GB w/o a disk?
    you can't, you'd need to find the DVD
    moontroll wrote:
    Can I do it through App Store and will it recognize that I have already purchased it?
    no, it'll only recognize your purchase if it was through the app store

  • How to populate list component via xml file?

    There is a TextArea component that should show the name and
    the description of the item selected in the list component. But I
    dont know how to populate list with external XML and what should be
    the coding in flash as well as what should be written in the XML.
    Please help.

    Here's an xml file listing a couple of brother comedy teams:
    <?xml version="1.0" encoding="UTF-8"?>
    <team>
    <brothers>
    <Marx>
    <name>Groucho</name>
    <name>Chico</name>
    <name>Harpo</name>
    <name>Zeppo</name>
    <name>Gummo</name>
    </Marx>
    <Howard>
    <name>Moe</name>
    <name>Curly</name>
    <name>Shemp</name>
    </Howard>
    </brothers>
    </team>
    Open a new .fla and save it in the same folder as the .xml
    file. Place a List Component on the Stage and name it (in this
    case, "comicTeams_list"). In the first frame write the following
    ActionScript:
    //create XML object and load external xml file
    var broList:XML = new XML();
    broList.ignoreWhite = true;
    broList.onLoad = processList; // this is a function that will
    be written below
    broList.load("populateList.xml");
    function processList(success:Boolean):Void{
    if(success){
    loadList();
    }else{
    trace("Load failure");
    function loadList():Void{
    var broName:String;
    var listEntries =
    broList.firstChild.childNodes[0].childNodes[0].childNodes.length;
    for(var i:Number = 0;i<listEntries;i++){
    broName =
    broList.firstChild.childNodes[0].childNodes[0].childNodes
    .childNodes[0].nodeValue;
    trace(broName);
    comicTeams_list.addItem(broName);
    //to make something happen when you click on a name in the
    List, create a Listener and function
    var broListListener:Object = new Object();
    broListListener.change = someAction; //"someAction" is a
    function to be written shortly
    //add the Listener to the List
    comicTeams_list.addEventListener("change", broListListener);
    function someAction(evtObj:Object):Void{
    var pickedBrother:String = evtObj.target.selectedItem.label;
    //write actions here, referencing pickedBrother variable
    The names of the Marx Brothers will appear in the box.
    This is written in AS2. When you post a question, it's a good
    idea include which version of ActionScript you're using.

  • How to populate list box in module pool program

    How to populate list box in module pool program.
    Please give me reply as soon as posible
    regards,
    Venu.

    hi,
    go thrugh the folling code .
    TABLES sdyn_conn.
    DATA   ok_code TYPE sy-ucomm.
    Global data
    TYPES: BEGIN OF type_carrid,
             carrid type spfli-carrid,
             carrname type scarr-carrname,
           END OF type_carrid.
    DATA itab_carrid TYPE STANDARD TABLE OF type_carrid.
    *& Processing Blocks called by the Runtime Environment                 *
    Event Block START-OF-SELECTION
    START-OF-SELECTION.
      CALL SCREEN 100.
    Dialog Module PBO
    MODULE status_0100 OUTPUT.
      SET PF-STATUS 'SCREEN_100'.
    ENDMODULE.
    Dialog Modules PAI
    MODULE cancel INPUT.
      LEAVE PROGRAM.
    ENDMODULE.
    MODULE user_command_0100 INPUT.
      CASE ok_code.
        WHEN 'SELECTED'.
          MESSAGE i888(sabapdocu) WITH sdyn_conn-carrid.
      ENDCASE.
    ENDMODULE.
    Dialog Module POV
    MODULE create_dropdown_box INPUT.
      SELECT carrid carrname
                    FROM scarr
                    INTO CORRESPONDING FIELDS OF TABLE itab_carrid.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
           EXPORTING
                retfield        = 'CARRID'
                value_org       = 'S'
           TABLES
                value_tab       = itab_carrid
           EXCEPTIONS
                parameter_error = 1
                no_values_found = 2
                OTHERS          = 3.
      IF sy-subrc <> 0.
      ENDIF.
    ENDMODULE.
    the following code should be included in flow logic of screen
    process on value-request.
      field scarr-carrname  module create_dropdown_box.
    in module pool select list box.
    hope it is useful.
    regards,
    sreelakshmi.

  • Urgent, How to Populate List?

    I'm developing an application using Developer 2000 and I'm using a menu to call other forms within the application.
    My problem is that I have a Main-Form with a foreign-key from another table (e.g. CITY_ID is the foreign key and the DESCRIPTION is in the TABLE CITIES).
    In the main-form, I have no problem retreiving the CITIES from the other table, but when I call within the application the form with the CITIES and insert a new row, going back to the main form the new record is not shown.
    In the main-form I'm using the WHEN-NEW-FORM-INSTANCE trigger with the Set_Up_List(CITY_ID, 'RG_CITIES') and EXECUTE_QUERY statements.
    I've tried to use Populate_List but I get FRM error-messages.
    Can anyone HELP ME?

    Hello,
    Friend, It will be better if you write your code to populate list and error messages here, then and then I can guide you.
    Adinath Kamode

  • Distribution List issue

    Hello,
    Since our upgrade to GW 8 users can no longer administer Distribution Lists. I have created a new test list and made myself administrator to verify this. I can add the members to the list but when I save and close they are not added to the list. We are running 8.02 with most current build (91941)on agents and clients. Do I need to run some kind of PO repair?
    Thanks in advance.

    Hmm, weird although I'm have a weird dist list issue also in that some are disappearing from users' address books. Sometimes they'll show back up if I refresh the address book from the system book but often not. I'll submit a new post on that one; it's possible they're related.
    >>> csupers<[email protected]> 1/24/2011 7:06 AM >>>
    These are all regular c/s connections, very few of our users (maybe 10)
    using caching. We had implemented this before we went to 8 and it was
    working fine, now it's broke.
    David Hickok;2066477 Wrote:
    > How are they trying to administer them? If your users are in caching
    > mode, they need to use to address book applet. Otherwise, you'll
    > experience the problem you described.
    >
    > >>> csupers<[email protected]> 12/1/2010 8:06 AM >>>
    >
    > Hello,
    >
    > Since our upgrade to GW 8 users can no longer administer Distribution
    > Lists. I have created a new test list and made myself administrator to
    > verify this. I can add the members to the list but when I save and
    > close
    > they are not added to the list. We are running 8.02 with most current
    > build (91941)on agents and clients. Do I need to run some kind of PO
    > repair?
    >
    > Thanks in advance.
    >
    >
    > --
    > csupers
    > ------------------------------------------------------------------------
    > csupers's Profile: 'View Profile: csupers - NOVELL FORUMS'
    > (http://forums.novell.com/member.php?userid=1482)
    > View this thread: 'Distribution List issue'
    > (http://forums.novell.com/showthread.php?t=427148)
    csupers
    csupers's Profile: http://forums.novell.com/member.php?userid=1482
    View this thread: http://forums.novell.com/showthread.php?t=427148

  • Populate list from recordset on Parent/Child form

    We have a parent/child form and want to populate several lists from recordsets. We can populate the child canvas by calling a procedure from the WHEN NEW FORM INSTANCE trigger but the same code fails when trying to populate a list on the Parent canvas. If I move the code to a PRE-BLOCK trigger on the parent block, then it works. I just kept moving the code until I found something that works. Can anyone tell me why it wouldn't work from the WHEN NEW FORM INSTANCE trigger? Is PRE-BLOCK the correct place?

    WHEN-NEW-FORM-INSTANCE trigger
    Add_Orgs_Lists('HR_PERSONS.OFFICE_SYMBOL');
    PROGRAM UNIT
    PROCEDURE Add_Orgs_Lists (list_name VARCHAR2) is list_id ITEM;
         col_name VARCHAR2(80) := SUBSTR(list_name, INSTR(list_name, '.')+1);
         sql_stat VARCHAR2(2000);
         BEGIN
         --Find ID for list item.
              list_id := FIND_ITEM(list_name);
              IF ID_NULL(list_ID) THEN
                   MESSAGE('List Item ' ||list_name|| ' does not exist.');
                   RAISE FORM_TRIGGER_FAILURE;
              END IF;
         --Build the SQL statement.
         --     message('In Get_Org');
         sql_stat := 'SELECT Distinct Org_Name, Org_Name FROM HR_Organizations
         ORDER BY 1 ASC';
         Populate_the_List(list_id, sql_stat);
              EXCEPTION
                   WHEN OTHERS THEN
                        MESSAGE('Internal error occurred in Add_Orgs_List.');
                        RAISE FORM_TRIGGER_FAILURE;
    END Add_Orgs_Lists;
    PROCEDURE Populate_the_List (list_id ITEM,
                                                           sql_stat VARCHAR2) is
         group_id RecordGroup;
         outcome NUMBER;
         --List_Elements  VARCHAR2(40);
    BEGIN
              --message('In Populate_the...');     
    --Create temporary record group.
    group_id := CREATE_GROUP_FROM_QUERY('List_Elements', sql_stat);
    IF ID_NULL(group_id) THEN
         MESSAGE('Record Group could not be created in Populate_the_List.');
         RAISE FORM_TRIGGER_FAILURE;
    END IF;
    --Populate record group.
         outcome := POPULATE_GROUP(group_id);
         IF outcome <> 0 THEN
              MESSAGE('Record Group could not be populated in Populate_the_List.');
              RAISE FORM_TRIGGER_FAILURE;
         END IF;
    --Populate list item
         POPULATE_LIST(list_id, group_id);
    --Destroy the temporary record group to release resources
         DELETE_GROUP(group_id);
    EXCEPTION
         WHEN OTHERS THEN
         MESSAGE('Internal error occured in Popluate_the_List.');
         RAISE FORM_TRIGGER_FAILURE;
    END Populate_the_List;
    The error is FRM-41337 Cannot populate the list from record group. It happens when we open the form. We are using the same code to populate the lists on the child form (except the SQL statement is different) and it works correctly.
    I appreciate your help.

  • Populate List of AutoSuggest Item from Database

    Hi,
    I am working in JDeveloper 11.1.2.1.0 IDE and developing an ADF Application.I just want to know how to populate the list of AutoSuggest Item from a database.
    Please reply.
    Thanks.

    hi user,
    nothing to do with you thread.
    why are you cross posting here also.
    duplicate:
    Populate List of AutoSuggest Item from Database

  • RDweb 2012 excel jump list issue for win 7

    Hello All,
    I am installing win 2012 server RDweb test lab. everything working perfect but Excel 2010 jump list now showing up on client side (win 7 Embedded thin client) remaining all office application Jump list working perfectly.
    I tried to clear recent jump list but nothing is happen.
    Could you please help me to resolve.
    Thanks.

    Hi Sunil,
    Thank you for posting in Windows Server Forum.
    For Excel jump list issue you can try below suggestion as it may get your issue resolved (Quoted from below articles).
    Jump List...that is corrupted in AutomaticDestinations-hidden system folder is the likely solution.. To resolve and fix the issue, follow these steps:
    1. Open Windows Explorer . 
    2. Type or copy and paste the following into the address bar: 
    %AppData%\Microsoft\Windows\Recent\AutomaticDestinations
    3. Identify files that are comparatively larger in size than the rest of the file, such as files that have file size of 1 MB or more. 
    Delete the abnormal file.
    Tip: If you do not want to retain the Jump Lists’ recent items history on all applications, just delete all the automaticDestinations-ms files in the folder. 
    4.The recent items functionality on Jump Lists will be restored. The recent items on the Jump Lists will be re-added as the program is been used. However, do note that the solution does not restore the previously pinned items. So user will have to pin new
    items again. 
    Source:
    Jump list not working correctly in windows 7
    http://answers.microsoft.com/en-us/windows/forum/windows_7-files/jump-list-not-working-correctly-in-windows-7/d70c15f9-b48f-45a1-bdc7-cd96d77d9837
    Apart you can refer this thread also which describe other registry solution if above one
    is not useful.
    Hope it helps!
    Thanks.
    Dharmesh Solanki
    TechNet Community Support

  • Using LDAP data to populate list box

    Hi All,
    I have set up my authentication scheme reading the company LDAP using the dn string etc.
    I have created a table which holds all the staff details ( email etc ) but would like to have this data read directly from LDAP at login time or when required. The data ( username, email address, phone number and known-as credentials ) should be able to be used to populate list boxes.
    Any ideas ?
    Thanks - Robert @ london gov

    Hi Robert,
    The following thread might help give you a few ideas -
    Re: Cookie And LDAP
    I use that method to query my LDAP server and also use a materialized view (with timed refreshes) to be able to query information quicker than querying the LDAP server each time.

  • Drop Down list issues in jsp

    Hi,
    I am facing an issue with drop down list in jsp pages on page postback. Let me explain in detail. I have a client.jsp page which has a drop down list and a text box. The drop down list is populated from an Action class (lets say testAction.java). In the client action form class there is a validation which requires the user to enter some value in the text box.
    So here is the problem, when the client.jsp page loads, the drop down list is populated perfectly, but then the user clicks submit button without entering anything in the textbox, the page loads again with an error message ("Please enter some value in the textbox"). At this point the drop down list does not contain any value. Any ideas what could I do?
    I am posting the code here for individual pieces,
    Struts-config.xml_
    <action path="/client" type="com.myapp.struts.testAction" scope="session">
    <forward name="success" path="/createClient.jsp"/>
    </action>
    <action input="/createClient.jsp" name="ClientActionForm" path="/createClient" scope="session" type="com.myapp.struts.ClientAction">
    <set-property property="cancellable" value="true" />
    <forward name="success" path="/loginSuccessful.jsp"/>
    <forward name="cancel" path="/Welcome.do"/>
    </action>
    index.jsp_
    <h5><html:link action="/client" styleClass="purplelink">Create a new client</html:link></h5>
    testAction.java_
    public ActionForward execute(ActionMapping mapping, ActionForm form,
    HttpServletRequest request, HttpServletResponse response)
    throws Exception {
    ArrayList<String> arrList = new ArrayList<String>();
    arrList.add("sports");
    arrList.add("music");
    arrList.add("test 1");
    arrList.add("test2");
    request.setAttribute("mylist", arrList);
    return mapping.findForward(SUCCESS);
    createClient.jsp_
    <select name="droplist">
    <c:forEach var="itemName" items="${mylist}">
    <option><c:out value="${itemName}" /></option>
    </c:forEach>
    </select>
    <html:text property="clientName" />
    ClientActionForm_
    public ActionErrors validate(ActionMapping mapping, HttpServletRequest request)
    ActionErrors errors = new ActionErrors();
    if (getclientName() == null || getclientName().length() < 1) {
    errors.add("name", new ActionMessage("error.name.required"));
    return errors;
    Here is the process/page flow.
    index.jsp is the first page which is loaded.
    Link on index.jsp calls action="/client"
    This pulls mapping from struts-config and calls testAction.java
    This populates the arraylist and returns to the createClient.jsp page (mapping from struts-config.xml)
    Now createClient.jsp page has two fields (dropdown list and textfield=clientName) and a submit button
    if user clicks submit, clientActionForm is called and does not enter anything into clientName text field, error message is returned.
    At this point, the drop down list in createClient.jsp is not populated and is returned as empty, even though the scope=session in struts-config.xml
    Please provide some inputs on how can I handle this issue.
    Thanks
    Ashish

    I think one solution would be instead of putting the list in the request, but it in your ActionForm.
    Add a field to the ClientActionForm with getters and setters.
    Then change your action.
    ArrayList<String> arrList = new ArrayList<String>();
    arrList.add("sports");
    arrList.add("music");
    arrList.add("test 1");
    arrList.add("test2");
    ClientActionForm frm = (ClientActionForm)form;
    frm.setMyList(arrList);
    return mapping.findForward(SUCCESS);

  • How to populate list in tree view  dynamically

    Hi,
    I am new to  Indesign Plugin creation.
    I want to create list in tree view dynamically.
    I tried wlistboxcomposite sdk sample in indesign cs4.
    I have some doubts in this.
    1. Can i write my own method in  WLBCmpTreeViewAdapter class because it's implements ListTreeViewAdapter
    If it's possible how can i call this method.
    2. In this example they populating static string in constructor like this
    WLBCmpTreeViewAdapter::WLBCmpTreeViewAdapter(IPMUnknown* boss):ListTreeViewAdapter(boss){
    K2Vector<PMString> lists;
    for (int32 i = 0; i< 12; i++){PMString name(kWLBCmpItemBaseKey);name.AppendNumber(i+1);name.Translate();lists.push_back(name);}
    InterfacePtr<IStringListData> iListData(this, IID_ISTRINGLISTDATA);}
    and this list is populating on loading time but my requirement is i have one button "get list" after clicking this button i have to populate the list, how can
    i achieve this.
    Pls do needful.
    Thanks
    Arun

    The TreeViewAdaptor is responsible for mapping your custom data to the tree view itself.  I almost always start by making it return some fixed number of objects with names "item 1" etc. That way you get the tree view working first.
    Then, after you get it laid out and displaying properly, you can worry about using real data.  At that point, you have your adaptor return the actual number of items in your list and each individual item.  Then you can populate your list when you push your button and then invalidate the IControlView of the tree view widget to cause it to redraw.  At that point your adaptor will get called and your data should appear.
    Jon
    "Expert for hire"

  • Unable to populate list items with criteria

    Hi
    I want to populate some values based on condition in a text field.
    I tried the code wihtout condition in new form instance and its working fine but when i tried with an condition on when mouse click on list item and its working for first action.If list having more than 1 values in list its became blank and not working
    DECLARE
    group_name varchar2(40) :='LSTCUR';
    group_id RecordGroup;
    list_id item := Find_item('TB.LSTCUR');
    status NUMBER;
    begin
    IF Id_null(group_id) THEN
    group_id := Create_Group_From_Query('LSTCUR','select distinct curr,curr from REC_CURR_V where br =:TB.PSRCH');
    END IF;
    Clear_list(list_id);
    status := Populate_Group('LSTCUR');
    Populate_list(list_id,group_id);
    end;
    rgds
    soumya

    soumya,
    Try this code.
    DECLARE
         RG_Group_ID RECORDGROUP;
         Num_Status NUMBER;
    BEGIN
         RG_Group_ID := FIND_GROUP('LSTCUR');
      IF NOT Id_Null(RG_Group_ID) THEN
              DELETE_GROUP(RG_Group_ID);
      END IF;
         RG_Group_ID := CREATE_GROUP_FROM_QUERY('LSTCUR', 'SELECT DISTINCT CURR, CURR FROM REC_CURR_V WHERE BR = ''' || :TB.PSRCH || '''');
         CLEAR_LIST('TB.LSTCUR');
         Num_Status := POPULATE_GROUP('LSTCUR');
         POPULATE_LIST('TB.LSTCUR', RG_Group_ID);
    END;Regards,
    Manu.
    If my response or the response of another was helpful, please mark it accordingly

  • Invoice and Packing List Issue

    I have a delivery created . Now in invoice I see the correct weignt and materials . However in the packing list all the items are duplicated adding to incorrect weights . Please guide me , how to close this issue .Screenshot given
    Thanks
    MM_sD

    Hi,
    I will just again clarify this issue.
    I have a Del Doc which has 34 packed items, but in the script its showing 55 packed items.
    For other Del Doc its has 9 packed items which is showing all 9 items properly in the sap script.
    I have debugged the print prog comparing both documents and have found that at a place a std FM is used, which is fetching the packed orders:  SD_DELIVERY_VIEW.
    But here after this FM is executed its fetching 55 packed ones for the 34 packed items Order and for the 9 packed items Order its fetching the correct 9 packed items after the FM is executed.
    Hopefully this clarifies my issue.
    Its showing correctly for an order and its displaying incorreclty for another in the SAP Script.
    If someone could(would) please help. I feel there is a solution for this.
    Many Thanks,
    Jagan.

  • Access request List issue after migration

    I have migrated site sharePoint 2013 from metalogix tool.
    Migration is from SharePoint 2013 to SharPoint 2013
    I am getting one strange error while approving "Permission request" send by the users.  I have matched columns of  Access Request list(Hidden) from original site to New site , columns are matching, and also I have checked every column
    on migrated site, ther are opening without error, so why I am getting this error , there are no logs for this.
    One thing is diffrent is that on migrated site I am not gettign any data from Permission column check below, however On original site I am gettign data for this Permission column , what can be an issus ?
    Please mark answer , if you think answer is helpful or correct.

    Hello WillAdams92,
    It seems you are experiencing permissions issues. You can repair permissions using Disk Utility, which comes with all Macs. The following article provides more information about the feature:
    About Disk Utility's Repair Disk Permissions feature - Apple Support
    Thank you for contributing to Apple Support Communities.
    Cheers,
    Bobby_D

Maybe you are looking for

  • TV shows from iTunes are not sorted correctly on iPod

    I bought episodes of a TV show from the iTunes store and all of a sudden nothing is sorted correctly anymore. They're completely fine on iTunes but on my iPod Classic (it's the newest one, 160 GB) it just doesn't seem to want to work. I've tried rest

  • Is there a way to retrieve an accidentally erased video?

    I accidentally erased a precious video. Is there any way to retrieve it?

  • Archive a playlist with media files and the song settings

    I want to remove a body of songs from out of my library (Holiday and Christmas -- surprise, huh?) and yet have it ready to reimport next November, complete with song settings -- for example, I go through and amend the play volumes rather than using S

  • Will Adobe produce RAW 8.6 for Elements 12?

    Having just got a Panasonic Lumix DMC-FZ1000, Elements 12 can't process its RAW files. The Adobe site says RAW 8.6 which will process them is only available with full blown Photoshop

  • My iTunes Music Store Won't Work

    My iTunes music store won't work. Ever since I tried upgrading my iTunes, the music store cannot connect. I don't think it is the iTunes itself because I have talked to people and theirs is working fine. Mine worked until I tried to update it. I trie