Getting Ship To and Bill To info on the same page in Customer's setup

Hello All,
When we import orders into Oracle from an external source, the Bill To and Ship To are getting created on different pages i.e. each line is created for Bill To and Ship to on Addresses tab.
Could you please tell me how can we rectify this error. Or is this a normal functionality.
Thanks a lot.

Hello All,
When we import orders into Oracle from an external source, the Bill To and Ship To are getting created on different pages i.e. each line is created for Bill To and Ship to on Addresses tab.
Could you please tell me how can we rectify this error. Or is this a normal functionality.
Thanks a lot.

Similar Messages

  • I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?

    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?  Next in Elements 11, how do I load and print different pictures and different sizes options on the same page?
    Thanks,
    Shir

    sbmgrams wrote:
    I have many photos with file extension of .PDD and that Photo Deluxe 4 no longer will operate in Win 7. How can I open?
    See here:
    Reading PhotoDeluxe PDD Files

  • IProcurement: Ship To and Bill To location at the header level

    All,
    Standard Oracle displays Deliver-To location at the detail level. But the Ship To and Bill To locations do not show on the requisition. I do understand that a typical requisitioner does not need to know this information and is just requesting an item to be delivered. But we are in a power user scenario, wherein we would like the iProcurement user to create a req, get it approved and use contracts to automatically create approved POs.
    1. We are not sure where the Ship To and Bill To location information on the Req/PO come from in the above scenario? Is it from the contract?
    2. Is it possible to make the Ship To and Bill To location information visible on the Req Header in iProcurement? I do not see it in the "CheckoutSummaryPG" to make personalizations and make them visible.
    3. Is there a way to configure Ship To and Bill To locations in iProcurement?
    Thanks
    Satish

    I dont think so its possible to show ship to and bill to location on Requisition. Header Level Ship to and Bill to Location is coming frm setup either from Supplier Site, Supplier or Default System Setup.
    Hence if you have Auto create Workflow Setup then you have to either correct setup on supplier site for Ship to and Bill to.
    Requisition line level Deliver to will be present in PO Distributions.
    Thanks,
    Akshay

  • How to get Report Builder to print a section on the same page

    I have a section of my report that is three bands. A header
    band, the detail band, and a total line band. Sometimes this
    section will get split up and print part on the next page. So
    basically I need for this section to print on the same page. I know
    that I could insert a page break right above the header, but this
    will make my report way longer than it needs to be. I have also
    unchecked "split allowed" for that band also but that didn't make a
    difference. Is there some way to group three bands together so that
    if it is two big to print the section on the current page then
    print the whole section on the next page. It is driving our
    accounting lady nuts because when she likes to verify that the
    totals are coming out right and sometimes she has to flip over to
    the next page to continue calculating.

    you need to create a multi-instrument in the environment next to your audio-instrument,then push a cable from there to your audio-instrument.in the arrange window your multi-instrument will appear in the window where you select the track-type next to the audio tracks, audio-busses etc. these midi tracks now trigger your vsti on the selected midi channel.you have to record your midi now on these tracks and not on the audio-instrument track,because there you only trigger its own channel. i hope i explained it well but i think you have understood what i ment.

  • Get Min value and another column value from the same row

    hi all - for each customer and product, I need to grab the row that has the min value for field Value1. I could've just done group by on customer and product and min on Value1, but I also need to grab Vlaue2 from the same row where the minimum value for
    Value1 lies.
    DECLARE @Temp TABLE (CustomerID INT, ProductID VARCHAR(10), Trans_Date Date, Value1 INT, Value2 INT)
    INSERT INTO @Temp VALUES (123, 'ABC', '1/1/2013', 10, 100)
    INSERT INTO @Temp VALUES (456, 'ASD', '1/1/2013', 40, 500)
    INSERT INTO @Temp VALUES (456, 'ASD', '2/1/2013', 90, 700)
    INSERT INTO @Temp VALUES (123, 'ABC', '2/1/2013', 20, 700)
    SELECT * FROM @Temp
    The output should be
    123, ABC, 10, 100
    456, ASD, 40, 500
    I know that I can just join the table to itself and get the desired output but I am dealing with a table that has millions of rows and I was hoping there is more efficient way to do this. any help would be highly appreciated...

    Here is a correction on your DDL to make it into nearly valid table.
    CREATE TABLE Sales
    (customer_id INTEGER NOT NULL,
    product_id CHAR(10) NOT NULL,
    transaction_date DATE NOT NULL,
    PRIMARY KEY (customer_id, product_id, transaction_date),
    value1 INTEGER NOT NULL,
    value2 INTEGER NOT NULL);
    Here is the current syntax for insertion:
    INSERT INTO Sales
    VALUES (123, 'abc', '2013-01-01', 10, 100),
    (456, 'asd', '2013-01-01', 40, 500),
    (456, 'asd', '2013-02-01', 90, 700),
    (123, 'abc', '2013-02-01', 20, 700);
    WITH
    X
    AS
    (SELECT customer_id, product_id, transaction_date, value1, value2,
    MIN(value1) OVER () AS value1_min
    FROM Sales)
    SELECT X.*
    FROM X
    WHERE X.value1_min = X.value1;
    --CELKO-- Books in Celko Series for Morgan-Kaufmann Publishing: Analytics and OLAP in SQL / Data and Databases: Concepts in Practice Data / Measurements and Standards in SQL SQL for Smarties / SQL Programming Style / SQL Puzzles and Answers / Thinking
    in Sets / Trees and Hierarchies in SQL

  • Can Update and creation be done in the same page

    Hi
    ADF BC application.
    Situation :
    I have a search screen , in which the details are shown as Master-inline table.
    For the first column in the table ,I have a link,clicking on which takes to the other page for updating that record.
    And below the table , I have a Button create which takes to other page for creating a new record.
    Questions:
    1. Can the update page and Creation page be same? If yes how?
    2. How to make the first column into a link?
    Note : In update and Creation , I have 2 tables linked i.e., master details.
    Please Help.
    Thanks.

    Hi,
    if you simply navigate from one page to the other then the selected row currency is shown in the edit form.
    If you execute a operation binding that executes the CreateInsert operation then this will create an empty new row.
    The way you do this is:
    - create a pageDef entry under the bindings node (StructureWindow)
    - Select InsertInto Bindings and choose action binding
    - In the editor, give a name to this new binding e.g. CreateInsert and select the CreateInsert operation from the underlying ViewObject
    - In ADF Faces -
    - add a command link to the UI
    - Instead of adding a static navigation case, point teh Action property to a managed bean method
    - in teh managed bean method, access the CreatInsert binding, execute it and ten navigate to the next page
    FacesContext fctx = FacesContext.getCurrentInstance();
    Application app = fctx.getApplication();
    ValueBinding vb = app.createValueBinding("#{bindings}");
    DCBindingContainer dc = (DCBindingContainer) vb.getValue(fctx);
    OperationBinding oper = (OperationBinding) dciter.get("CreateInsert");
    oper.execute();
    return "<static navigation case to navigate to edit form>"
    Frank

  • How to encode multiple camera views and display them separately on the same page

    Does any one know if this is possible with just one
    encoder/streaming server or would you need multiple encoders to
    send separate views?

    Hello after a long time.
    I have 2 the same capture card. And I am trying to stream to 2 diffrent rtmp server. I start first one and no problem. But when I run second FME instance and select second stream card, first one turns to black and second one shows up. When I close second, first one again comes back.
    What shoul I do for streaming multiple streams form multiple stream cards?
    Best regards.

  • When I am searching certain items in eBay via firefox I will often get zero results and yet when I do the same search in IE I get tons of results

    Often this happens when I am looking for real common things also that I know are listed on eBay.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Is it possible to store and retrieve request variables from the same page?

    I can't seem to get this to work.
    In the page constructor to retrieve the variable on reload of the page:
    String myReqValue = (String) getValue("#{requestScope.name}");
    and in public void beforeRenderResponse() {}
    setValue("#{requestScope.name}", some_var);
    Of course in th page constructor I check that its not null to know if its the first load of the page.
    Regards
    Jonathan

    Hi,
    Your setters and getters looks fine.
    This is what i did.
    public String button1_action() {
    setValue("#{requestScope.name}", "abcd");
    return "case1";
    In the page constructor .
    String check = (String) getValue("#{requestScope.name}");
    Just check whether this can help you.

  • Query to get Primary ship to and bill to contact details

    Hi ,
    Please help me to get the query to find primary ship to and bill to contact details for a istore customer .
    Thanks
    Mark

    Hi Mark,
    The following should give you a good starting point.
    Regards,
    Jon
    SELECT
    cac_party.party_name as customer
    , cac.account_number
    , cac_party.party_number as orgnum
    , party_site.party_site_number as sitenum
    , csu.location
    , loc.address1
    , csu.site_use_code
    , orgcon.title
    , cont_party.party_name as contact_name
    , orgcon.job_title
    FROM
    hz_org_contacts orgcon
    , hz_party_relationships party_rel
    , hz_party_sites party_site
    , hz_cust_acct_sites_all cas
    , hz_cust_site_uses_all csu
    , hz_cust_accounts cac
    , hz_loc_assignments loc_assign
    , hz_locations loc
    , hz_parties cac_party
    , hz_parties cont_party
    WHERE 1=1
    AND orgcon.party_relationship_id = party_rel.party_relationship_id
    AND orgcon.party_site_id = party_site.party_site_id
    AND party_site.party_site_id = cas.party_site_id
    AND cas.cust_acct_site_id = csu.cust_acct_site_id
    AND cas.cust_account_id = cac.cust_account_id
    AND cac.party_id = cac_party.party_id
    AND cas.party_site_id = party_site.party_site_id
    AND loc.location_id = party_site.location_id
    AND loc.location_id = loc_assign.location_id
    AND party_rel.subject_id = cont_party.party_id AND cont_party.party_type = 'PERSON'
    ORDER BY cac_party.party_name, loc.address1, csu.site_use_code, cont_party.party_name

  • Ship to and Bill to country code issue

    The ship to and bill to on the invoice for proforma is not printing the country if being shipped to France  All other countries print just fine...it is only France that will print (see the example below).  Anyone have an idea as to why?  Customer Master appears to be ok as well....Again this is only for France.
    Example:   Name of Company
                     Address 123 Rue
                     91919 - Bondoufke Cedex
                     Z.I. La XXXXXXXXX
                     F- Bondoufle Cedex (this is how the country prints)
    Edited by: Kimberly Blair on Oct 29, 2010 8:35 PM

    Hi
    It seems in your smartofrm for printing the address of ship to and bill to the function module Address_into_Printform is being used. The function module has some parameters that need to be passed like customer name, number of lines of address to be printed, Street PO Box priority etc. One such parameter is the sending country. If the customer is from FR and the sending country paramter is also FR then the country would not get printed as the function module thinks that for transport within country the address with the country detail is not required. Please change the logic of the smartform by altering the Address_into_printform parameter and leaving the sending country as blank.
    Thanks
    Indranil

  • Ship to and bill to address

    Hi experts
    I am newly installed sap bone 2005B version.I using OEC computers.I creadted one customer with ship to and bill to address. but in that address is not come in print lay out.
    I selected database and given Bill to address in respective area.
    what is the reason?
    pls tell me
    regards

    Hi
    1. yes
    2. system PLD also
    3. yes i changed my PLD but it will not come
    Now i understood the correct one, the customer bill to address not come in the invoice logistics part.
    I create the customer this also not come in the Logistics bill to address part as well as ship to address.
    what should i do?
    regards

  • HT4906 I want to download the new updates I think to the 10.9 but our mac was given to us and when it comes to the last page it asks for the user name and password but this mac was wiped clean. How do I find out this info so I can get iPhoto?

    I want to download the new updates I think to the 10.9 but our mac was given to us and when it comes to the last page it asks for the user name and password but this mac was wiped clean. How do I find out this info so I can get iPhoto? To be honest I'm not even sure what type of Mac I have and don't know how to find out what kind it is
    I'd also like to make address labels and don't know where to find that either

    You would make address lables with the Contacts app.
    If you don't have the user name and password used to set up the machine then you need to purchase the apps for yourself.

  • Regarding Ship to and Bill to Address on iStore.....urgent

    Hi All,
    In Address of Ship to and Bill to , I need extra search based on Address1..
    I am looking into jsp page;ibeCCkdSrchListAddr.JSP
    please give me any suggestions or steps to implement this feature.
    Thanks in advance..
    Best Regards,
    HHH

    Hi
    1. yes
    2. system PLD also
    3. yes i changed my PLD but it will not come
    Now i understood the correct one, the customer bill to address not come in the invoice logistics part.
    I create the customer this also not come in the Logistics bill to address part as well as ship to address.
    what should i do?
    regards

  • Restricting SHIP TO and BILL TO address in VD02

    Hi
    Does anybody have idea on how we can restrict accessing certain user community to change Ship to and Bill To address in VD02. Any thoughts on this will be helpfull.
    Thanks
    KV

    Alex
    <b>Thanks for your input.</b>
    After creating a Field Grp in IMG how can associate the Field Grp to the <b>F_KNA1_AEN</b> auth object. I have create the field Group in SPRO (IMG) via Financial Accounting -> Accounts Payable and Accounts Receivable -> Customer Accounts -> Master Data -> Prepare Changes to Customer Master Data -> Define Field Groups for Customer Master Data.
    Please let me know your thougts on this if this is correct what im doing.
    Thanks
    KV

Maybe you are looking for