Customer listing T Code

Hi experts,
please inform  T.code for customer listing (Sold to, Ship to and Bill to, is there any standard  T code, for customer listing or any other way to get this, pls guide
Thanks

Hai,
Just a try for other way to get the data.....
If you want to list the Partners for a customer number
Make a SQVI - QUICK VIEWER report
Join tables KNVP (for partner list) and KNA1 (for customer name and other required details from General data)
Execute and check no data in the ALV report duplicates
and with help of Abaper create a T CODE (using SE93) for the quick viewer program and give to your users.
Any issues with this way, please update.
Regards,
Mani

Similar Messages

  • SharePoint 2013 witing code to work with a custom list

    I am asking this question since I am new to working with SharePoint 2013, but I have programming experience working with C#.net and VB.NET.
    I have a workflow 2013 that is accessed by a custom list (and updated by Infopath 2013). Once a user has submitted the custom list to the workflow 2013, there will be the 'proper' authorized person in the company that will approve or reject the request.
    Once the user has submitted the request, I do not want them to be able to update the list any more. I want the user to only have 'view' access.
    In workflow 2010, I see that there is the impersonate step that would change the permisisons for me. However I would prefer not to use an older version of the workflow.
    Thus can you show me and/or point me to links that will do the following:
    1. What .net code could I  use that will change the permissions on the custom list I mentioned above. The code can be in either C#.net or VB.net?
    2. If I am able to use the .net code, would you show me how to 'wire together' the .net code with the 2013 workflow? I do know that I would use Visual Studio.net 2012 to write the code. Would you explain, draw a picture, and/or point me to a url that will explain
    to me where to place the .net code so it is connected to the workflow 2013?

    I am going have a large volume of users (about 300 to 500) from my company creating these requests. So you are saying that I should create a subfolder of each request.
    Thus I have the following additional questions:
    1. If I move the requests to subfolders, how will the users be able to able to find their requests when placed into a different subfolder? I have views setup for the users, would I adjust the view for each user? Can you show me in workflow how to move
    the requests to another subfolder?
    2. It sounds like a need a subfolder for each request is that correct? If not, do I move all requests to one subfolder?
    3. Would you show me how you recommend that I change the permissions on the subfolder(s)?

  • Custom List Form - newform.aspx with code behind - beginner

    Hi,
    I am working on a request whereby I have to customize the NewForm.aspx. The form will have roughly about 30 controls. One of the controls on the form will pull data from a web service. Another will pull data from a sharepoint list, this is quite complex
    as there will be some logic involved. The form data will then be input as the items into the Main SharePoint list.
    I do know that there will be some code behind on the custom NewForm.aspx, and that it has to be done on Visual Studio.
    I am confused between the application page, custom form web part, or is there any others missing out. Which one of this the best practice, also can someone point out some msdn articles. I found some on the Net, but I find the guides too complicated and am
    finding it difficult to understand. 
    Please help

    It depends on how your users will interact with the list, are they going to use list newform.aspx to submit the data or will you be providing separate interface to submit the data. You can always go with custom webpart to incorporate all your business logic
    along with the interface required for end users.
    building custom webparts in SharePoint 2010
    http://www.dotnetmafia.com/blogs/dotnettipoftheday/archive/2010/02/15/intro-to-sharepoint-2010-development-how-to-build-and-deploy-a-web-part.aspx
    Custom List form
    http://blog.karstein-consulting.com/2010/12/29/walkthrough-create-custom-sharepoint-2010-list-form-for-deployment-in-a-visual-studio-2010-project/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Report for customer list

    Hi,
    Is there any report where if i have a list of customer number and i would like to know each of  the payment term of each customer?
    Or any T-code to display each payment term of each user in a long list?
    thanks.
    Joo

    hi,
    t code for customer lidt is S_ALR_87012179
    /N-->ACCOUNTING>FINANCIAL ACCOUNTING>ACCOUNT RECEIVABLE>INFORMATION SYSTEM>MASTER DATA--
    >CUSTOMER LIST
    IF USEFUL ASSIGN POINTS
    REGARDS,
    SANTOSH KUMAR

  • Adding items to custom list - performance issues - Request timed out error

    Hi,
    I am using VS 2010, c#.
    I am inserting records from an excel file, which contains 6000 records to a custom list.
    I am using the Visual webpart, and oledb connection. I am not using the openXML format, as i need to use "xls" and "xlsx" type.
    I am doing the below steps currently:
    1) From the file upload control, i am saving the excel to the sharepoint layouts - inside that a custom folder, to keep the records.
    2) Using the oledb connection to read the records and fill it in a datatable.
    3) Inserting the datatable values to a custom list.
    Looping through the datatable and inserting 3000 – 4000 records to List, I am getting the "Request timeout error".
    Below is the sample code, where i am looping the datatable and inserting the record:
    SPList prjCmpList = oWeb.Lists[strListName];
    SPListItemCollection prjCmpListItems = prjCmpList.Items;
    SPListItem prjCmpListItem;
    foreach (DataRow dr in dt.Rows)
    try
    prjCmpListItem = prjCmpListItems.Add();
    prjCmpListItem["Title"] = dr[0];
    prjCmpListItem["FirstName"] = dr[1];
    prjCmpListItem.Update();
    catch (Exception)
    I am using the "using block" for the spsite and web objects. When I see the execution time out in my web.config it is set to 3600.  But I am getting the request time out after 2 mins only.
    I have checked these link's : http://msdn.microsoft.com/en-us/library/aa973248%28v=office.12%29.aspx
    http://www.etechplanet.com/blog/how-to-import-an-excel-spreadsheet-in-sharepoint-and-save-it-as-a-custom-list.aspx
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/8664375c-fae0-483a-b43f-ce7d353b896a/importing-3000-records-to-sharepoint-list-causing-requesting-time-out-error?forum=sharepointadminlegacy
    However, I am following the best practices, and also the insertion of records is to be done programmatically.
    Has anyone faced this kind of issue? How to fix this?

    HI,
    Thanks for the reply.
    If the list has custom columns which consists of string and Date types, can the same type be used? Or should the list be an empty list without any columns?
    In the xml if it is put as "onerror= continue", how to fetch the records which error out?
    Also, in the datatable code block, which I had put in the first post, I am also trying as below:
    if(dt[1] != null)
    if(!string.IsNullorEmpty(dt[1].toString())
    prjCmpListItem["FirstName"] = dt[1].toString();
    Can these condition checks be performed with the "processbatchdata" approach?
    Thanks

  • Custom List Form creation using Powershell - SharePoint 2013

    Hi,
    I have a custom List called 'IssuesList' with 4 fields - "IssueTitle","IssueID","IssueDesc","Status"
    While displaying display form I should show 3 fields expect Issue ID i.e. IssueID should be hidden.
    and on edit form only Status field should be editable. So using SharePoint designer I created respective Edit form and display forms and changed XSLT to control the display mode on the fields.
    I have everything scripted in powershell till now - creation of custom list, publishing pages, webparts etc. however I am looking for how to provision or associate these 2 list forms with IssuesList after I create the list in new site.
    I have restrictions on using wsp and site/list template due to business needs. So I need to know if there is any way I can upload these 2 files after I create custom list in powershell and associate them as defaultdisplay and defauteditforms?
    Please advise.

    Hi,
    Per my understanding, you might need to apply these custom forms to a list after list creation using PowerShell.
    With PowerShell with SharePoint Object Model, we can hide fields on list forms.
    The similar thread below with code snippet will provide more information about this:
    https://social.technet.microsoft.com/Forums/en-US/ee6fc2eb-197f-4144-94fa-8a4e438675d9/hide-a-field-from-edit-form-list?forum=sharepointgeneralprevious
    If there may be other requirements except for hiding fields, as you have limitation on using custom solution package(which should be preferable in such scenario),
    a workaround I can provide is that, after list creation, you can add Content Editor Web Part contains the CSS style or JavaScript to the form pages of a specific list, it will help you hide/disable the specific elements, this can be achieved programmatically.
    The code below can add a Content Editor Web Part to the DisplayForm of a list(though in C#):
    public static void AddCEWP()
    SPLimitedWebPartManager manager = null;
    SPFile file = null;
    using (SPSite site = new SPSite("http://sp"))
    using (SPWeb web = site.RootWeb)
    try
    web.AllowUnsafeUpdates = true;
    file = web.GetFile(web.Url + "/Lists/List018/DispForm.aspx");
    manager = file.GetLimitedWebPartManager(PersonalizationScope.Shared);
    ContentEditorWebPart webPart = new ContentEditorWebPart();
    XmlDocument xmlDoc = new XmlDocument();
    XmlElement xmlElement = xmlDoc.CreateElement("HtmlContent");
    //xmlElement.InnerText = "<strong>Hello World!</strong>";
    //write the custom CSS style or JavaScript here
    string content = "<style>your custom style here...</style>";
    xmlElement.InnerText = content;
    webPart.Content = xmlElement;
    manager.AddWebPart(webPart, "Top", 0);
    manager.SaveChanges(webPart);
    web.Update();
    catch (Exception ex)
    //Utility.SPTraceLogError(ex);
    finally
    if (manager != null)
    manager.Dispose();
    web.AllowUnsafeUpdates = false;
    About how to hide fields on Standard List Forms using jQuery:
    http://social.technet.microsoft.com/wiki/contents/articles/21730.sharepoint-2010-conditionally-hide-fields-on-standard-list-forms-using-jquery.aspx
    http://stackoverflow.com/questions/10010405/how-to-hide-a-field-in-sharepoint-display-form-based-on-the-field-name-jquery
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Which table could search customer# by company code?

    Hi,
    I found an very strange thing as when i tried to search customer# by company code with XD03 transaction, there always showed 'no values found'.
    Anyway, is there any table could help me get corresponding customer list under one company code??
    Thank you very much!

    Thanks Raghu,
    Actually i just did that way in XD03 by inputing the co code, then search corresponding customer under that co..
    But the strange thing is the system shows no items found..
    But in KNB1, there do have many customers found under that co code...
    Could anyone know how come this could happen??
    Thank you very much.
    Edited by: Hoo Laa on Jul 17, 2008 11:10 AM

  • Created By and Created Date fields not showing up on Custom List form webpart

    Hi,
    I have added Custom Listform WebPart on "DispForm.aspx" of custom list. I need to display, out of box fields "Author" [Created By] and "Created" [Creation Date] on this custom list form webpart, I have added them on the webpart, following is the code behind of aspx page:
    <td width ="400px" valign= "top" class="ms-formbody">
    <xsl: value-of select = "@Author" disable-output-escaping = "yes"/>
    </td>
    However these fields are not showing/populating data on the form ?? Any inputs ???
    Regards

    Hi,
    I think that when you insert a custom list form web part you select “Item” content type, so custom list form is designed to display only the fields that are appropriate for that content type “Item”, but the item content type doesn’t contain the created and created by column, when you add the two columns, it will not find the field value. By default, the two columns will display at the foot of the list form using SharePoint:CreatedModifiedInfo.
    Hope it can help you.
    Xue-Mei Chang

  • Cannot remove description field after adding to the Custom List

    Hello,
    Applies To: SharePoint 2013
    Problem: We created a Custom List and added a Description column from "Add from existing site columns" link. Now we need to remove it and it seems to have been sealed. We are not able to delete it.
    There is no remove/delete link/button when we click on the field. Moreover in the Content Type it only shows Required, Optional, Hidden.
    Requirement: Need to remove this field from the Custom List. Incidentally we added two of the description fields. We need to remove both of them without deleting the list itself.
    Thank you and
    Regards
    Tanzim Akhtar
    Tanzim Akhtar

    Hi Tanzim,
    Try the following code. I tested it and it should work for you.
    Add-PSSnapIn Microsoft.SharePoint.Powershell
    $web = Get-SPWeb "Web URL" 
    $list = $web.Lists["List Name"] 
    $field = $list.Fields["Description"] 
    $field.AllowDeletion = $true
    $field.Sealed = $false
    $field.Delete() 
    $list.Update() 
    Remove-PSSnapIn Microsoft.SharePoint.Powershell
    Narahari
    ******If a post answers/helps your question, please click "Mark
    As Answer" on that post and/or "Vote
    as Helpful*******

  • Ribbon Custom tab won't appear on custom list

    Hi all! If anyone could be so kind and help me with the following.
    I have created a custom list in Visual Studio 2012 and i am trying to add a custom tab to that list.
    Below is the content of the elements file for the custom tab and respective controls:
    <?xml version="1.0" encoding="utf-8"?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <CustomAction
    Id="MyCustomRibbonTab"
    Location="CommandUI.Ribbon"
    RegistrationId="10000"
    RegistrationType="List">
    <CommandUIExtension>
    <CommandUIDefinitions>
    <CommandUIDefinition
    Location="Ribbon.Tabs._children">
    <Tab
    Id="Ribbon.AnnualLeaveTab"
    Title="Annual Leave"
    Description="Annual LEave requests!"
    Sequence="301">
    <Scaling
    Id="Ribbon.AnnualLeaveTab.Scaling">
    <MaxSize
    Id="Ribbon.AnnualLeaveTab.MaxSize"
    GroupId="Ribbon.AnnualLeaveTab.CustomGroupExample"
    Size="OneLargeTwoMedium"/>
    <Scale
    Id="Ribbon.AnnualLeaveTab.Scaling.CustomTabScaling"
    GroupId="Ribbon.AnnualLeaveTab.CustomGroupExample"
    Size="OneLargeTwoMedium" />
    </Scaling>
    <Groups Id="Ribbon.AnnualLeaveTab.Groups">
    <Group
    Id="Ribbon.AnnualLeaveTab.CustomGroupExample"
    Description="This is the Annual Leave request custom group!"
    Title="Annual Leave Request"
    Sequence="52"
    Template="Ribbon.Templates.CustomTemplateExample">
    <Controls Id="Ribbon.AnnualLeaveTab.CustomGroupExample.Controls">
    <Button
    Id="Ribbon.AnnualLeaveTab.CustomGroupExample.New"
    Command="AnnualLeaveTab.New"
    Sequence="15"
    Image16by16="/_layouts/15/1033/images/formatmap16x16.png"
    Image32by32="/_layouts/15/1033/images/formatmap32x32.png"
    Image32by32Class="CSS Class Selector"
    Image32by32Top="-205"
    Image32by32Left="-341"
    Description="Create new Annual Leave Request"
    LabelText="Create New"
    TemplateAlias="cust1"/>
    <Button
    Id="Ribbon.AnnualLeaveTab.CustomGroupExample.Approve"
    Command="AnnualLeaveTab.Approve"
    Sequence="17"
    Image16by16="/_layouts/15/1033/images/formatmap16x16.png"
    Image32by32="/_layouts/15/1033/images/formatmap32x32.png"
    Image16by16Class="CSS Class Selector"
    Image16by16Top="-198"
    Image16by16Left="-290"
    Description="Approve selected request"
    LabelText="Approve"
    TemplateAlias="cust2"/>
    <Button
    Id="Ribbon.AnnualLeaveTab.CustomGroupExample.Reject"
    Command="AnnualLeaveTab.Reject"
    Sequence="19"
    Image16by16="/_layouts/15/1033/images/formatmap16x16.png"
    Image32by32="/_layouts/15/1033/images/formatmap32x32.png"
    Image16by16Class="CSS Class Selector"
    Image16by16Top="-181"
    Image16by16Left="-290"
    Description="Reject selected Request"
    LabelText="Reject"
    TemplateAlias="cust3"/>
    </Controls>
    </Group>
    </Groups>
    </Tab>
    </CommandUIDefinition>
    <CommandUIDefinition Location="Ribbon.Templates._children">
    <GroupTemplate Id="Ribbon.Templates.CustomTemplateExample">
    <Layout
    Title="OneLargeTwoMedium"
    LayoutTitle="OneLargeTwoMedium">
    <Section Alignment="Top" Type="OneRow">
    <Row>
    <ControlRef DisplayMode="Large" TemplateAlias="cust1" />
    </Row>
    </Section>
    <Section Alignment="Top" Type="TwoRow">
    <Row>
    <ControlRef DisplayMode="Medium" TemplateAlias="cust2" />
    </Row>
    <Row>
    <ControlRef DisplayMode="Medium" TemplateAlias="cust3" />
    </Row>
    </Section>
    </Layout>
    </GroupTemplate>
    </CommandUIDefinition>
    </CommandUIDefinitions>
    <CommandUIHandlers>
    <CommandUIHandler
    Command="AnnualLeaveTab.New"
    CommandAction="javascript:SP.UI.ModalDialog.ShowPopupDialog('/SitePages/Leave%20Request.aspx?isDlg=1','_blank');" />
    <CommandUIHandler
    Command="AnnualLeaveTab.Approve"
    CommandAction="javascript:alert('Approved');" />
    <CommandUIHandler
    Command="AnnualLeaveTab.Reject"
    CommandAction="javascript:alert('Rejected');" />
    </CommandUIHandlers>
    </CommandUIExtension>
    </CustomAction>
    </Elements>
    The contents of the element file for the list is as below:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <!-- Do not change the value of the Name attribute below. If it does not match the folder name of the List project item, an error will occur when the project is run. -->
    <ListTemplate
    Name="IFX_Leave"
    Type="10000"
    BaseType="0"
    OnQuickLaunch="TRUE"
    SecurityBits="11"
    Sequence="410"
    DisplayName="IFX_Leave"
    Description="My List Definition"
    Image="/_layouts/15/images/itgen.png"/>
    </Elements>
    As seen, the RegistrationID and list Type ID are the same so in theory this should work. Also, for other lists deployed through the same solution with the same Type ID, the ribbon tab and controls render perfectly fine.
    Any ideas what may be the issue here?
    Appreciate your input!

    Hi,
    According to your post, my understanding is that you had an issue about the custom tab for list.
    As you had said, the other tabs for other lists in the same solution worked well, the code would have no issues.
    I recommend you create a new clean project with only one list and the tab to check whether it works.
    What’s more, you can also change the list template type ID(such as 100), then check whether it works.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Custom list templates not deployed

    Hi everyone,
    Today I came across a wierd issue while creating some lists in SP 2010 programmatically.
    I created a few lists schema, list templates and list instances declaratively.
    I deployed my package and everything seems to work as expected so far.
    I activated my custom feature where (intentionally) I put some C# codes to create a list instance based on one of my deployed list template.
    At first, i.e last week, creating this list instance programmatically worked well.
    So are those I deployed. 
    Today, the creation failed because the list template identified by its list-template ID does not exist.
    Wierd ! I checked the package, all elements, all list template, all IDs, all 14-hive files, ... everything was OK. No packaging errors found.
    Each time I deploy these list templates, they don't even appear in the silverlight-based list-creation popup.
    They don't even appear in the "SP Manager" tool.
    All my custom lists that was instantiated by SP (using declarative list instance), are well created,
    but they don't have their respective custom logo.
    And obviously, all its settings (within list template's XML file) was not applied.
    It's the first time I met this kind of problem.
    I even remove my content database, but the problem remains unchanged.
    Does anyone have any idea of what's wrong with my list templates, or even with SP ?
    Any idea to fix it ?
    Thanks in advance,
    Okavango93
    PS : In my WSP solution, I associate one list template element to three features, so I cannot set the attribute FeatureId to the list template.

    Hi,
    No answer so far ?
    I tore my hair out enough since a week, but finally I find out why.
    I fix today my list template issue by setting the feature attribute RequireResouces to false.
    If not, all element inside that feature will be hidden from the UI, and so will be the feature ... even if
    Hidden attribute equals to false and even if in any SP tools the feature seems to be there.
    Hope this help !
    Okavango93
    More infos about this attribute here : SPFeatureDefinition.RequireResources
    Property

  • User message entered in Validation settings does not show up in custom list form created in sharepoint designer 2010

    I have a custom list form created in SPD based on EditItem form.  I then set field validation in Validation setting and entered a user message to display when the validation did not pass.
    The validation works in the custom form but the user message never show up.
    I see a similar question posted in 2012:  
    https://social.technet.microsoft.com/Forums/en-US/cd292b50-856f-4dfa-8cfe-aeb688ee7185/validating-fields-on-a-sharepoint-2010-custom-list-form?forum=sharepointgeneralprevious 
    Is this still a known bug?   What is the easiest workaround?

    Hi ,
    From the
    above link you mentioned, have you tried using the code line in your custom form?
    Please try the code suggested by sp-achiever and hamish, and see if it could help solve the issue.
    <SharePoint:ItemValidationFailedMessage ControlMode="New" runat="server" ID="checkform" />
    Have you installed hotfix KB245789 or CU contained this kb?
    Please check if KB245789 has fixed this issue as KP2011 suggested in the same post, and please try it in a test environment firstly.
    http://support.microsoft.com/kb/2405789
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you havefeedback for TechNet Subscriber Support, contact [email protected] 
    Daniel Yang
    TechNet Community Support

  • Rename title column and delete a column into view custom list

    Hi;
    I try to create a new custom list with only 2 column DEC et DSCC and I would like to rename or change the title column (Titre in french) with the name "DEC" and next hide or delete into the view "All elements" the column attached file ("Pièces
    jointes" in french).
    My code is :
    function CreateCustomList
      param(
      [string]$web
    $spWeb = Get-SPWeb -Identity $web
    $list=$spWeb.Lists.TryGetList($listeEspaceRTO)
    if($list -eq $null)
     $spTemplate = $spWeb.ListTemplates["Liste personnalisée"]
     $spListCollection=$spWeb.Lists
     $spListCollection.Add($listeEspaceRTO,"Liste espace RTO",$spTemplate)
     $path = $spWeb.url.trim()
     $spList = $spWeb.GetList("$path/Lists/$listeEspaceRTO")
     $spList.Fields.Add("DSCC","URL",$false)
     $Views = $spList.Views["Tous les éléments"]
     //$Views.ViewFields.delete("Pièces jointes")
     //$Views.ViewFields.Add("DEC")
     $Views.ViewFields.Add("DSCC")
     $Views.Update()
    else
      write-host -f yellow "la doc lib" $listeEspaceRTO "exits"
    $spWeb.dispose()
    The custom list is correctly created but with Title and the column "Pièces jointes" into the view.
    Regards

    Hi,
    Glad to hear that you solve this issue, thanks for your sharing.
    Thanks,
    Linda Li
    Linda Li
    TechNet Community Support

  • How to update a custom list when there is a changes in excel sheet uploaded in document library

     
    I have created a document library in which m uploading a excel sheet with values in it and i have created a custom list with same no.of.rows and columns in the excel sheet given the same name of columns. Now i have to make sure that whatever changes i do
    in the excel sheet should automatically gets updated in custom list in sharepoint

    You'll need to create an event receiver for when you add/update a document on the source library (http://msdn.microsoft.com/en-us/library/office/gg749858(v=office.14).aspx)
    Then, with code open the excel file and count the rows. You can use the OpenXmlSDK to do that (http://www.microsoft.com/en-us/download/details.aspx?id=5124)
    Good luck ;)

  • Display One time customer list and its transactions

    Dear,
    When we use one time customer in sales order and invoice, we'll get an additional pop up window where we can input name and address of the one time customer.
    Where can i get the table they get stored?
    If i want to see the one time customer report as well as customer report in fbl5n, what t-code that i can use?
    Thank you

    Dear,
    I can see the one time customer list (added from additional pop up window) in BSEC...:)
    What do u mean with this statement :"Here you can add table BSEC and field XCPDK(One-time account), once you add this field in the table, the field will be displayed in the change layout option of FBL3N"
    Does it mean that i have to add "a field" in "the change layout option" when i run the transaction of FBL5N or FBL3N?
    What field is that? because i didn't find any field of "one time customer as displayed in BSEC"  in "the change layout option".
    Thank you...:)

Maybe you are looking for

  • Trying to open Indesign and it keeps crashing... help!

    Process:         Adobe InDesign CC [333] Path:            /Applications/Adobe InDesign CC/Adobe InDesign CC.app/Contents/MacOS/Adobe InDesign CC Identifier:      com.adobe.InDesign Version:         9.2.1.101 (9210) Code Type:       X86-64 (Native) Pa

  • IWeb 08!! (AHHH!!!)

    Hey I am one of the many, who is having issues with the new suite of programs. Basically this is my problem: I started a website in iWeb 06 and it had been going perfectly and was looking pretty swish. I installed iLife 08, and frantically checked my

  • HTTP Listener problems

    Good day all, I have some problems regarding HTTP Listener: 1. I cannot startup my www listener on port 80, only Node Manager listener can be started. It gives out the errors: OWS-08811 & OWS-08851. 2. I even cannot either view or edit the configurat

  • Unable to add server to the manager nac version 4.7

    hi all, I cannot add my nac server 3310 to nac mgr 3310 version 4.7. Its showing ssl error. Both the time in server and manager are synchronized.we can reach server from manager and vice versa. I am attaching the screen shots of the event log can som

  • Configuration steps not copied from Template project

    Hi All, We are creating a project using an existing template project (our own defined). The business processes are copied but the configuration steps and documentation in configuration does not come in the new project (SOLAR02). Could any one help.