From where default dropdown is coming ?

Hi experts ,
in UI servicepro i have a a standard field in which a dropdown is coming
this field is in component btsubject field name is codegrouppe
i want to know how it is fetching the values for this dropdown .
plz help
thnx in advance

Abhinav
     Go to the Class : CL_BTSUBJEC_SUBJECTEF_CN01
     Method             : GET_V_CODEGRUPPE 
    Put a break point inside this method inorder to see the list of values that will be displayed.
Thanks
Allot points if this helps !

Similar Messages

  • From Where POP-UP is coming?

    Hi Experts,
    I hv developed a ALV report,so, When I am running it, I am getting one Info. POP-UP saying that,
    <i><b>"Business Partner 123456789 is marked for deletion"</b></i>
    (Actually, I hv given one Info MESSAGE for some other purpose, this message is working well.)
    But, I dont know that, From Where the above said Info POP-UP is coming?
    Pls. let me know,
    thanq,

    Hi,
    Yes, I am using the BAPISORDER_GETDETAILEDLIST and I am using it like,
    CALL FUNCTION 'BAPISDORDER_GETDETAILEDLIST'
        EXPORTING
          i_bapi_view          = i_bapi_view
        TABLES
          sales_documents      = sales_documents
          order_headers_out    = order_headers_out
          order_items_out      = order_items_out
          order_business_out   = order_business_out
          order_partners_out   = order_partners_out
          order_address_out    = order_address_out
          order_conditions_out = order_conditions_out.
    and from here my code starts!
    Any clue?
    thanq

  • 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");
    }

  • HT204088 I have purchases on my iTunes account that are not mine. Where could this be coming from?

    I keep getting charged for purchases that are not mine. I don't know where they are coming from and I checked my childrens accounts. Where could they be coming from?

    Hello there duxmania,
    Thank you for using Apple Support Communities!
    I have a couple of recommendations for you here. First for the purchases that you did not authorize, I would reach out to the iTunes store support directly.
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    Find the email receipt for your purchase.
    Click Report a Problem under the app that is having the issue.
    When prompted, enter the Apple ID and password you used to purchase the item, then click Report a Problem.
    Click Report a Problem next to the item you are having an issue with.
    From the Choose Problem dropdown menu, choose the appropriate issue.
    Follow the onscreen instructions and—if prompted—type a description of the problem into the text field.
    Click Submit to have your issue reviewed.
    You may also want to change your Apple ID password.
    Apple ID: Changing your password
    http://support.apple.com/kb/HT5624
    Regards,
    Sterling

  • How can I make rectangular speech bubbles that adapt to the text inside them without the "arrow" that points towards where the bubble is coming from getting changed?

    I have to make lots of speech bubbles (150+) that all have texts inside them which differ in length. I want the speech bubbles to look the same in terms of style, but I need different sizes of course for each text. This means that the rectangular part of the speech bubble should adapt in length and width to the text inside it, while the "arrow" pointing towards where the bubble is coming from (e.g. the person who speaks) should stay the same on every bubble. So is there a way or a workaround to make such "adapting" speech bubbles?
    I appreciate any kinds of help
    Thanks in advance!

    Here's another way I found:
    1. Draw a speech bubble. Mine is a rectangle with rounded corners and a triangular pointer added with Pathfinder > Add
    2. Drag out a frame the same size as the speech bubble. Select the speech bubble and Copy; then select the empty frame and choose Edit > Paste Into...
    3. Alt-Drag the frame with the pasted speech bubble to make a copy, then crop one copy to leave only the top of the bubble showing, and crop the other copy to leave only the bottom.
    4. Drag out a text frame and insert a table consisting of 1 column, 3 rows. Set the text frame to Autosize > Height Only.
    5. Set the stroke/fill of the top and bottom rows to none, and style the middle row to match the speech bubble, (in my case a white fill and 2pt stroke; left and right).
    6. Anchor (paste) a copy of the speech bubble top in the top table row, and a copy of the speech bubble bottom in the bottom row.
    Getting the 3 parts to match up with is where you just have to work on it until you get it right. Use the positioning tools in Anchored Object options and the column width setting in Cell options to line everything up.
    Enter your text in the middle row. (Hey, look at that...a valid application of Comic Sans!) With the Cell Height set to an "At Least" setting, the cell will expand to fit whatever text you enter, pushing the the bottom row down, with the text frame auto-sizing to keep everything in play...

  • My libraries panel is missing from the window dropdown. Where else can I access it? Is that normal?

    My libraries panel is missing from the window dropdown. Where else can I access it? Is that normal?

    Lisa,
    You may try the list (or go straight to 6) if you have updated to Yosemite without reinstalling).
    The following is a general list of things you may try when the issue is not in a specific file (you may have tried/done some of them already); 1) and 2) are the easy ones for temporary strangenesses, and 3) and 4) are specifically aimed at possibly corrupt preferences); 5) is a list in itself, and 6) is the last resort.
    If possible/applicable, you should save curent artwork first, of course.
    1) Close down Illy and open again;
    2) Restart the computer (you may do that up to 3 times);
    3) Close down Illy and press Ctrl+Alt+Shift/Cmd+Option+Shift during startup (easy but irreversible);
    4) Move the folder (follow the link with that name) with Illy closed (more tedious but also more thorough and reversible);
    5) Look through and try out the relevant among the Other options (follow the link with that name, Item 7) is a list of usual suspects among other applications that may disturb and confuse Illy, Item 15) applies to CC, CS6, and maybe CS5);
    Even more seriously, you may:
    6) Uninstall, run the Cleaner Tool (if you have CS3/CS4/CS5/CS6/CC), and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Where is the music coming from? It's not affiliated w/ any of my open web pages. Make it stop!

    This only happens in MFF (I have 3.6). When the browser opens and the tabs begin loading, this horrible music starts playing. None of the sites I have in the tabs play music. All of my plug-ins seem to be Microsoft related. I have XP and my AV is Kaspersky and I run MFF in safe mode. Where is this music coming from and how can I get it to stop? Please help. Thank you in advance!

    A week after my first call to AppleCare, I called again for help. This time the Tech was very helpful and she did not ask for additional $$.
    My computer does not have an Airport card in it. To get my new Extreme-n to recognize my Express so that I can send iTunes wirelessly to my stereo, we spent an hour on the phone working through a manual setup. It included an initial hard-wired Ethernet connection to both Airports. It included manually copying the AirportID number from one device to the other, and then the reverse. It also took three different “hard-resets” of my Express. My “simple” Extreme-n to Express wireless connection is now working properly.
    Kudos to my Tech; she was very knowledgeable and very patient.
    Boos to Apple Extreme-n team for releasing a product without a comprehensive setup utility. This should have been a simple ten-minute set-up procedure, just like it was for my old Airport Extreme base station.
    Bottom line: Keep calling AppleCare until you get a good Tech to help.
    G4 Desktop   Mac OS X (10.4.8)  

  • Determining where a user is coming from

    I was wondering if there is anyway (through a RequestContext maybe?)
    that I can determine where a user is coming from in terms of the
    JSP/ViewBean he/she was at.
    So for example, if I'm on the Login page of my app and there's an
    associated LoginViewBean, when the user clicks 'login', he will go to
    the application's homepage (as long as he's a valid user). What I need
    to do is determine from my homepage ViewBean, where the user just
    came from. In this case I would like to obtain an object representing
    the LoginViewBean. Is there a hook into the S1AF to get this kind of
    information?
    Thanks

    Throwable t = new Throwable()
    t.fillInStackTrace();
    StackTraceElement[]      st = t.getStackTrace();
    System.out.println( st[st.length-1].getMethodName() );??

  • So I deleted all my apps pictures music etc. and it's saying I have 1.4 GB available where is that space coming from

    So I deleted all my apps pictures music etc. and it's saying I have 1.4 GB available where is that space coming from ? Please help

    Check your Videos and your text messages - if there are any pics or videos in text messages, they can take up a lot of space.

  • Sharepoint List to Telerik Grid, Where data is not coming from database into List.

    SharePoint List to Telerik Grid, Where data is not coming from database into List.
    Here, i have a SharePoint list , where configurable text are stored, using some utility.
    I want to convert that SharePoint list into Telerik grid, with all Editable Option which i have in SharePoint.

    I know little about Telerik Grid, only find following article about Telerik integrate with SharePoint:
    http://www.telerik.com/help/aspnet-ajax/moss-spradlistview_designer_general.html
    a similar question:
    http://www.telerik.com/forums/how-to-bind-to-a-sharepoint-list-using-radgrid
    Thanks,
    Qiao Wei

  • Where is Data Usage coming from in Wi-Fi environment??

    I'm using new iPhone. In less than 3 hours I accumulated some 1.8 MB of Data Usage, eventhough I'm on Wi-Fi network.
    Any advice will be appreciated!

    I don't understand what cross posting means.  It's the first time I ever tried to ask a question.  I only wanted to understand why my son's data is being used up when we have wifi.  I guess I don't understand the whole process of trying to ask a simple question.  I guess I'll have to just call verizon.
    Date: Sat, 15 Dec 2012 14:30:52 -0700
    From: [email protected]
    To: <Email address removed for privacy per the Verizon Wireless Terms of Service.>
    Subject: Re: Where is Data Usage coming from in Wi-Fi environment?? - Re: Where is Data Usage coming from in Wi-Fi environment??
    Message was edited by: Verizon Moderator

  • Can I open my G5 to see where the squeaking is coming from?

    I made an earlier post about the squeaking noise coming from my G5. Thanks to everyone who tried to help but the sound isn't an electronic squeak, its an aucostic one, such as squeaking wheel or chair. I was wondering while the computer is on, if I could take off the side panel (leaving the see through one on) to see where the noise is coming from. Can you do this or will it shut down?

    This squeaking is a result of the pull out fan assembly shaking when turning. The plastic portion when the fan plugs in/pull out gets slightly shaken loose during delivery. Just shutdown you Mac, open it and pull out the fan (in front of the RAM) and then just firmly but not to hard push the fan assembly back in. Just make sure it is in there nice and good.
    I had the same thing happen to me when I first got my G5. It took me couple weeks to figure out where the squeak was coming from. One more thing, just be sure to always have a can of compressed air handy because the G5 has a real good tendency to suck in dust from the room. Clean your G5 around every two months to keep it clear of dust.

  • When I email myself a picture from my iphone 4s, the email is sent from an email account that I don't have set up as the default account. How can I set it up so that the emails are coming from the default account selected in Mail?

    Under my mail tab, it shows that I have a specific email account set up as a default account. That is the account I would like for me emails to be sent from. But when I actually send out an email such as a picture, it is being sent from one of my different email accounts that is not set up as the default. How can I change this so that future messages will be sent from the default account? Any advice would be appreciated. Thanks!!

    All photo attachments received or sent with the iPhone's Mail app appear inline or viewed in place within the body of the message when viewed with the iPhone's Mail app which is the same with the Mail.app on a Mac. A photo attachment that appears inline or viewed in place does not mean the photo was not sent as a true attachment to the message. A photo attached to a message with the iPhone's Mail app is sent as a true attachment to the message. How an inline or viewed in place attachment appears on the recipient's end depends on the recipient's email client. If the recipient's email client does not support viewing an attached photo inline or viewed in place within the body of the message, the attached file must be manually selected and opened to viewed.
    I am getting the email with the Picture Inline ( not as attachment),The picture is shown distorted , no metter what i do and with what mail client i am using (Gmail\Hotmail\My Enterprise exchange mail), i still get the same behavior.
    With which email client?

  • How to find where the data is coming from in appended field for BW extract

    I am not an ABAP'er ... And this problem is about a BW Extractor
    I am extracting data for my (Utility Industry) Sales Statistics Cube using 0UC_SALES_STATS_01 data source. The Extract structure is BIW_ISU_ESTA and we are appending the structure with a few fields:
    I_ZAHL1
    I_ZAHL2
    I_ZAHL3
    I see some similar fields in DBERCHZ1 which are not the same. The data gets filled in the above fields somehow. I need to find out how and where. We have now diffrent variation of the same data and I'd like to extract that transactional data as well using the same fields rather than appending more fields to an already huge extract structure. When I click on the fields in BIW_ISU_ESTA, it takes me no where. I also tried out the extractor program (RSA3) in debug mode but somehow the fields are already populated. I tried using the ABAP dictinary but can't find a way to find these fields there.
    Any help would be appreciated.
    Thanks a lot.
    Bilal

    Thanks Renata,
    This is a standard business content extractor with the fields enhanced. Usually we have some user exits to populate the fields but in this case we only append the extract table. I couldn't see these fields being part of any existing includes in the extract struct but some how they get populated. I guess system knows from where to copy the data.
    Thanks for your reply though. I am closing this thread as it seems not a very popular cube.
    Bilal

  • Unable  to  found from where does the Plan values are coming

    Hi Gurus,
    I am running the report Z_ALR_87012993 and getting values for Actual and Plan,
    i want to know from where does these planned values are getting into account and where to see that planned amount for that cost element (order).
    Regards,
    Imran M Arab

    Thank You All,
    My problem solved,
    I  found the T-Code for that is KOC4, in this we can see the planned values for production orders.
    Thanks again for your valuable replies.
    Regards,
    Imran M Arab

Maybe you are looking for