From where i need to start new atg commerce web app ?

What i did still:-
1. I run CIM in that select B2C.
2.Created schema for prod and Pub and in pub & inserted  initila data.
3.All are run fine checking with Prod:dyn/admin & Pub :bcc,dyn/admin.
4.After that i created two module for Backend and frontend.
5.created both ear and run it.
Problem comes here.
6.I Created some catalog ,Category & Product  through acc now i want to sync this all data to pub server.
   on this point i get stuck.
Before that I used B2C(CIM) only so in that there were no any CRS schema and data as well.
So i am confusing in that should i used CRS SCHEMA of production and also CRS Schema of Publishing and Insert initilal data  for pub only.
If i used this i get more option to create site & not need to create all the table again but if i not use CRS Schema i need create all the tables for prod and pub as well& t i need DBA as well.
So plz give me some suggestion , i am very new to atg .
-Kakasaheb

Hi,
So after that whatever my catalog ,can see in ACC..? : yes you will be able to see in ACC, When you publish assets form BCC it will go in PUB schema(in versioned form) and after deployment you can see all those data in switching schema(If you are not using switching, find data in Prod schema)
I am not saying reverse is not possible( I haven't try by the way ) but if you interested you can try steps mentioned in post : How to sync new catalog , categories and products created in ACC to pub db
Hope this will help.

Similar Messages

  • From where I can buy a new screen for my I phone 5?

    from where I can buy a new screen for my I phone 5 in Saudi Arabia?

    If the official Apple support is through the carriers, you should go in and tell them you would like to do an out of warranty exchange.
    According to the support links from the Saudi Arabia Apple web site, the carriers are responsible for iPhone support (as KiltedTim already said) but the web page indicates to contact your carrier for out of warranty (ie. for fee) options.
    In case you've never heard of it, the out of warranty exchange program allows for the exchange of damaged devices that are not covered under warranty for factory refurbished units, at a fee (e.g. in the USA, that fee for an iPhone 5 would be $229).
    You might want to ask specifically about that program - maybe the person you spoke with about support was simply not aware of that program since they do not work for Apple directly.

  • From where Requistion Need By Date Value is coming?

    Hi All,
    we r using R11
    While creating Requisition when we click on checkout, we are taken to a page called "Checkout: Requisition Information"
    In this page Need by date is filled automatically. We need to know from where is this value coming?
    And if possible change it.
    Thanks!!!!

    Following is the controller code and need by date entries in page xml file. I m actually not able to figure out where it is getting set.
    <oa:messageTextInput id="NeedByDate" prompt="Need-By Date" dataType="DATETIME" viewName="ReqSummaryVO" viewAttr="NeedByDate" tipType="dateFormat" required="yes" columns="20" serverUnvalidated="false">
    <ui:primaryClientAction>
    <ui:firePartialAction event="PPRUserEvent" unvalidated="true"/>
    </ui:primaryClientAction>
    </oa:messageTextInput>
    public class CheckoutSummaryCO extends CheckoutInfoBaseCO
    protected String getBusinessView(OAPageContext oapagecontext, OAWebBean oawebbean)
    return "DefaultBizView";
    public void processRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processRequest(oapagecontext, oawebbean);
    OAWebBean oawebbean1 = oapagecontext.getRootWebBean();
    if(oawebbean1 != null && (oawebbean1 instanceof OABodyBean))
    ((OABodyBean)oawebbean1).setBlockOnEverySubmit(true);
    String s = oapagecontext.getParameter("porMode");
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processRequest().begin", 1);
    logParam(this, oapagecontext, "CheckoutSummaryPG - mode", s, 1);
    showHelperMessage(oapagecontext);
    OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
    executePrepareForDisplay(oapagecontext, oaapplicationmodule, s);
    prepareBoundValuesForSpelAttributes(oapagecontext, oawebbean);
    prepareUI(oapagecontext, oawebbean, oaapplicationmodule);
    protected void executePrepareForDisplay(OAPageContext oapagecontext, OAApplicationModule oaapplicationmodule, String s)
    if("fromOneTime".equals(s))
    String s1 = oapagecontext.getParameter("porOneTimeLocationAdded");
    if("true".equals(s1))
    ArrayList arraylist1 = new ArrayList(2);
    arraylist1.add("processAddOneTimeLocation");
    arraylist1.add("summary");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist1);
    return;
    } else
    ArrayList arraylist = new ArrayList(3);
    arraylist.add("prepareForDisplay");
    arraylist.add("summary");
    arraylist.add(oapagecontext.getParameter("porSummaryPageFromCart"));
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    protected void prepareBoundValuesForSpelAttributes(OAPageContext oapagecontext, OAWebBean oawebbean)
    BoundValueUtil.bindRenderedAttr("DeliveryCell", oawebbean, "IsGoodsServicesRequisition", "ReqSummaryVO");
    BoundValueUtil.bindRenderedAttr("UrgentCheckBox", oawebbean, "IsUrgentFlagRendered");
    BoundValueUtil.bindRenderedAttr("UrgentMultiple", oawebbean, "IsUrgentFlagMultiple");
    BoundValueUtil.bindRenderedAttr("NeedByDate", oawebbean, "IsNeedByDateRendered");
    BoundValueUtil.bindRenderedAttr("NeedByDateMultiple", oawebbean, "IsfByDateMultiple");
    BoundValueUtil.bindRenderedAttr("Requester", oawebbean, "IsRequesterRendered");
    BoundValueUtil.bindRenderedAttr("RequesterMultiple", oawebbean, "IsRequesterMultiple");
    BoundValueUtil.bindRenderedAttr("Phone", oawebbean, "IsRequesterRendered");
    BoundValueUtil.bindRenderedAttr("Fax", oawebbean, "IsRequesterRendered");
    BoundValueUtil.bindRenderedAttr("Email", oawebbean, "IsRequesterRendered");
    BoundValueUtil.bindRenderedAttr("DeliverToLocation", oawebbean, "IsDeliverToLocationRendered");
    BoundValueUtil.bindReadOnlyAttr("DeliverToLocation", oawebbean, "IsDeliverToLocationReadOnly");
    BoundValueUtil.bindRenderedAttr("DeliverToLocationMultiple", oawebbean, "IsDeliverToLocationMultiple");
    BoundValueUtil.bindRenderedAttr("EnterOneTimeAddr", oawebbean, "IsAddOneTimeLocationRendered", "ReqSummaryVO");
    BoundValueUtil.bindRenderedAttr("EnterOneTimeAddrDummy", oawebbean, "IsAddOneTimeLocationRendered", "ReqSummaryVO");
    BoundValueUtil.bindRenderedAttr("EditOneTimeAddr", oawebbean, "IsEditDelOneTimeLocationRendered", "ReqSummaryVO");
    BoundValueUtil.bindRenderedAttr("EditOneTimeAddrDummy", oawebbean, "IsEditDelOneTimeLocationRendered", "ReqSummaryVO");
    BoundValueUtil.bindRenderedAttr("DeleteOneTimeAddr", oawebbean, "IsEditDelOneTimeLocationRendered", "ReqSummaryVO");
    BoundValueUtil.bindRenderedAttr("DeleteOneTimeAddrDummy", oawebbean, "IsEditDelOneTimeLocationRendered", "ReqSummaryVO");
    BoundValueUtil.bindRenderedAttr("DestinationTypeMultiple", oawebbean, "IsDestinationTypeMultipleRendered");
    BoundValueUtil.bindRenderedAttr("InventoryCheckBox", oawebbean, "IsInventoryCheckboxRendered");
    BoundValueUtil.bindRenderedAttr("ShopFloorCheckBox", oawebbean, "IsShopFloorCheckboxRendered");
    BoundValueUtil.bindRenderedAttr("DestinationTypeChoice", oawebbean, "IsDestinationTypeChoiceRendered");
    BoundValueUtil.bindRenderedAttr("SubInventory", oawebbean, "IsSubInventoryRendered");
    BoundValueUtil.bindRenderedAttr("SubInventoryMultiple", oawebbean, "IsSubInventoryMultipleRendered");
    BoundValueUtil.bindRenderedAttr("WorkOrder", oawebbean, "IsWorkOrderRendered");
    BoundValueUtil.bindRenderedAttr("WorkOrderMultiple", oawebbean, "IsWorkOrderMultipleRendered");
    BoundValueUtil.bindRenderedAttr("OperationReference", oawebbean, "IsOperationReferenceRendered");
    BoundValueUtil.bindRenderedAttr("OperationReferenceMultiple", oawebbean, "IsOperationReferenceMultipleRendered");
    BoundValueUtil.bindRenderedAttr("SuggestedBuyer", oawebbean, "IsSuggestedBuyerRendered");
    BoundValueUtil.bindRenderedAttr("SuggestedBuyerMultiple", oawebbean, "IsSuggestedBuyerMultipleRendered");
    BoundValueUtil.bindRenderedAttr("UnNumber", oawebbean, "IsUnNumberRendered");
    BoundValueUtil.bindRenderedAttr("UnNumberMultiple", oawebbean, "IsUnNumberMultiple");
    BoundValueUtil.bindRenderedAttr("HazardClass", oawebbean, "IsHazardClassRendered");
    BoundValueUtil.bindRenderedAttr("HazardClassMultiple", oawebbean, "IsHazardClassMultiple");
    BoundValueUtil.bindRenderedAttr("PCard", oawebbean, "IsPCardRendered");
    BoundValueUtil.bindRenderedAttr("ProjectOnSummary", oawebbean, "IsProjectRendered");
    BoundValueUtil.bindReadOnlyAttr("ProjectOnSummary", oawebbean, "IsProjectTaskReadOnly");
    BoundValueUtil.bindRenderedAttr("ProjectMultiple", oawebbean, "IsProjectMultipleRendered");
    BoundValueUtil.bindRenderedAttr("Task", oawebbean, "IsTaskRendered");
    BoundValueUtil.bindReadOnlyAttr("Task", oawebbean, "IsProjectTaskReadOnly");
    BoundValueUtil.bindDisabledAttr("Task", oawebbean, "IsTaskDisabled");
    BoundValueUtil.bindRenderedAttr("TaskMultiple", oawebbean, "IsTaskMultipleRendered");
    BoundValueUtil.bindRenderedAttr("Award", oawebbean, "IsAwardRendered");
    BoundValueUtil.bindDisabledAttr("Award", oawebbean, "IsAwardDisabled");
    BoundValueUtil.bindRenderedAttr("AwardMultiple", oawebbean, "IsAwardMultipleRendered");
    BoundValueUtil.bindRenderedAttr("ExpenditureType", oawebbean, "IsExpenditureTypeRendered");
    BoundValueUtil.bindRenderedAttr("ExpenditureTypeMultiple", oawebbean, "IsExpenditureTypeMultipleRendered");
    BoundValueUtil.bindRenderedAttr("ExpenditureOrg", oawebbean, "IsExpenditureOrgRendered");
    BoundValueUtil.bindRenderedAttr("ExpenditureOrgMultiple", oawebbean, "IsExpenditureOrgMultipleRendered");
    BoundValueUtil.bindRenderedAttr("ExpenditureItemDate", oawebbean, "IsExpenditureItemDateRendered");
    BoundValueUtil.bindRenderedAttr("ExpenditureItemDateMultiple", oawebbean, "IsExpenditureItemDateMultipleRendered");
    BoundValueUtil.bindRenderedAttr("Taxable", oawebbean, "IsTaxStatusRendered");
    BoundValueUtil.bindReadOnlyAttr("Taxable", oawebbean, "IsTaxStatusReadOnly");
    BoundValueUtil.bindRenderedAttr("TaxableMultiple", oawebbean, "IsTaxStatusMultiple");
    BoundValueUtil.bindRenderedAttr("TaxCode", oawebbean, "IsTaxCodeRendered");
    BoundValueUtil.bindReadOnlyAttr("TaxCode", oawebbean, "IsTaxCodeReadOnly");
    BoundValueUtil.bindRenderedAttr("TaxCodeMultiple", oawebbean, "IsTaxCodeMultipleRendered");
    BoundValueUtil.bindRenderedAttr("ChargeAccount", oawebbean, "IsChargeAccountRendered");
    BoundValueUtil.bindRenderedAttr("ChargeAccountMultiple", oawebbean, "IsChargeAccountMultipleRendered");
    BoundValueUtil.bindRenderedAttr("EnterChargeAccount", oawebbean, "IsEnterChargeAccountRendered");
    BoundValueUtil.bindRenderedAttr("TransactionCode", oawebbean, "IsTransactionCodeRendered");
    BoundValueUtil.bindRenderedAttr("TransactionCodeMultiple", oawebbean, "IsTransactionCodeMultipleRendered");
    BoundValueUtil.bindRenderedAttr("TransactionNature", oawebbean, "IsTransactionReasonCodeRendered");
    BoundValueUtil.bindRenderedAttr("TransactionNatureMultiple", oawebbean, "IsTransactionReasonCodeMultipleRendered");
    BoundValueUtil.bindRenderedAttr("GLDate", oawebbean, "IsGLDateRendered");
    BoundValueUtil.bindRenderedAttr("GLDateMultiple", oawebbean, "IsGLDateMultipleRendered");
    BoundValueUtil.bindRenderedAttr("ReqLineDFF", oawebbean, "IsReqLineDFFRendered");
    BoundValueUtil.bindRenderedAttr("ReqLineDFFMultiple", oawebbean, "IsReqLineDFFMultiple");
    BoundValueUtil.bindRenderedAttr("ReqDistDFF", oawebbean, "IsReqDistDFFRendered");
    BoundValueUtil.bindRenderedAttr("ReqDistDFFMultiple", oawebbean, "IsReqDistDFFMultiple");
    protected void prepareUI(OAPageContext oapagecontext, OAWebBean oawebbean, OAApplicationModule oaapplicationmodule)
    prepareButtons(oapagecontext, oawebbean);
    prepareTrainAndNavigation(oapagecontext, oawebbean);
    prepareDescriptiveFlexFields(oapagecontext, oawebbean);
    preparePCardDropdown(oapagecontext, oawebbean);
    OACellFormatBean oacellformatbean = (OACellFormatBean)oawebbean.findChildRecursive("ReqLineDFFCell");
    if(oacellformatbean != null)
    oacellformatbean.setColumnSpan(2);
    OACellFormatBean oacellformatbean1 = (OACellFormatBean)oawebbean.findChildRecursive("ReqDistDFFCell");
    if(oacellformatbean1 != null)
    oacellformatbean1.setColumnSpan(2);
    protected void prepareDescriptiveFlexFields(OAPageContext oapagecontext, OAWebBean oawebbean)
    OADescriptiveFlexBean oadescriptiveflexbean = (OADescriptiveFlexBean)oawebbean.findIndexedChildRecursive("ReqHeaderDFF");
    if(oadescriptiveflexbean != null)
    oadescriptiveflexbean.setContextListRendered(false);
    oadescriptiveflexbean.mergeSegmentsWithParent(oapagecontext);
    OADescriptiveFlexBean oadescriptiveflexbean1 = (OADescriptiveFlexBean)oawebbean.findIndexedChildRecursive("ReqLineDFF");
    if(oadescriptiveflexbean1 != null)
    oadescriptiveflexbean1.setContextListRendered(false);
    oadescriptiveflexbean1.mergeSegmentsWithParent(oapagecontext);
    OADescriptiveFlexBean oadescriptiveflexbean2 = (OADescriptiveFlexBean)oawebbean.findIndexedChildRecursive("ReqDistDFF");
    if(oadescriptiveflexbean2 != null)
    oadescriptiveflexbean2.setContextListRendered(false);
    oadescriptiveflexbean2.mergeSegmentsWithParent(oapagecontext);
    protected void prepareButtons(OAPageContext oapagecontext, OAWebBean oawebbean)
    OASubmitButtonBean oasubmitbuttonbean = (OASubmitButtonBean)oawebbean.findChildRecursive("IcxPrintablePageButton");
    oasubmitbuttonbean.setRendered(false);
    PorAppsContext porappscontext = ClientUtil.getPorAppsContext(oapagecontext);
    String s = porappscontext.getCurrentFlow();
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "prepareButtons().begin", 1);
    logParam(this, oapagecontext, "currentFlow", s, 1);
    if("ApproverCheckoutFlow".equals(s))
    OAWebBean oawebbean1 = oawebbean.findChildRecursive("Cancel");
    oawebbean1.setRendered(false);
    OAWebBean oawebbean2 = oawebbean.findChildRecursive("Save");
    oawebbean2.setRendered(false);
    protected void prepareTrainAndNavigation(OAPageContext oapagecontext, OAWebBean oawebbean)
    OAPageLayoutBean oapagelayoutbean = (OAPageLayoutBean)oawebbean;
    OANavigationBarBean oanavigationbarbean = (OANavigationBarBean)createWebBean(oapagecontext, "NAVIGATION_BAR", null, "CheckoutNavigationBar");
    oanavigationbarbean.setValue(1);
    oanavigationbarbean.setMinValue(1);
    oanavigationbarbean.setMaxValue(3);
    oanavigationbarbean.setFormSubmitted(true);
    OAPageButtonBarBean oapagebuttonbarbean = (OAPageButtonBarBean)oapagelayoutbean.getPageButtons();
    oapagebuttonbarbean.addIndexedChild(oanavigationbarbean);
    public void processFormRequest(OAPageContext oapagecontext, OAWebBean oawebbean)
    super.processFormRequest(oapagecontext, oawebbean);
    OAApplicationModule oaapplicationmodule = oapagecontext.getApplicationModule(oawebbean);
    String s = oapagecontext.getParameter("event");
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processFormRequest().begin", 1);
    logParam(this, oapagecontext, "event", s, 1);
    if(oapagecontext.isLovEvent())
    processLovEvents(oapagecontext, oaapplicationmodule, "summary", true);
    return;
    if("PPRUserEvent".equals(s))
    processPPREvents(oapagecontext, oaapplicationmodule, "summary", true);
    return;
    if("goto".equals(s))
    processNextButton(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    if("editLines".equals(s))
    processEditLines(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    if("save".equals(s))
    processSaveReq(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    if("submit".equals(s))
    processSubmitReq(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    if("cancel".equals(s))
    processCancelReq(oapagecontext);
    return;
    if("multipleLink".equals(s))
    processMultipleLink(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    if("addOneTimeAddr".equals(s))
    processAddOneTimeLocation(oapagecontext, oaapplicationmodule);
    return;
    if("editOneTimeAddr".equals(s))
    processEditOneTimeLocation(oapagecontext, oaapplicationmodule);
    return;
    if("deleteOneTimeAddr".equals(s))
    processDeleteOneTimeLocation(oapagecontext, oaapplicationmodule);
    protected void processNextButton(OAPageContext oapagecontext, OAWebBean oawebbean, OAApplicationModule oaapplicationmodule)
    ArrayList arraylist = new ArrayList(2);
    arraylist.add("populateValidateAndImplicitSave");
    arraylist.add("summary");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processNextButton().after populateValidateAndImplicitSave", 1);
    if(hasErrors(oapagecontext))
    processErrorRedirectsForCheckoutSummary(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    } else
    oapagecontext.setForwardURL("ICX_POR_REQAPPRV_LIST", (byte)0, null, null, true, "N", (byte)99);
    return;
    protected void processEditLines(OAPageContext oapagecontext, OAWebBean oawebbean, OAApplicationModule oaapplicationmodule)
    ArrayList arraylist = new ArrayList(3);
    arraylist.add("populate");
    arraylist.add("summary");
    arraylist.add("Y");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processEditLines().after populate", 1);
    ArrayList arraylist1 = new ArrayList(3);
    arraylist1.add("validateHeader");
    arraylist1.add("summary");
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processEditLines().before validateHeader", 1);
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist1);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processEditLines().after validateHeader", 1);
    if(hasErrors(oapagecontext))
    logMsg(this, oapagecontext, "validateHeader has errors", 1);
    processErrorRedirectsForCheckoutSummary(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    } else
    HashMap hashmap = new HashMap(2);
    hashmap.put("porMode", "display");
    hashmap.put("OA_SubTabIdx", "0");
    oapagecontext.forwardImmediately("ICX_POR_CHECKOUT_LINES", (byte)0, null, hashmap, true, "N");
    return;
    protected void processSaveReq(OAPageContext oapagecontext, OAWebBean oawebbean, OAApplicationModule oaapplicationmodule)
    ArrayList arraylist = new ArrayList(2);
    arraylist.add("populateValidateAndSave");
    arraylist.add("summary");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processSaveReq().after populateValidateAndSave", 1);
    if(hasErrors(oapagecontext))
    processErrorRedirectsForCheckoutSummary(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    } else
    HashMap hashmap = new HashMap(1);
    hashmap.put("porMode", "display");
    setReturnUrl(oapagecontext, "ICX_POR_CHECKOUT_SUMMARY", hashmap);
    oapagecontext.setForwardURL("ICX_POR_SAVE_CONFIRMATION", (byte)0, null, null, true, "N", (byte)99);
    return;
    protected void processSubmitReq(OAPageContext oapagecontext, OAWebBean oawebbean, OAApplicationModule oaapplicationmodule)
    oracle.jbo.domain.Number number = ClientUtil.getPorAppsContext(oapagecontext).getOrigReqHeaderId();
    ArrayList arraylist = new ArrayList(2);
    arraylist.add("populateValidateAndSubmit");
    arraylist.add("summary");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processSubmitReq().after populateValidateAndSubmit", 1);
    if(hasErrors(oapagecontext))
    processErrorRedirectsAfterSubmitReq(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    } else
    displaySubmitConfirmation(oapagecontext, number);
    return;
    protected void processCancelReq(OAPageContext oapagecontext)
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processCancelReq().begin cancelling req", 1);
    oapagecontext.setForwardURL("ICX_POR_SHOPPING_CART", (byte)0, null, null, false, "N", (byte)99);
    protected void processMultipleLink(OAPageContext oapagecontext, OAWebBean oawebbean, OAApplicationModule oaapplicationmodule)
    ArrayList arraylist = new ArrayList(3);
    arraylist.add("populate");
    arraylist.add("summary");
    arraylist.add("Y");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processMultipleLink().after populate", 1);
    ArrayList arraylist1 = new ArrayList(3);
    arraylist1.add("validateHeader");
    arraylist1.add("summary");
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processEditLines().before validateHeader", 1);
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist1);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processEditLines().after validateHeader", 1);
    if(hasErrors(oapagecontext))
    logMsg(this, oapagecontext, "validateHeader has errors", 1);
    processErrorRedirectsForCheckoutSummary(oapagecontext, oawebbean, oaapplicationmodule);
    return;
    } else
    HashMap hashmap = new HashMap(2);
    hashmap.put("porMode", "display");
    hashmap.put("OA_SubTabIdx", "-1");
    oapagecontext.forwardImmediately("ICX_POR_CHECKOUT_LINES", (byte)0, null, hashmap, true, "N");
    return;
    protected void processAddOneTimeLocation(OAPageContext oapagecontext, OAApplicationModule oaapplicationmodule)
    ArrayList arraylist = new ArrayList(3);
    arraylist.add("populate");
    arraylist.add("summary");
    arraylist.add("N");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processAddOneTimeLocation().after populate", 1);
    HashMap hashmap = new HashMap(1);
    hashmap.put("porMode", "fromOneTime");
    setReturnUrl(oapagecontext, "ICX_POR_CHECKOUT_SUMMARY", hashmap);
    HashMap hashmap1 = new HashMap(2);
    hashmap1.put("porMode", "add");
    hashmap1.put("porUsage", "all");
    oapagecontext.setForwardURL("ICX_POR_ONE_TIME_LOCATION", (byte)0, null, hashmap1, true, "N", (byte)99);
    protected void processEditOneTimeLocation(OAPageContext oapagecontext, OAApplicationModule oaapplicationmodule)
    ArrayList arraylist = new ArrayList(3);
    arraylist.add("populate");
    arraylist.add("summary");
    arraylist.add("N");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processEditOneTimeLocation().after populate", 1);
    OAViewObject oaviewobject = (OAViewObject)oaapplicationmodule.findViewObject("PoRequisitionLinesVO");
    oaviewobject.first();
    HashMap hashmap = new HashMap(1);
    hashmap.put("porMode", "display");
    setReturnUrl(oapagecontext, "ICX_POR_CHECKOUT_SUMMARY", hashmap);
    HashMap hashmap1 = new HashMap(1);
    hashmap1.put("porMode", "edit");
    oapagecontext.setForwardURL("ICX_POR_ONE_TIME_LOCATION", (byte)0, null, hashmap1, true, "N", (byte)99);
    protected void processDeleteOneTimeLocation(OAPageContext oapagecontext, OAApplicationModule oaapplicationmodule)
    if(isLoggingEnabled(oapagecontext, 1))
    logMsg(this, oapagecontext, "processDeleteOneTimeLocation().begin", 1);
    ArrayList arraylist = new ArrayList(2);
    arraylist.add("processDeleteOneTimeLocation");
    arraylist.add("summary");
    executeServerCommand(oapagecontext, oaapplicationmodule, "CheckoutSummarySvrCmd", arraylist);
    public CheckoutSummaryCO()
    public static final String RCS_ID = "$Header: CheckoutSummaryCO.java 115.21.11510.11 2009/04/03 06:18:36 rojain ship $";
    public static final boolean RCS_ID_RECORDED = VersionInfo.recordClassVersion("$Header: CheckoutSummaryCO.java 115.21.11510.11 2009/04/03 06:18:36 rojain ship $", "oracle.apps.icx.por.req.webui");
    }

  • Need help formatting List (checkbox list) web app items on a page.

    See this page: Joseph Cancilla
    As you can see from the above example the List (checkbox list) items are all running together. I can't figure out a way to separate the items.
    i.e. DANCE: Ballet,Ballroom should read DANCE: Ballet, Ballroom with a space after the comma.
    Seems like a simple problem but having a hard time finding a solution. Any help would be appreciated.
    Thanks!

    Hi Matt, You should read about web apps here:
    http://helpx.adobe.com/content/help/en/business-catalyst/partner/web-apps-module-create-cu stom.html
    And module reference here:
    http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html
    If you insert through the admin and click customise you will see the option to use listbackup. You will also see that layout availible via FTP and in the admin or DW.
    Here you can see where in the module paramaters the option to choose listbackup occurs:
    http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html#id_65138

  • Working in FCP6, open a project, sequence not showing ANY fonts from motion master templates. Start new sequence and they appear fine. Whats up with it?

    So here's what I've got: one of the first gen Intel Macbooks with 2gb RAM, running a fresh install of FCS2, fully updated. I pulled out my external with my project on it (saved in the same version), that I keep my demo reel updated on. I've always used the motion text master template files to label each clip and for some reason, this round the text isn't appearing. Let me be clear just how weird this is: the template file will show up in the viewer, but any file set in this sequence will be blank. If there is any graphics to the file, IT shows up, but not the text. I opened up a new sequence and and first added a new master file to it, and it showed up on that sequence. I then went to the old sequence and copy/pasted the clips in it to the new sequence and the text shows up as well. What is up with the original sequence that is causing this issue??? Any thoughts? (unfortunately, my copy of Final Cut is a "Not for Resale" (NFR) so I can't call in for support.
    Thanks in advance!!!

    Hi Miro,
    I was just experiencing a similar problem today.  In my situation I was getting the diagonal lines and the new project wasn't actually being trimmed, it was the same size as the original with all of the media from the original project .
    It turns out that even though I was selecting 3 specific sequences out of 20 the Project Manager was ignoring that selection, it brought over those 3 sequences but all of the media from the other sequences.  I think this is what was creating the problem.
    The trim unused media box  (or whatever the check box says) was greyed out.
    My solution was to create a new clean project and import the 3 sequences I wanted to create a new trimmed project from.
    Then using the Project Manager everything worked as expected, the project was trimmed down and there were no diagonal lines.  I unchecked the "rename media" option, not sure if that was necessary part of the solution.
    This seems like a bug to me, we shouldn't have to create a new project, it's an extra unwanted step and clutter on our systems.
    Hope that helps! 
    I'm on Mac 10.8.5 and Premiere 7.0.1, eagerly awaiting to update once the bug fixes to the bug fixes are fixed.
    Gerry

  • Help needed for creating new component in web ui

    hi experts,
          i need documentation on the component workbench. i need to cretae a new assignment block in web UI, similar ti the items assignemnt block in opportunity screen.
    Where can i find material to learn how to develop new components using component workbench?
    Thanks,
    Shantanu.

    Hi Shantanu,
    In fact, you need to create a context node. You can create this context node using the wizard. Click with right button in "Context node" of the view and follow the steps.
    Best regards,
    Caíque Escaler

  • Is there a way to sync notes from my iPod Touch to the new Mountain Lion Notes app on my Mac without setting up a Mail account?

    I want to get notes off of my iPod, but I don't want to make set up a Mail account because I just check my mail online, and I don't want to hassle with using the app.

    You could probably use something like PhoneView
    http://www.ecamm.com/mac/phoneview/
    but, frankly, I thnk that's more of hassle than just setting up an iCloud or other IMAP account on the iPad.
    Even if Notes syncing is the only feature you use, it's going to be a far more seemless experience.
    Matt

  • I recently transferred some photos from an old ipad to a new ipad using the app "simpletransfer", all of the photos that transfered however, saved into my photostream and turned my photostream on. does anyone know anything about this app because i have no

    other idea as to how the photos i transferred ended up on my photo stream, which i had initially turned off.

    Welcome to the Apple Community.
    Photo stream simply synchronises your photos between all your devices. If you don't want to use it, disable it at settings > iCloud, it won't affect any photos in your camera roll.

  • From where to Start

    Hi all,,I am new learner to ABAP. I want to know from where we need to start ABAP.Becaz as of now I am not following any order.Can anyone tell me the order to follow..
    thanks in advance

    Hi,
    http://cma.zdnet.com/book/abap/index.htm
    Here are the few links which covers topic by topic.
    http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm SAP Online Help For Dictionary.
    http://www.sappoint.com/abap.html
    for SAPscripts
    ABAP objects and control technology
    IDOC
    SapScript
    Performance tuning
    BAPI Programming
    Visual Basic Integration - Using the DCOM Connector and BAPI OCX (Only available in Danish)
    JAVA and the SAP java connector
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/abapindx.htm
    for keywords
    very useful link for all
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    http://www.sapgenie.com/abap/index.htm
    http://www.sap-img.com/abap.htm
    http://www.sapdevelopment.co.uk/tips/tipshome.htm
    http://help.sap.com/printdocu/core/Print46c/en/Data/Index_en.htm
    http://sap.ittoolbox.com/nav/t.asp?t=322&p=322&h1=322
    http://sap.ittoolbox.com/nav/t.asp?t=448&p=448&h1=448
    http://www.thespot4sap.com/
    http://www.kabai.com/abaps/q.htm
    http://www.geocities.com/mpioud/Abap_programs.html
    http://www.sapgenie.com/abap/tips_and_tricks.htm
    http://www.sapassist.com/code/d.asp?whichpage=1&pagesize=10&i=10&a=c&o=&t=&q=&qt=
    For FAQ
    http://www.sap-img.com/abap/more-than-100-abap-interview-faqs.htm
    http://www.sapgenie.com/faq/abap.htm
    Modulepool
    http://sap.mis.cmich.edu/sap-abap/abap09/sld007.htm
    BAPI-step by step
    http://www.sapgenie.com/abap/bapi/example.htm
    Weblog for receive email and processing it through ABAP
    /people/thomas.jung3/blog/2004/09/09/receiving-e-mail-and-processing-it-with-abap--version-610-and-higher
    BADI
    http://www.sapdevelopment.co.uk/enhance/enhance_badi.htm
    For Logical database
    http://help.sap.com/saphelp_46c/helpdata/en/9f/db9bed35c111d1829f0000e829fbfe/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/6a/8b14e2340d11d5b3ba0050dae02d7c/content.htm
    very useful
    http://help.sap.com/saphelp_46c/helpdata/EN/35/2cd77bd7705394e10000009b387c12/frameset.htm
    Useful link to websites
    http://www.hernangn.com.ar/sap.htm
    Useful for background
    http://www.sappoint.com/basis/bckprsng.pdf
    http://help.sap.com/saphelp_nw04/helpdata/en/6f/08703713bf277ee10000009b38f8cf/frameset.htm
    http://publib.boulder.ibm.com/infocenter/wbihelp/index.jsp?topic=/com.ibm.wbix_adapters.doc/doc/mysap4/sap4x41.htm
    Table control in BDC
    http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm
    For posting weblog,
    /people/sap.user72/blog/2005/06/28/sdn-weblogs-making-it-easier
    Dynamic Internal table -weblog in sdn
    /people/subramanian.venkateswaran2/blog/2004/11/19/dynamic-internal-table
    Smartforms
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    http://www.allsaplinks.com/smartform_example.html
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    Workflow
    http://help.sap.com/saphelp_46c/helpdata/en/c5/e4b7eb453d11d189430000e829fbbd/frameset.htm
    http://www.sap-img.com/workflow/sap-workflow.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/a5/172437130e0d09e10000009b38f839/frameset.htm
    For examples on WorkFlow...check the below link..
    http://help.sap.com/saphelp_47x200/helpdata/en/3d/6a9b3c874da309e10000000a114027/frameset.htm
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PSWFL/PSWFL.pdf
    http://help.sap.com/saphelp_47x200/helpdata/en/4a/dac507002f11d295340000e82dec10/frameset.htm
    http://www.workflowing.com/id18.htm
    http://www.e-workflow.org/
    http://web.mit.edu/sapr3/dev/newdevstand.html
    ALV
    http://www.geocities.com/mpioud/Abap_programs.html
    http://72.14.203.104/search?q=cache:NjFXTBr5lX8J:www.sap-img.com/abap/an-interactive-alv-report.htmALVInteractivereportsABAP&hl=en&gl=in&ct=clnk&cd=5
    Mail
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm(for changing sender address)
    http://www.sap-img.com/fu016.htm
    http://www.geocities.com/mpioud/Z_EMAIL_ABAP_REPORT.html
    http://www.thespot4sap.com/Articles/SAP_Mail_SO_Object_Send.asp
    http://www.sapdevelopment.co.uk/reporting/email/attach_xls.htm
    Sending mail in background or spool mail
    http://www.sap-basis-abap.com/sapac018.htm
    BOM Explosion
    /people/prakash.singh4/blog/2005/05/15/explode-boms-in-enterprise-portal-using-htmlb-tree--part-1-abap
    BOM
    http://help.sap.com/saphelp_erp2005/helpdata/en/ea/e9b7234c7211d189520000e829fbbd/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/d1/2e4114a61711d2b423006094b9d648/frameset.htm
    http://www.sap-img.com/sap-sd/sales-bom-implementation.htm
    http://www.sap-basis-abap.com/sappp007.htm
    OLE
    http://www.sapgenie.com/abap/ole.htm
    http://help.sap.com/saphelp_46c/helpdata/en/59/ae3f2e488f11d189490000e829fbbd/frameset.htm
    ALVGRID with refresh
    http://www.geocities.com/mpioud/Z_DEMO_ALV_REFRESH_BUTTON.html
    For language setting and decimal separator
    /people/horst.keller/blog/2004/11/16/abap-geek-7-150-babylonian-confusion
    Oracle queries
    http://sqlzoo.net/
    To format SQL
    http://www.sqlinform.com/
    SCOT settings
    http://www.sap-img.com/basis/basis-faq.htm
    Status Icon [ALV,Table Control,Tab Strip]
    http://www.sapdesignguild.org/resources/MiniSG-old/from_develop/norm_status_icons.htm#positioning_4
    ALV Group Heading
    http://www.sap-img.com/fu037.htm
    For multiMedia
    /people/thomas.jung3/blog/2005/05/11/using-classic-activex-controls-in-the-abap-control-framework
    Uploading LOGO in SAP
    http://www.sap-img.com/ts001.htm
    LSMW
    http://www.sap-img.com/sap-data-migration.htm
    http://www.sapgenie.com/saptech/lsmw.htm
    http://www.allsaplinks.com/lsmw.html
    http://sapabap.iespana.es/sapabap/manuales/pdf/lsmw.pdf
    http://www.sap.info/public/INT/int/glossary/int/glossaryletter/Word-17643ed1d6d658821_glossary/L#Word-17643ed1d6d658821_glossary
    http://www.scmexpertonline.com/downloads/SCM_LSMW_StepsOnWeb.doc
    OOPS ALV
    OOPS - Events.
    Editable ALV
    Tree
    TabStrip
    Multigrid
    Check this for basic concepts of OOPS
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/abap%20objects/abap%20code%20sample%20to%20learn%20basic%20concept%20of%20object-oriented%20programming.doc
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/alv%20grid/abap%20code%20sample%20to%20display%20data%20in%20alv%20grid%20using%20object%20oriented%20programming.doc
    Tabstrip
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/alv%20grid/abap%20code%20sample%20for%20tab%20strip%20in%20alv.pdf
    Editable ALV
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap%20code%20samples/alv%20grid/abap%20code%20sample%20to%20edit%20alv%20grid.doc
    Tree
    http://www.sapdevelopment.co.uk/reporting/alv/alvtree/alvtree_usrint.htm
    General Tutorial for OOPS
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/an%20easy%20reference%20for%20alv%20grid%20control.pdf
    Function Module
    http://www.geocities.com/victorav15/sapr3/abapfun.html
    My Links
    Smartforms
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/ccab6730-0501-0010-ee84-de050a6cc287(subroutine)
    https://sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/8fd773b3-0301-0010-eabe-82149bcc292e
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/3c5d9ae3-0501-0010-0090-bdfb2d458985
    Table Control
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/abap-code-samples/table%20control%20in%20abap.pdf
    HRABAP
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPA/PAPA.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PAPD/PAPD.pdf
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/PYINT/PYINT_BASICS.pdf
    http://www.atomhr.com/training/Technical_Topics_in_HR.htm
    http://www.planetsap.com/hr_abap_main_page.htm
    you can see some Standard Program examples in this one..
    http://www.sapdevelopment.co.uk/programs/programshr.htm
    http://searchsap.techtarget.com/originalContent/0,289142,sid21_gci1030179,00.html?Offer=SAlgwn12604#Certification
    These are the FAQ's that might helps you
    http://www.sap-img.com/human/hr-faq.htm
    http://www.sapgenie.com/faq/hr.htm
    RFC
    http://johnv.sapgenie.com/docs/RFC.pdf
    http://zerone.samcheok.ac.kr/Asp_pr/Language/.%5Cuploadfile%5CJCo%20Tutorial-1.pdf
    http://www.sapgenie.com/sapgenie/docs/SAP%20Connectors.doc
    BADI
    http://esnips.com/doc/10016c34-55a7-4b13-8f5f-bf720422d265/BADIs.pdf
    http://esnips.com/doc/e06e4171-29df-462f-b857-54fac19a9d8e/ppt-on-badis.ppt
    http://esnips.com/doc/43a58f51-5d92-4213-913a-de05e9faac0d/Business-Addin.doc
    http://esnips.com/doc/1e10392e-64d8-4181-b2a5-5f04d8f87839/badi.doc
    http://esnips.com/doc/365d4c4d-9fcb-4189-85fd-866b7bf25257/customer-exits--badi.zip
    http://esnips.com/doc/3b7bbc09-c095-45a0-9e89-91f2f86ee8e9/BADI-Introduction.ppt
    Regards,
    Laxmi.
    Edited by: Laxmi on Mar 14, 2008 6:24 PM

  • Do i need to start looking elsewhere...?

    Hi All,
    Something has been bugging me for the last year or two and that's the Portal and ABAP. I've been involved in Portal technology for the last 6 years and enjoying it. I've been in development, administration, and going through the ups and downs of NWDI.
    Lets start with the Portal, I've been hearing that SAP does not have a strong feeling about the portal (long term) especially with business client in the mix. I mean a friend of mine questioned what does the portal really offer to customers these days? These things concern me as wondering if i reached the point where i need to start looking at adding different skills to my arsenal of other SAP skills (all Java and Portal related) or in need of a career change. The second challenge is trying to break into ABAP, I've reached the conclusion that in order to call yourself an SAP developer you got to know ABAP. All I read these days is how SAP is moving all their existing applications to Web Dynpro for ABAP etc etc etc. Since I don't know procedural development is it wise to jump into ABAP OO and starting learning Web Dynpro for ABAP? I have alot of knowledge in Web Dynpro for Java fo this should hold me in good stead. Yeah, lots to think about but thats the nature of IT...never stop learning i guess. It would be nice to hear peoples thoughts on these matters if anyone else is going through the same concerns.
    Regards,
    Raj

    Hi,
    In my opinion, learning WD ABAP is not a bad idea. There are lots of ABAP developers but good ABAP developers with OO ABAP and WD ABAP skills are rarer. And your WD Java experience will really help you.
    Regards,
    Pierre

  • I can't find Personal Hotspot or Set Up Personal Hotspot on my 4s, does it have to be downloaded? From where?

    I can't find Personal Hotspot or Set Up Personal Hotspot in Settings on my 4s, does it have to be downloaded first? From where? I can't find it in the app store.

    You must be using a supported carrier that supports the personal Hotspot feature, and you must subscribe to a data plan that permits tethering. Your account must be provisioned properly for an iPhone.
    A list of carriers, including which ones support this feature can be found here: http://support.apple.com/kb/ht1937

  • Multiple records from IDOC should be processed one by one Thru Web service

    Hi Experts,
    I have a requirement where in the idoc (custom one) will collect data from R/3 system at the frequency of One hour and send them to XI and from XI i need to call the Web serice which would post only one record at a time. In this case how should i manage by mapping. Its something like records from a Table needs to be posted sequentially thry Web service at the receiving end..
    Thanks for your replies in advance.
    Regards,
    Rajesh

    Hi,
    Please see the below links
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm - collecting IDocs without BPM
    /people/michal.krawczyk2/blog/2005/12/04/xi-idoc-bundling--the-trick-with-the-occurance-change - IDOC bundling
    idocs - /people/sravya.talanki2/blog/2005/08/24/do-you-like-to-understand-147correlation148-in-xi
    Idoc - Multiple - interfaces - Idoc to multiple interfaces in XI
    Multiple mappings into one Im - Multiple message mappings in one integration scenario
    Multiple Idocs
    How to send Multiple Idocs?
    Regards
    Chilla..

  • Where has the Web app tutorial gone?

    Hi, can anyone tell me where this article has gone:
    Building a basic web app: http://kb.worldsecuresystems.com/868/cpsid_86856.html
    It keeps forwarding to here: http://kb.worldsecuresystems.com/portal_landing_page/Partner.html?page=733:bc_733:html
    cheers

    Hi Elle,
    Let me check with our DocTeam.
    -Sidney

  • Hi, just got a new computer and need to move my library from the old one to the new one.  Does anyone know how to do this or where I can get the information?  Thanks!!

    I just got a new computer and need to move my itunes library from my old computer to the new computer.  Does anyone know how to do this or where I can get the information? Thanks!

    If you Google ipod nano 6th generation manual, you can download the PDF manual. Here's a quote from page 19:
    Transfer purchased content to another computer:
    1 Open iTunes on the other computer and choose Store > Authorize This Computer.
    2 Connect iPod nano to the newly authorized computer.
    3 In iTunes, choose File > Transfer Purchases from iPod.
    Songs that are not from the iTunes store can be copied to the new computer, and you just have to do File>Add to Library to get them into iTunes. And if you don't plan to continue using your old computer, you should deauthorize it because you only get 5 authorizations for iTunes store purchases, and this will cancel out the authorization on the old computer.

  • After moving my music library from my old mb to the new one, my new mb pro does not play the files evenly. It takes a break for two sec's and starts playback where it stopped. Ideas anyone?

    After moving my music library from my old mb to the new one, my new mb pro does not play the files evenly. It takes a break for two sec's and starts playback where it stopped. Ideas anyone?

    I may have found an answer here:
    http://www.ilounge.com/index.php/articles/comments/moving-your-itunes-library-to -a-new-hard-drive
    They only thing I can assume is that my external hard drive was slow to start and iTunes defaulted to its old directory (see the last paragraph at the link above). However, once my external was recognized shouldn't everything have fixed itself?
    Message was edited by: williamson42
    Message was edited by: williamson42

Maybe you are looking for

  • Multiplexing errors... all the time...

    I made a nice dvd project out of my imovie projects and it looks great while trying it out on the mac. But at the end of the whole decoding and trying it to save as image, every time I get a Multiplexing error. IS there a way to fix this? My harddriv

  • Mail doesn't send stationary header image

    Hey guys, I'm working on a custom made stationary but I'm running into some problems. When I compose a message using my stationary ... everything appears like I want but when I hit SEND and refresh my inbox, all I get is the bottom part of the mail w

  • Help! Typewriter function lost in Acrobat X Std

    I use Acrobat X Standard on a PC to fill in interactive forms created by the Cook County Probate Court.  I have been doing this since before Acrobat X came out.  They are interactive forms, but sometimes there are notations that don't go into a pre-c

  • Black spot on centre of the screen

    I am getting a Black spot on the centre of the screen after every call continuosly on my Blackberry 9320 handset.( Purchased in Aug 2013 ) The black spot remains for about 3 minutes, sometimes a little more times and disappears after I presss the pow

  • I upgraded my mac software to mountain lion and lost my iPhoto and all my photos in it!

    I stupidly updated my software om my macboook pro to be able to set up icloud. Now it says I can no longer access Iphoto (so ALL of my photos are suddenly gone!!??!!) I read that people are just down;loading iphoto again and can access all their old