CRM50: Pricing attributes missing from TREX (PRC_PR00_004*)

Hello, we use CRM5.0 with ISA / TREX7
We are having the following problem:
In our dev and test system all worsk fine.
In our Prod system, the "list prices" do not show on the B2C site.
It was traced backed to this problem :
After replication of the catalog, when we look at TREX (SRSE) we can see what id wrong, the attributes: PRC_PR00_004* (PRC_PR00_004, PRC_PR00_004_CURRY_QTY, PRC_PR00_004_SCALETYPE ,PRC_PR00_004_UOM) are all missing from the TREX.
We also see this in transaction SRMO, in the "doc. attributes" area, we can see the same PRC_* attributes are missing as well.
The question is how do we fix this, such as those attributes are added (why aren't they there), so that we can get them replicated.
If you know which transaction/where to look at, this would be greatly appreciated and rewarded, especially since this issue prevents us from going live.
Thank you.

Actually we found the problem finally.
PR00 had not been setup properly in the catalog variant (catalog management).

Similar Messages

  • ProcessOrder API not populating the Price from the pricing attribute setup.

    Hi,
    I am having a problem while adding a line on the existing order through the Oe_Order_pub.Process_order API. A line is added but the pricing is not fetched using the pricing attribute.
    I have passed calculate_Price_flag=’Y’ but in vain. I am not passing price list id but instead want to use a pricing attribute that will fetch the price on the item automatically.
    But, it is working when I am calling this procedure from TOAD but when it is called through the Workflow, a line is added but no price is fetched.
    Could anyone help me out on this? Here’s the code:
    p_api_version_number NUMBER := 1.0;
    p_init_msg_list VARCHAR2 (1) := FND_API.G_TRUE;
    p_return_values VARCHAR2 (1) := FND_API.G_TRUE;
    p_action_commit VARCHAR2 (1) := FND_API.G_FALSE;
    x_return_status VARCHAR2 (1);
    x_msg_count NUMBER := 0;
    x_msg_data VARCHAR2 (2000);
    p_header_rec oe_order_pub.header_rec_type:= oe_order_pub.g_miss_header_rec;
    p_old_header_rec oe_order_pub.header_rec_type:= oe_order_pub.g_miss_header_rec;
    p_header_val_rec oe_order_pub.header_val_rec_type:= oe_order_pub.g_miss_header_val_rec;
    p_old_header_val_rec oe_order_pub.header_val_rec_type:= oe_order_pub.g_miss_header_val_rec;
    p_header_adj_tbl oe_order_pub.header_adj_tbl_type:= oe_order_pub.g_miss_header_adj_tbl;
    p_old_header_adj_tbl oe_order_pub.header_adj_tbl_type:= oe_order_pub.g_miss_header_adj_tbl;
    p_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type:= oe_order_pub.g_miss_header_adj_val_tbl;
    p_old_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type:= oe_order_pub.g_miss_header_adj_val_tbl;
    p_header_price_att_tbl oe_order_pub.header_price_att_tbl_type:= oe_order_pub.g_miss_header_price_att_tbl;
    p_old_header_price_att_tbl oe_order_pub.header_price_att_tbl_type:= oe_order_pub.g_miss_header_price_att_tbl;
    p_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type:= oe_order_pub.g_miss_header_adj_att_tbl;
    p_old_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type:= oe_order_pub.g_miss_header_adj_att_tbl;
    p_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type:= oe_order_pub.g_miss_header_adj_assoc_tbl;
    p_old_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type:= oe_order_pub.g_miss_header_adj_assoc_tbl;
    p_header_scredit_tbl oe_order_pub.header_scredit_tbl_type:= oe_order_pub.g_miss_header_scredit_tbl;
    p_old_header_scredit_tbl oe_order_pub.header_scredit_tbl_type:= oe_order_pub.g_miss_header_scredit_tbl;
    p_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type:= oe_order_pub.g_miss_header_scredit_val_tbl;
    p_old_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type:= oe_order_pub.g_miss_header_scredit_val_tbl;
    p_line_tbl oe_order_pub.line_tbl_type:= oe_order_pub.g_miss_line_tbl;
    p_old_line_tbl oe_order_pub.line_tbl_type:= oe_order_pub.g_miss_line_tbl;
    p_line_val_tbl oe_order_pub.line_val_tbl_type:= oe_order_pub.g_miss_line_val_tbl;
    p_old_line_val_tbl oe_order_pub.line_val_tbl_type:= oe_order_pub.g_miss_line_val_tbl;
    p_line_adj_tbl oe_order_pub.line_adj_tbl_type:= oe_order_pub.g_miss_line_adj_tbl;
    p_old_line_adj_tbl oe_order_pub.line_adj_tbl_type:= oe_order_pub.g_miss_line_adj_tbl;
    p_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type:= oe_order_pub.g_miss_line_adj_val_tbl;
    p_old_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type:= oe_order_pub.g_miss_line_adj_val_tbl;
    p_line_price_att_tbl oe_order_pub.line_price_att_tbl_type:= oe_order_pub.g_miss_line_price_att_tbl;
    p_old_line_price_att_tbl oe_order_pub.line_price_att_tbl_type:= oe_order_pub.g_miss_line_price_att_tbl;
    p_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type:= oe_order_pub.g_miss_line_adj_att_tbl;
    p_old_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type:= oe_order_pub.g_miss_line_adj_att_tbl;
    p_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type:= oe_order_pub.g_miss_line_adj_assoc_tbl;
    p_old_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type:= oe_order_pub.g_miss_line_adj_assoc_tbl;
    p_line_scredit_tbl oe_order_pub.line_scredit_tbl_type:= oe_order_pub.g_miss_line_scredit_tbl;
    p_old_line_scredit_tbl oe_order_pub.line_scredit_tbl_type:= oe_order_pub.g_miss_line_scredit_tbl;
    p_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type:= oe_order_pub.g_miss_line_scredit_val_tbl;
    p_old_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type:= oe_order_pub.g_miss_line_scredit_val_tbl;
    p_lot_serial_tbl oe_order_pub.lot_serial_tbl_type:= oe_order_pub.g_miss_lot_serial_tbl;
    p_old_lot_serial_tbl oe_order_pub.lot_serial_tbl_type:= oe_order_pub.g_miss_lot_serial_tbl;
    p_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type:= oe_order_pub.g_miss_lot_serial_val_tbl;
    p_old_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type:= oe_order_pub.g_miss_lot_serial_val_tbl;
    p_action_request_tbl oe_order_pub.request_tbl_type := oe_order_pub.g_miss_request_tbl;
    x_header_rec oe_order_pub.header_rec_type;
    x_header_val_rec oe_order_pub.header_val_rec_type;
    x_header_adj_tbl oe_order_pub.header_adj_tbl_type;
    x_header_adj_val_tbl oe_order_pub.header_adj_val_tbl_type;
    x_header_price_att_tbl oe_order_pub.header_price_att_tbl_type;
    x_header_adj_att_tbl oe_order_pub.header_adj_att_tbl_type;
    x_header_adj_assoc_tbl oe_order_pub.header_adj_assoc_tbl_type;
    x_header_scredit_tbl oe_order_pub.header_scredit_tbl_type;
    x_header_scredit_val_tbl oe_order_pub.header_scredit_val_tbl_type;
    x_line_tbl oe_order_pub.line_tbl_type;
    x_line_val_tbl oe_order_pub.line_val_tbl_type;
    x_line_adj_tbl oe_order_pub.line_adj_tbl_type;
    x_line_adj_val_tbl oe_order_pub.line_adj_val_tbl_type;
    x_line_price_att_tbl oe_order_pub.line_price_att_tbl_type;
    x_line_adj_att_tbl oe_order_pub.line_adj_att_tbl_type;
    x_line_adj_assoc_tbl oe_order_pub.line_adj_assoc_tbl_type;
    x_line_scredit_tbl oe_order_pub.line_scredit_tbl_type;
    x_line_scredit_val_tbl oe_order_pub.line_scredit_val_tbl_type;
    x_lot_serial_tbl oe_order_pub.lot_serial_tbl_type;
    x_lot_serial_val_tbl oe_order_pub.lot_serial_val_tbl_type;
    x_action_request_tbl oe_order_pub.request_tbl_type;
    i NUMBER := 1;
    x_data VARCHAR2(2000);
    x_index NUMBER;
    x_err_msg VARCHAR2(4000);
    x_user_id NUMBER;
    x_appl_id NUMBER;
    x_resp_id NUMBER;
    X_DEBUG_FILE Varchar2(400);
    BEGIN
    oe_msg_pub.initialize();
    oe_debug_pub.initialize;
    X_DEBUG_FILE := OE_DEBUG_PUB.Set_Debug_Mode('FILE');
    oe_debug_pub.SetDebugLevel(3);
    -- INITIALIZATION REQUIRED FOR R12
    MO_GLOBAL.INIT('ONT');
    MO_GLOBAL.SET_ORG_CONTEXT(p_org_id,'','ONT');
    p_header_rec := OE_ORDER_PUB.G_MISS_HEADER_REC;
    p_action_request_tbl(i) := OE_ORDER_PUB.G_MISS_REQUEST_REC;
    p_line_tbl.delete;
    p_action_request_tbl.delete;
    p_line_tbl (i) := OE_ORDER_PUB.G_MISS_LINE_REC;
    p_line_tbl (i).operation := OE_GLOBALS.G_OPR_CREATE;
    p_line_tbl (i).header_id := p_header_id;
    p_line_tbl (i).ordered_quantity := p_qty;
    p_line_tbl (i).line_number := p_line_number;
    p_line_tbl (i).shipment_number := 1;
    p_line_tbl (i).calculate_price_flag := 'Y';--p_calc_price_flag;
    p_line_tbl (i).created_by := p_user_id ;
    p_line_tbl (i).creation_date := SYSDATE ;
    p_line_tbl (i).inventory_item_id := p_item_id;
    p_line_tbl (i).last_update_date := SYSDATE;
    --p_line_tbl (i).last_update_login        := -1;
    p_line_tbl (i).last_updated_by := p_user_id ;
    p_line_tbl (i).line_type_id := p_line_type_id;
    p_line_tbl (i).order_quantity_uom := p_qty_uom;
    p_line_tbl (i).org_id := p_org_id;
    --p_line_tbl (i).price_list_id            := p_price_list_id;
    p_line_tbl (i).ship_from_org_id := p_ship_from_org_id ;
    p_line_tbl (i).ship_to_contact_id := p_ship_to_contact_id;
    p_line_tbl (i).ship_to_org_id := p_ship_to_org_id;
    p_line_tbl (i).sold_from_org_id := p_sold_from_org_id ;
    p_line_tbl (i).sold_to_org_id := p_sold_to_org_id;
    p_line_tbl (i).subinventory := p_subinventory ;
    --p_line_tbl (i).unit_list_price          := p_price;
    --p_line_tbl (i).unit_selling_price       := p_price;
    p_line_tbl (i).booked_flag := 'Y';
    p_line_tbl(i).flow_status_code := 'CLOSED';
    --SAVEPOINT BEFORE_PROC_API;
    OE_ORDER_PUB.PROCESS_ORDER (
    p_api_version_number => p_api_version_number
    ,p_init_msg_list => p_init_msg_list
    ,p_return_values => p_return_values
    ,p_action_commit => p_action_commit
    ,p_header_rec => p_header_rec
    ,p_old_header_rec => p_old_header_rec
    ,p_header_val_rec => p_header_val_rec
    ,p_old_header_val_rec => p_old_header_val_rec
    ,p_header_adj_tbl => p_header_adj_tbl
    ,p_old_header_adj_tbl => p_old_header_adj_tbl
    ,p_header_adj_val_tbl => p_header_adj_val_tbl
    ,p_old_header_adj_val_tbl => p_old_header_adj_val_tbl
    ,p_header_price_att_tbl => p_header_price_att_tbl
    ,p_old_header_price_att_tbl => p_old_header_price_att_tbl
    ,p_header_adj_att_tbl => p_header_adj_att_tbl
    ,p_old_header_adj_att_tbl => p_old_header_adj_att_tbl
    ,p_header_adj_assoc_tbl => p_header_adj_assoc_tbl
    ,p_old_header_adj_assoc_tbl => p_old_header_adj_assoc_tbl
    ,p_header_scredit_tbl => p_header_scredit_tbl
    ,p_old_header_scredit_tbl => p_old_header_scredit_tbl
    ,p_header_scredit_val_tbl => p_header_scredit_val_tbl
    ,p_old_header_scredit_val_tbl => p_old_header_scredit_val_tbl
    ,p_line_tbl => p_line_tbl
    ,p_old_line_tbl => p_old_line_tbl
    ,p_line_val_tbl => p_line_val_tbl
    ,p_old_line_val_tbl => p_old_line_val_tbl
    ,p_line_adj_tbl => p_line_adj_tbl
    ,p_old_line_adj_tbl => p_old_line_adj_tbl
    ,p_line_adj_val_tbl => p_line_adj_val_tbl
    ,p_old_line_adj_val_tbl => p_old_line_adj_val_tbl
    ,p_line_price_att_tbl => p_line_price_att_tbl
    ,p_old_line_price_att_tbl => p_old_line_price_att_tbl
    ,p_line_adj_att_tbl => p_line_adj_att_tbl
    ,p_old_line_adj_att_tbl => p_old_line_adj_att_tbl
    ,p_line_adj_assoc_tbl => p_line_adj_assoc_tbl
    ,p_old_line_adj_assoc_tbl => p_old_line_adj_assoc_tbl
    ,p_line_scredit_tbl => p_line_scredit_tbl
    ,p_old_line_scredit_tbl => p_old_line_scredit_tbl
    ,p_line_scredit_val_tbl => p_line_scredit_val_tbl
    ,p_old_line_scredit_val_tbl => p_old_line_scredit_val_tbl
    ,p_lot_serial_tbl => p_lot_serial_tbl
    ,p_old_lot_serial_tbl => p_old_lot_serial_tbl
    ,p_lot_serial_val_tbl => p_lot_serial_val_tbl
    ,p_old_lot_serial_val_tbl => p_old_lot_serial_val_tbl
    ,p_action_request_tbl => p_action_request_tbl
    ,x_header_rec => x_header_rec
    ,x_header_val_rec => x_header_val_rec
    ,x_header_adj_tbl => x_header_adj_tbl
    ,x_header_adj_val_tbl => x_header_adj_val_tbl
    ,x_header_price_att_tbl => x_header_price_att_tbl
    ,x_header_adj_att_tbl => x_header_adj_att_tbl
    ,x_header_adj_assoc_tbl => x_header_adj_assoc_tbl
    ,x_header_scredit_tbl => x_header_scredit_tbl
    ,x_header_scredit_val_tbl => x_header_scredit_val_tbl
    ,x_line_tbl => x_line_tbl
    ,x_line_val_tbl => x_line_val_tbl
    ,x_line_adj_tbl => x_line_adj_tbl
    ,x_line_adj_val_tbl => x_line_adj_val_tbl
    ,x_line_price_att_tbl => x_line_price_att_tbl
    ,x_line_adj_att_tbl => x_line_adj_att_tbl
    ,x_line_adj_assoc_tbl => x_line_adj_assoc_tbl
    ,x_line_scredit_tbl => x_line_scredit_tbl
    ,x_line_scredit_val_tbl => x_line_scredit_val_tbl
    ,x_lot_serial_tbl => x_lot_serial_tbl
    ,x_lot_serial_val_tbl => x_lot_serial_val_tbl
    ,x_action_request_tbl => x_action_request_tbl
    ,x_return_status => x_return_status
    ,x_msg_count => x_msg_count
    ,x_msg_data => x_msg_data
    p_status := x_return_status;
    IF x_return_status != apps.fnd_api.g_ret_sts_success THEN
    x_err_msg:= 'API Error Occured while creating Recycle Fees line ' ;
    FOR i in 1..x_msg_count
    LOOP
    OE_MSG_PUB.GET(i,'F',x_data,x_index);
    x_err_msg := x_err_msg || x_data ;
    END LOOP;
    p_error := x_err_msg;
    insert into xx_test values('API ERR: '||SYSDATE|| p_error);
    -- ROLLBACK TO SAVEPOINT BEFORE_PROC_API;
    END IF;
    EXCEPTION
    WHEN OTHERS THEN
    -- ROLLBACK TO SAVEPOINT BEFORE_PROC_API;
    p_error := 'Error Occured in Order Line API: '||SYSDATE||substr(SQLERRM,1,250) ;
    p_status := 'E';
    END call_order_api;
    Thanks,
    Rahul

    Another striking feature here is, the API works absolutely well for the Internal Orders (Book--> Release-->Ship) but price is not pulled for the External Drop Ship Orders.

  • Framed IP Attribute missing in Accounting-Start messages from the ISG

    Framed IP Attribute missing in Accounting-Start messages from the ISG for the TAL Users. Account-Logon users and Interim updates have the Framed-IP though.
    We have the following command already enabled: aaa accounting include auth-profile framed-ip-address aaa accounting delay-start
    Any ideas or workarounds please?
    Debug:
    Aug 27 19:36:02.213: RADIUS(00000181): Send Accounting-Request to X.X.X.X:1813 id 21647/201, len 406
    Aug 27 19:36:02.213: RADIUS:  authenticator 23 FC FF 1B AC 01 77 B6 - 89 FE E2 9A 4E AA 0B 32
    Aug 27 19:36:02.213: RADIUS:  Acct-Session-Id     [44]  10  "000001BB"
    Aug 27 19:36:02.213: RADIUS:  Framed-Protocol     [7]   6   PPP                       [1]
    Aug 27 19:36:02.213: RADIUS:  Vendor, Cisco       [26]  20 
    Aug 27 19:36:02.213: RADIUS:   ssg-service-info   [251] 14  "NBWAUTHSVC01"
    Aug 27 19:36:02.213: RADIUS:  Vendor, Cisco       [26]  34 
    Aug 27 19:36:02.213: RADIUS:   Cisco AVpair       [1]   28  "parent-session-id=000001BA"
    Aug 27 19:36:02.213: RADIUS:  User-Name           [1]   22  "[email protected]"
    Aug 27 19:36:02.213: RADIUS:  Acct-Status-Type    [40]  6   Start                     [1]
    Aug 27 19:36:02.213: RADIUS:  Vendor, Cisco       [26]  25 
    Aug 27 19:36:02.213: RADIUS:   Cisco AVpair       [1]   19  "portbundle=enable"
    Aug 27 19:36:02.213: RADIUS:  Vendor, Cisco       [26]  23 
    Aug 27 19:36:02.213: RADIUS:   ssg-account-info   [250] 17  "SX.X.X.X"
    Aug 27 19:36:02.213: RADIUS:  Calling-Station-Id  [31]  19  "00-15-00-73-XX-XX"
    Aug 27 19:36:02.213: RADIUS:  NAS-Port-Type       [61]  6   Virtual                   [5]
    Aug 27 19:36:02.213: RADIUS:  NAS-Port            [5]   6   0                        
    Aug 27 19:36:02.213: RADIUS:  NAS-Port-Id         [87]  11  "0/2/0/200"
    Aug 27 19:36:02.213: RADIUS:  Vendor, Cisco       [26]  46 
    Aug 27 19:36:02.213: RADIUS:   Cisco AVpair       [1]   40  "remote-id-tag=020a00000a050001000800c8"
    Aug 27 19:36:02.213: RADIUS:  Vendor, Cisco       [26]  36 
    Aug 27 19:36:02.213: RADIUS:   Cisco AVpair       [1]   30  "vendor-class-id-tag=MSFT 5.0"
    Aug 27 19:36:02.213: RADIUS:  Service-Type        [6]   6   Framed                    [2]
    Aug 27 19:36:02.213: RADIUS:  NAS-IP-Address      [4]   6   X.X.X.X            
    Aug 27 19:36:02.213: RADIUS:  Ascend-Session-Svr-K[151] 10 
    Aug 27 19:36:02.213: RADIUS:   39 45 41 39 39 36 44 44          [ 9EA996DD]
    Aug 27 19:36:02.213: RADIUS:  Event-Timestamp     [55]  6   1346096162               
    Aug 27 19:36:02.213: RADIUS:  Nas-Identifier      [32]  24  "LAB-RAS01"
    Aug 27 19:36:02.213: RADIUS:  Acct-Delay-Time     [41]  6   0    
    Thanks in advance.

    It seems you already have tac case opened for this issue? Let me know if that is not the case.

  • How To Determine from what modifier line a pricing attribute is called

    Hello,
    We would like to know from what modifier line a pricing attribute is called.
    When creating the attribute mapping you have the global record structure to your disposal,
    however do you also have the opportunity to determine the modifier line id.
    We would like to create some modifiers with some pricing attributes (using attribute mapping)
    and those pricing attributes should return different results based on the modifier they are attached to.
    Many thanks!
    rgds
    Leen
    Edited by: user798765 on Apr 13, 2010 6:25 AM

    The only one I know is using java version 1.4:
    http://java.sun.com/j2se/1.4/docs/api/java/lang/Throwable.html#getStackTrace()

  • Required attribute version missing from element xsl:stylesheet

    Tools:
    Jdeveloper : 10.1.3.3
    Error:
    Every time I add transform process activity and try to create mappings I am not able to save them.
    In source view I see this error "Required attribute version missing from element xsl:stylesheet".
    I cannot continue and do not understand how to proceed.
    Any ideas ?

    We have the same problem here from time to time. This has to be some kind of bug in JDeveloper. There is nothing wrong with our xsl files! But for some reason JDeveloper complains about the version attribute of xsl:stylesheet which in all the cases I've seen IS THERE!
    Sometimes restarting JDeveloper helps - sometimes not. I even ended up reinstalling JDeveloper a few times.
    I hoped this would be fixed in 10.1.3.3 (we use 10.1.3.2) but sadly it's not it seems.

  • "EQG-31210:Missing security attribute value from document" for crawl CDB

    I am using Secure Enterprise Search to crawl Content Database. But the crawler throws the following exception for all the document the crawler crawled.
    13:18:24:424 INFO     filter_1          submitting doc http://dvod1.cn.oracle.com:7778/content/dav/cn/mtblog/t/te/TEST1/2007/06/only_a_test.html with status: 200
    13:18:24:425 INFO     filter_1          Processing http://dvod1.cn.oracle.com:7778/content/dav/cn/mtblog/t/te/TEST1/2007/06/only_a_test.html
    13:18:24:425 ERROR     filter_1     EQG-31210: Missing security attribute value from document: http://dvod1.cn.oracle.com:7778/content/dav/cn/mtblog/t/te/TEST1/2007/06/only_a_test.html oracle.search.crawler.WebCrawlerException     oracle.search.crawler.URLAccess:processUrlEntry:2759     oracle.search.crawler.CrawlingThread:submitForProcessing:7183     oracle.search.plugin.ocs.cservices.CSBrowse:submit:1727     oracle.search.plugin.ocs.cservices.CSBrowse:processDocument:1334     oracle.search.plugin.ocs.cservices.CSBrowse:processNextItem:1083     oracle.search.plugin.ocs.cservices.CSBrowse:browse:1170     oracle.search.plugin.ocs.cservices.OCSCSPlugin:crawl:154     oracle.search.crawler.CrawlingThread:run:1443

    Hi Juwan,
    Which SES are you using ?
    we had seen such exception in SES 10.1.8 if we try to submit a public document .

  • Material exchane ,copy pricing and conditions from main item to sub item.

    Hi All,
    We are using parts exchange/interchangeability in the transaction ME22N,
    While using ME22N we are exchanging  main item with interchangeable part and while doing so we want to copy pricing and conditions from main item to sub item.
    But its not happening.
    As per sap help its possible, details describe below.
    http://help.sap.com/erp2005_ehp_04/helpdata/en/c2/0a5288b77d11d3bcce00105ab03aee/content.htm
    Price Determination by Copying from Main Item
    In the case of price determination by copying from the main item, the net price of the originally ordered part is still used for the superseding part in a part exchange.
    The system copies all conditions from the main item to all sub-items and takes into account the order quantity for the main item when calculating scale prices. It does not take into account the conditions and scale prices that exist for the interchangeable part.
    You cannot change the conditions, which have been copied from the main item, at sub-item level. It is possible, however, to define additional conditions for each sub-item.
    Prerequisites
    A calculation schema, which can be altered on an individual basis in Customizing, has been supplied for the price determination.
    In the vendor master record, you have set the schema group 09 (interchangeable material).
    But in customizing I didnu2019t find value 09 for schema group .
    Can any buddy through some light on missing pieces which need to be set?
    Thanks
    Regards
    Ritesh

    Hi,
    Can you check few more things and tell me?
    - In this exit, does XVBPA and XVBAP contains all the line items. ( main and sub items ).
    - In Sales order creation time, do these table have VBELN populated when this exit triggers.
    - If you modify XVBPA or XVBAP in this exit, do they get overwritten after that.
    Try this code. See if it works.  Let me know if you still have a problem.
    DATA: wa_hvbpa LIKE vbpa,
          wa_xvbpa like vbpa.
    CLEAR: wa_hvbpa, wa_xvbpa.
    * check if HVBAP and VBAP line items are not same
    IF vbap-posnr <> hvbap-posnr.
    * read the ****-to partner from main-item
      READ TABLE xvbpa INTO wa_hvbpa WITH KEY posnr = hvbap-posnr
                                              parvw = 'WE'.
      IF sy-subrc = 0.
    *   read the line item data for sub-item based on main item
        READ TABLE xvbap WITH KEY posnr = vbap-posnr
                                  uepos = hvbap-posnr.
    * See if current line is the child of that BoM parent
        IF sy-subrc = 0.
          MOVE wa_xvbpa-kunnr TO xvbpa-kunnr.
          MOVE xvbap-vbeln TO wa_xvbpa-vbeln.
          MOVE xvbap-posnr TO wa_xvbpa-posnr.
          MOVE 'WE' TO wa_xvbpa-parvw.
          MODIFY vbpa FROM wa_xvbpa.
        ENDIF.
      ENDIF.
    ENDIF.
    Regards,
    RS

  • OSMF Player Error: URL missing from Media tag - HTTP Live

    When I try to play an HTTP Live Stream using OSMF Player, I get "URL missing from Media tag" error.
    I installed Flash MS4.0 with Apache2.2.
    My live manifest file (f4m) is below.
    http://localhost/live/events/livepkgr/events/_definst_/liveevent.f4m
    <manifest>
    <id> livepkgr/events/_definst_/liveevent </id>
    <mimeType> </mimeType>
    <streamType> live </streamType>
    <duration> 0 </duration>
    <media streamId="livestream1" bitrate="100">
    <metadata> </metadata>
    </media>
    <media streamId="livestream2" bitrate="200">
    <metadata> </metadata>
    </media>
    <media streamId="livestream3" bitrate="350">
    <metadata> </metadata>
    </media>
    <bootstrapInfo profile="named" url="../../../../streams/livepkgr/streams/_definst_/livestream%i1/livestream%i1.bootstrap" id="bootstrap2386"></bootstrapInfo>
    <media streamId="livestream%i1" url="../../../../streams/livepkgr/streams/_definst_/livestream%i1/livestream%i1" bootstrapInfoId="bootstrap2386">
    <metadata>
    AgAKb25NZXRhRGF0YQgAAAAAAAhkdXJhdGlvbgAAAAAAAAAAAAAMYXVkaW9jb2RlY2lkAgAEbXA0YQAFd2lkdGgAAA AAAAAAAAAABmhlaWdodAAAAAAAAAAAAAAMdmlkZW9jb2RlY2lkAgAESDI2NAAKYXZjcHJvZmlsZQBAUIAAAAAAAAAI YXZjbGV2ZWwAQD4AAAAAAAAABmFhY2FvdAAAAAAAAAAAAAAPYXVkaW9zYW1wbGVyYXRlAEDfQAAAAAAAAA1hdWRpb2 NoYW5uZWxzAEAAAAAAAAAAAA52aWRlb2ZyYW1lcmF0ZQD/+AAAAAAAAAAJdHJhY2tpbmZvCgAAAAIDAAZsZW5ndGgA AAAAAAAAAAAACXRpbWVzY2FsZQBAj0AAAAAAAAAIbGFuZ3VhZ2UCAANlbmcAAAkDAAZsZW5ndGgAAAAAAAAAAAAACX RpbWVzY2FsZQBAj0AAAAAAAAAIbGFuZ3VhZ2UCAANlbmcAAAkADXNtcHRlVGltZUluZm8DAAtzbXB0ZU9mZnNldAAA AAAAAAAAAAAACQAHY3VzdGRlZgoAAAAAAAAJ
    </metadata>
    </media>
    <bootstrapInfo profile="named" url="../../../../streams/livepkgr/streams/_definst_/livestream%i2/livestream%i2.bootstrap" id="bootstrap6801"></bootstrapInfo>
    <media streamId="livestream%i2" url="../../../../streams/livepkgr/streams/_definst_/livestream%i2/livestream%i2" bootstrapInfoId="bootstrap6801">
    <metadata>
    AgAKb25NZXRhRGF0YQgAAAAAAAhkdXJhdGlvbgAAAAAAAAAAAAAMYXVkaW9jb2RlY2lkAgAEbXA0YQAFd2lkdGgAAA AAAAAAAAAABmhlaWdodAAAAAAAAAAAAAAMdmlkZW9jb2RlY2lkAgAESDI2NAAKYXZjcHJvZmlsZQBAUIAAAAAAAAAI YXZjbGV2ZWwAQD4AAAAAAAAABmFhY2FvdAAAAAAAAAAAAAAPYXVkaW9zYW1wbGVyYXRlAEDfQAAAAAAAAA1hdWRpb2 NoYW5uZWxzAEAAAAAAAAAAAA52aWRlb2ZyYW1lcmF0ZQD/+AAAAAAAAAAJdHJhY2tpbmZvCgAAAAIDAAZsZW5ndGgA AAAAAAAAAAAACXRpbWVzY2FsZQBAj0AAAAAAAAAIbGFuZ3VhZ2UCAANlbmcAAAkDAAZsZW5ndGgAAAAAAAAAAAAACX RpbWVzY2FsZQBAj0AAAAAAAAAIbGFuZ3VhZ2UCAANlbmcAAAkADXNtcHRlVGltZUluZm8DAAtzbXB0ZU9mZnNldAAA AAAAAAAAAAAACQAHY3VzdGRlZgoAAAAAAAAJ
    </metadata>
    </media>
    <bootstrapInfo profile="named" url="../../../../streams/livepkgr/streams/_definst_/livestream%i3/livestream%i3.bootstrap" id="bootstrap1"> </bootstrapInfo>
    <media streamId="livestream%i3" url="../../../../streams/livepkgr/streams/_definst_/livestream%i3/livestream%i3" bootstrapInfoId="bootstrap1">
    <metadata>
    AgAKb25NZXRhRGF0YQgAAAAAAAhkdXJhdGlvbgAAAAAAAAAAAAAMYXVkaW9jb2RlY2lkAgAEbXA0YQAFd2lkdGgAAA AAAAAAAAAABmhlaWdodAAAAAAAAAAAAAAMdmlkZW9jb2RlY2lkAgAESDI2NAAKYXZjcHJvZmlsZQBAUIAAAAAAAAAI YXZjbGV2ZWwAQD4AAAAAAAAABmFhY2FvdAAAAAAAAAAAAAAPYXVkaW9zYW1wbGVyYXRlAEDfQAAAAAAAAA1hdWRpb2 NoYW5uZWxzAEAAAAAAAAAAAA52aWRlb2ZyYW1lcmF0ZQD/+AAAAAAAAAAJdHJhY2tpbmZvCgAAAAIDAAZsZW5ndGgA AAAAAAAAAAAACXRpbWVzY2FsZQBAj0AAAAAAAAAIbGFuZ3VhZ2UCAANlbmcAAAkDAAZsZW5ndGgAAAAAAAAAAAAACX RpbWVzY2FsZQBAj0AAAAAAAAAIbGFuZ3VhZ2UCAANlbmcAAAkADXNtcHRlVGltZUluZm8DAAtzbXB0ZU9mZnNldAAA AAAAAAAAAAAACQAHY3VzdGRlZgoAAAAAAAAJ
    </metadata>
    </media>
    </manifest>
    It seems to me that it is a configuration issue, but I have no clue.
    I compared above manifest with a sample manifest that I found on Adobe's site, the attributes are same but the structure is not. Maybe that is causing OSMF to fail.
    Thanks for any suggestion!

    I am using other encoder than FMLE. I am publishing 3 streams.
    rtmp://x.y.z.w/livepkgr
    H264 BL3.0 60kbps, 160kbps and 310kbps & AAC-LC Stereo 32kHz 40kbps & Fragment duration 4 sec
    >>> matches C:\Program Files\Adobe\Flash Media Server 4\applications\livepkgr\events\_definst_\liveevent Event.xml and Manifest.xml files.
    <FragmentDuration>4000</FragmentDuration>
    <media streamId="livestream1" bitrate="100" />
    <media streamId="livestream2" bitrate="200" />
    <media streamId="livestream3" bitrate="350" />
    (e.g. 60kbps video + 40kbps audio for the 1st stream)
    I have Common output parameters > Stream Name configuration on my Live Transcoder and I write the following:
    livestream%i?adbe-live-event=liveevent&adbe-http-streaming-ver=1.0
    Then Admin Console > View Apps > Live Log includes the following:
    Stream name is: livestream%i1 and live event is: liveevent
    Stream name is: livestream%i2 and live event is: liveevent
    Stream name is: livestream%i3 and live event is: liveevent
    As you say, it seems %i above causes the problem, but how to fix it?
    My f4m includes the bitrates:
    <id> livepkgr/events/_definst_/liveevent </id>
    <mimeType> </mimeType>
    <streamType> live </streamType>
    <duration> 0 </duration>
    <media streamId="livestream1" bitrate="100">
    <metadata> </metadata>
    </media>
    <media streamId="livestream2" bitrate="200">
    <metadata> </metadata>
    </media>
    <media streamId="livestream3" bitrate="350">
    <metadata> </metadata>
    </media>
    Thanks!

  • Price list -- pricing attribute names

    hi,
    I need to xtract data from the qp_pricing_attributes table, for price break lines and pricing attributes info.
    The pricing_attribute is stored as 'PRICING_ATTRIBUTE1', 'PRICING_ATTRIBUTE2' etc.
    I need to know the actual attribute for which the line is defined i.e. 'Item Quantity',
    'Freight Cost' etc...
    Where'll I get this info??
    thx in adv..
    regds,
    poongothai

    Hey Vestrini,
    I was wondering if their was any place that listed a good chunk of attribute names so each time I needed something I didn't have to google a specific attribute?
    Also here is what I was using for underline that isn't working. If you could help me figure out how to underline or get a double underline for the totals I would appreciate it.
    <?if:LINE_TYPE='T'?><xsl:attribute xdofo:ctx="block" name="text-decoration">underlined</xsl:attribute><?end if?>

  • Error. Required Attribute Missing

    Hi,
    I had the following code:
    <?xml version="1.0"?>
    <!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.2//EN" "http://www.wapforum.org/DTD/wml12.dtd">
    <%@ page session="true" %>
    <%@ page import="java.io.*"%>
    <%@ page import="java.sql.*"%>
    <%@ page import="java.util.*"%>
    <%@ page import="javax.servlet.*"%>
    <%@ page import="javax.servlet.http.*"%>
    <%
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    String url = "jdbc:odbc:DataLink";
    Connection con = DriverManager.getConnection(url);
    %>
    <% Statement stmt = con.createStatement(); %>
    <%! String admin, module, grade, displaySQL; %>
    <%
    admin = (String)session.getAttribute("UserAdmin") ;
    displaySQL = "select * from Exam_Result where AdminNo = '"+admin+"' ";
    java.sql.ResultSet columns = stmt.executeQuery(displaySQL);
    response.setContentType("text/vnd.wap.wml");
    %>
    <wml>
    <card id="Result" title="Exam Result">
    <do type="accept" label="Main menu">
    <go href="MainMenu.jsp"/></do>
    <p align="center">
    <table border=1 align="center">
    <tr>
    <td>Module Code</td>
    <td>Grade</td>
    </tr>
    <% while(columns.next()) {
    module = columns.getString("Module_code");
    grade = columns.getString("Grade");
    %>
    <tr>
    <td> <%= module %> </td>
    <td> <%= grade %> </td>
    </tr>
    <% } %>
    </table>
    </p>
    </card>
    </wml>
    <%
    columns.close();
    stmt.close();
    con.close();
    %>
    When i run using nokia simulator, it display required attribute missing.
    Can anyone help me to solve the error?
    Thanx in advance....

    May be the wap phone has some differences with explorer that IE. For it connect to gateway first,then
    the gate connect to you web server. Perhaps the
    session (you are using) cannot be kept with wap phone.
    You can using url parameters to keep special customer's
    info,and create a timer in your web server to trace special customer's id or name. In this way,you can avoid using session instance. --try it and good luck

  • N79 compulsory attributes missing while installing...

    Gmail (mail application from Google) was working fine till now .. recently i formatted the phone using *#7370# after doing that when i tried installing the gmail application again it gives me a error saying compulsory attributes missing
    Tried formatting again  and also updating the phone software but nothing worked out 
    Is there any solution to make it working again ?

    Hi,
    I am aslo facing same problem. I called up Nokia helpline and they are giving me workaround like configuring into Nokia Email. But i need the solution.
    Even same error i am getting while installting Google Map.
    Lets see when Nokia will see this matter.
    Regards,
    Manjeet
    Moderator Note: Personal details removed. We kindly ask you not to share your personal contact details publicly on this forum.

  • E72, Compulsory Attributes Missing

    i got a e72 yesterday, and since then i have updated it then after i used the ovi store to add music to it its saying compulsory attributes missing. Help please ? This happens when i try to download a app from the ovi store or everywhere else.

    Hi,
    I am aslo facing same problem. I called up Nokia helpline and they are giving me workaround like configuring into Nokia Email. But i need the solution.
    Even same error i am getting while installting Google Map.
    Lets see when Nokia will see this matter.
    Regards,
    Manjeet
    Moderator Note: Personal details removed. We kindly ask you not to share your personal contact details publicly on this forum.

  • Lightroom missing from apps list.

    I downloaded and installed Lightroom months ago and i can still open it, but it is now missing from my apps list. I have a current CC subscription.  Why would it disappear from my apps list?

    Chat Now button near the bottom for Activation and Deactivation problems may help
    http://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    OR
    http://helpx.adobe.com/creative-cloud/kb/license-this-software.html
    Membership and Payments http://helpx.adobe.com/x-productkb/policy-pricing/membership-subscription-troubleshooting- creative-cloud.html

  • Attribute missing in : 'url'

    Hi Tim,
    I am getting following message when I try to run the BI Publisher report.
    Attribute missing in : 'url'
    Please help me out.
    Regards,
    Vara

    How are you trying to run the report? From where, which format?

  • Tree Table Error : Missing from in a select statement

    Created a view link
    Created a view criteria on source vo which has attribute of destination vo
    Dragged the source view criteria to form a tree table.
    But upon invoke of jspx page even if tree table is appearing Error : Missing from in a select statement is shown. Log shows no specific file/line number. Search is also throwing same error
    If i remove attribute of destination vo from view criteria error is not appearing. Any pointers?

    Hi,
    Well, If the user always enter a list as selection (no range, exclusion, ...), I can understand the need.. otherwise this is indeed a bit strange... In case they only need to use single element list in SO, you could restrict all other SO features with the FM SELECT_OPTIONS_RESTRICT and then loop on values and select each single vendor...
    E.g under your INITIALIZATION event:
    * Only option 'EQ' and sign 'I' are allowed
      lt_opt_list-name        = 'ONLY_EQ'.
      lt_opt_list-options-eq  = 'X'.
      APPEND lt_opt_list TO ls_restriction-opt_list_tab.
      lt_***-kind             = 'S'.        "select-option
      lt_***-name             = 'S_LIFNR'.  "name of select-option
      lt_***-sg_main          = 'I'.        "only inclusive
      lt_***-sg_addy          = space.
      lt_***-op_main          = 'ONLY_EQ'.
      lt_***-op_addy          = space.
      APPEND lt_*** TO ls_restriction-***_tab.
      CALL FUNCTION 'SELECT_OPTIONS_RESTRICT'
        EXPORTING
          restriction            = ls_restriction
        EXCEPTIONS
          too_late               = 1
          repeated               = 2
          selopt_without_options = 3
          selopt_without_signs   = 4
          invalid_sign           = 5
          empty_option_list      = 6
          invalid_kind           = 7
          repeated_kind_a        = 8
          OTHERS                 = 9.
    Then just loop on SO table, select single and check subrc...
    Kr,
    Manu.

Maybe you are looking for

  • Want to change Pricing Procedure in the sales order

    Hello I have created a sales order. It has RVVVV9 as pricing procedure. Now I recognise that the pricing procedure in the order is wrong due to incorrect CUSTOMER PRICING PROCEDURE in Customer Master data. Now I changed the CUSTOMER PRICING PROCEDURE

  • Clicking a Paragraph Style Does Not Apply Style to Text

    I just switched from a PC to a brand new MacBook Pro (OSX Lion 10.7), and I bought InDesign CS5.5. I have been using CS4 on a PC for a couple of years and had no issues. For some reason, I cannot apply Paragraph Styles by placing my cursor in the tex

  • Any good visualizers for the iPad that work with iTunes?

    I have long wanted to hear my iTunes library through my home cinema system and watch the iTunes visualizer at the same time. Current Macs support mirroring on a TV via Apple TV, but mine are too old. I thought I could get around this with an iPad, bu

  • Migrating to Linux with Oraacle Application release 11i

    Hi There! I would appreciate your expert advice on migration of Oracle EBS 11i from Solaris to Linux. We are following Oracle Metalink Doc id 230627.1 & 331221.1 (db 10gR1) To give a brief picture on the environment, we have 4 servers, PRODUCTION on

  • How many cores do I need?

    I don't know what kind of Mac Pro I should buy. My existing computer is a dual 2.0 G5. My reason for upgrading to a Mac Pro is mostly for speed and to have an Intel processor (not having an Intel processor has become increasingly limiting in the past