DropDrown unable to get data in ALV

Hi,
I'm trying to put an dropdown by key (or index) into an ALV but I'm unable to get data in the dropdown. Can someone please help me with this?
I was watching this threads on topics at the forum, but I can not solve this problem.
Copy my code.
  DATA: lr_col                            TYPE REF TO cl_salv_wd_column,
             lr_dropdown                  TYPE REF TO cl_salv_wd_uie_dropdown_by_key,
             l_cmp_usage                TYPE REF TO if_wd_component_usage,
             l_alv_model                   TYPE REF TO cl_salv_wd_config_table,
             l_ref_interfacecontroller  TYPE REF TO iwci_salv_wd_table.
  l_cmp_usage = wd_this->wd_cpuse_doc_measure( ).
  IF l_cmp_usage->has_active_component( ) IS INITIAL.
    l_cmp_usage->create_component( ).
  ENDIF.
  l_ref_interfacecontroller = wd_this->wd_cpifc_doc_measure( ).
  l_alv_model = l_ref_interfacecontroller->get_model( ).
  l_alv_model = l_ref_interfacecontroller->get_model( ).
  l_alv_model->if_salv_wd_table_settings~set_read_only( abap_false ).
  lr_col = l_alv_model->if_salv_wd_column_settings~get_column(
    id = 'VALEUR_DIFF' ).
  CREATE OBJECT lr_dropdown
    EXPORTING
      selected_key_fieldname = 'VALEUR_DIFF '.
  lr_col->set_cell_editor( lr_dropdown ).
  DATA:
  lo_nd_ctx_tab TYPE REF TO if_wd_context_node,
  lo_ndinfo_ctx_tab TYPE REF TO if_wd_context_node_info,
  lt_value_set TYPE TABLE OF wdr_context_attr_value,
  ls_value_set TYPE wdr_context_attr_value.
  ls_value_set-value = '01'.
  ls_value_set-text = 'One'.
  APPEND ls_value_set TO lt_value_set.
  ls_value_set-value = '02'.
  ls_value_set-text = 'Two'.
  APPEND ls_value_set TO lt_value_set.
  lo_nd_ctx_tab = wd_context->get_child_node( 'DOC_MEASURE' ).
  lo_ndinfo_ctx_tab = lo_nd_ctx_tab->get_node_info( ).
  lo_ndinfo_ctx_tab->set_attribute_value_set(
    name = 'VALEUR_DIFF' value_set = lt_value_set ).
  DATA: lt_valueset TYPE TABLE OF wdr_context_attr_value,
            ls_valueset TYPE wdr_context_attr_value,
            lr_node TYPE REF TO if_wd_context_node,
            lr_nodeinfo TYPE REF TO if_wd_context_node_info.
  lr_node = wd_context->get_child_node( 'DOC_MEASURE' ).
  lr_nodeinfo = lr_node->get_node_info( ).
  lr_nodeinfo->set_attribute_value_set(
  EXPORTING
    name = 'VALEUR_DIFF'
    value_set = lt_valueset
Thanks.
Matías.

Hi,
In your code, you are trying to do set_attribute_value_set twice. If you read your code carefully, you are setting the values once using lt_value_set where you have correctly filled the values. But after this, you are again trying using lt_valueset without filling any values. This is why your previous value-list gets overwritten and you see nothing in the dropdown. Remove the following lines in your code and it will work fine.
DATA: lt_valueset TYPE TABLE OF wdr_context_attr_value,
ls_valueset TYPE wdr_context_attr_value,
lr_node TYPE REF TO if_wd_context_node,
lr_nodeinfo TYPE REF TO if_wd_context_node_info.
lr_node = wd_context->get_child_node( 'DOC_MEASURE' ).
lr_nodeinfo = lr_node->get_node_info( ).
lr_nodeinfo->set_attribute_value_set(
EXPORTING
name = 'VALEUR_DIFF'
value_set = lt_valueset
Please get back if you are facing any more issues.
Regards,
Nithya

Similar Messages

  • Table are not prefixed with Schema in  SQL request - Unable to get Data

    I began this new thread because I closed the [previous one|Unable to get data (DSN connection); a little bit early, I believed it was OK but no the problem still here.
    First my architecture :
    Oracle 9g
    +500 Reports made under CR developper 8.5 or 9.0
    Report opened in VB .net application, framework 2.0 using CR runtime 8.5 and 9.0
    We want to upgrade CR version to 2008, so modification of reports will be done with CR 2008 Developper, and we want to
    use only CR 2008 runtime.
    The problem :
    Everything works fine in CR Developer, but the same report with the same parameters failed when called inside .net.
    The error is "Unable to get data", the database connection is OK but the queries mades from inside the report are wrong :
    The tables/views in the from statement are not prefixed with the Schema, so Oracle don't find them.
    Example (SQL monitoring done with TOAD)
    Execution of postes.rpt report directly in CR :
    Timestamp: 10:30:03.881
    Successful logon attempt (session tag: 0x6464CB8)
    username: 'APPLI_HUET'; database: 'DEV'
    SELECT ...
    FROM  "COMMUN"."ETAB" "ETAB" INNER JOIN "GESTION_DES_TEMPS"."POSTES" "POSTES"
    ON "ETAB"."N_ETAB"="POSTES"."N_ETAB"
    WHERE  "POSTES"."N_ETAB"=2 ORDER BY "POSTES"."N_POSTE"
    Timestamp: 10:50:29.178
    Logoff (session tag: 0x6464CB8).
    Same report, same authentication but throught .net program :
    Timestamp: 11:01:24.569
    Successful logon attempt (session tag: 0xA93FC38)
    username: 'APPLI_HUET'; database: 'DEV'
    SELECT ...
    FROM   "ETAB" "ETAB" INNER JOIN "POSTES" "POSTES"
    ON "ETAB"."N_ETAB"="POSTES"."N_ETAB" WHERE  "POSTES"."N_ETAB"=2 ORDER
    BY "POSTES"."N_POSTE"
    Runtime error occurred: 942 (ORA-00942: Table ou vue inexistante)
    The .net code :
    Dim _report As New ReportDocument()
    _report.Load("report.rpt", OpenReportMethod.OpenReportByDefault)
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    myConnectionInfo.ServerName = "DSN_file"
    myConnectionInfo.UserID = p_Userid
    myConnectionInfo.Password = p_Password
    ' to see code in this method se my original post
    SetDBLogonForReport(myConnectionInfo, _report)
    SetDBLogonForSubreports(myConnectionInfo, _report)
    Dim frmViewer As New CrystalReportViewer
    frmViewer.CrystalReportViewer1.ReportSource = _report
    frmViewer.Show()
    Any ideas ?

    Thanks for the and sorry but I don't understand.
    I've made a research of Location on this forum the more intersting thread I've found is rpt-files do not function anymore after deploying to a different database, but I still don't understand.
    I take a look at all code sample and I can't found anything.
    You say that .Location need to be set, indeed Location property of CrystalDecisions.CrystalReports.Engine.Table object only contains table name.
    I tried to overrides this value by the fully qualified table name (ie Schema.Table, for example GESTION_DES_TEMPS.POSTES), and it work  BUT it wouldn't be the solution, my code is designed to be generic, I can't have a database to know wich schema add before differents table name.
    Why when we execute the report directly in CR 2008 developper we don't have to redefine the table location ?
    Another test :
    I've made a new report directly in CR 2008 with a DSN, launch it in .net with the same DSN (server) : OK
    Then I launch it in .net with another DSN, it work also.
    Why report done with Crystal 8.5 or 9.0 have this problem ?
    I'me gonna be mad....
    Edited by: Yoann DAVID on Jan 8, 2010 3:32 PM

  • Unable to get date in yyyy.MM.dd format

    Hi All
    I am unable to get date in yyyy.MM.dd format.
    I tried everything said in the previous postiongs.Nothig seem to work.
    I am getting date in yyyy-MM-dd
    This needs to be changed in said format. Also datatype should be date only.
    Regards
    Pratyush

    You can solve the problem in two ways
    First way;
    Format formatter = new SimpleDateFormat("yyyy.MM.dd");
    String s = formatter.format(date);
    OR
    Assuming your context attribute name is Date
    IWDAttributeInfo attributeInfo = wdContext.getNodeInfo().getAttribute("Date");
    attributeInfo.getDataAttribute().getScalarType().format("yyyy.MM.dd");
    Second way;
    By changing the default Language of your browser. You have to check the format of each language and choose the language that gives the date in yyyy.MM.dd format.
    Rgs,
       Dni

  • Unable to get data (DSN connection)

    I've got a report file, created using ODBC connexion with DSN File
    These report work fine in design mode using crystal report full (not Visual studio)
    When I try to open this report in a .net application I've got the following error :
    Crystal Reports Windows Forms Viewer
    Impossible d'extraire des données de la base de données.
    Détails : 
    Impossible d'extraire des données de la base de données.
    Erreur dans le fichier Postes {A47B5908-2F0A-4A3D-A2A5-A708FEB329EB}.rpt:
    Impossible d'extraire les données de la base de données.
    Détails : 
    Which can be translate by :
    Unable to extract datas from database
    Details:
    My database is Oracle, error code 942 means table or view does not exist
    In my .net code I use DSN connection (the same as in design mode) like this :
    Dim myConnectionInfo As ConnectionInfo = New ConnectionInfo()
    myConnectionInfo.ServerName = "my_dsn_file"
    For your information this report has been made with CR 9 and converted to CR 2008
    In CR 9 everything worked fine.
    Any idea ?
    Thanks

    This Forum edito  is buggy ? I had to split my answer otherwise the format is broken
    Also you wrote: "User used to create connection (throught DSN) is a generic user, not the user associated with the schema containing the view accessed by the report"
    It's odd that this works in CR, CR repsects DB security so if it's not in a schema that user should not have access to anything in Oracle, I'm surprised it works at all. Possibly this is a bug in CR 8.5 and 9 that finally got fixed.
    Work arounds, what is the reason you can't add that user account to a schema? Or use an account that has access?
    I problably don't use the correct words (I'me not Oracle DBA + translation approximation).
    Of course our user "application_user" has right on all the schema of the database, what I want to say it's when you connect to Oracle with a user "application_user" you're connected in the schema corresponding to these user (so "application_user" schema).
    And if you want to make request on a table / view from another schema you need to prefix table/view with the corresponding schema (Sale in my previous fictive example)
    So in my case CR try to access "CommercialDocument" view in "application_user" schema but this view is not in  this schema, it is in "Sales" schema.
    The correct way to access it is Sales.CommercialDocument, that what CR throught .net don't do, but do when run directly in CR developers.
    Here is real example (fench name inside), those SQL request have been monitoring througt SQL monitor tools of TOAD :
    Execution of postes.rpt report directly in CR :
    Timestamp: 10:30:03.881
    Successful logon attempt (session tag: 0x6464CB8)
    username: 'APPLI_HUET'; database: 'DEV'
    Timestamp: 10:30:03.881
    SELECT VALUE FROM SYS.NLS_DATABASE_PARAMETERS WHERE PARAMETER = 'NLS_CHARACTERSET'
    Timestamp: 10:30:03.896
    SELECT VALUE FROM SYS.NLS_DATABASE_PARAMETERS WHERE PARAMETER = 'NLS_NCHAR_CHARACTERSET'
    Timestamp: 10:30:03.975
    SELECT "POSTES"."N_POSTE", "POSTES"."LIB_POSTE", "POSTES"."N_ETAB",
    "POSTES"."N_ATELIER", "POSTES"."TPSID", "POSTES"."DT_DEB_ACTIF",
    "POSTES"."DT_FIN_ACTIF", "ETAB"."ETAB" FROM   "COMMUN"."ETAB" "ETAB" INNER JOIN
    "GESTION_DES_TEMPS"."POSTES" "POSTES" ON "ETAB"."N_ETAB"="POSTES"."N_ETAB"
    WHERE  "POSTES"."N_ETAB"=2 ORDER BY "POSTES"."N_POSTE"
    Timestamp: 10:50:29.178
    Logoff (session tag: 0x6464CB8).

  • HT201415 My data connection works when its in an andriod phone but when I switch it over to the iphone 4 unable to get data connection?

    I have just swapped from Galaxy 3 to the iPhone 4 but once I swap the chip card over I do not get Data Connection?

    Most carriers diferentiate between regular data plans and iPhone data plans. Also, if you go into Settings, is celluar data turned on? Check with your carrier.

  • Experia M dual c2005 unable to get data roaming since update to android 4.3

    Hi,since the phone was updated (automatically) to android 4.3 i canty get any data roaming. any suggestion?

    I have the same problem with my Xperia M Dual C2004. I cannot get data to work when I'm abroad. Data works fine when I'm on my national network but as soon as I cross a border and roam on a different network a warning triangle shows in the notification line on top of the phone: Data transmission is turned off - no connection! All the right boxes are ticked off and International Roaming has been chosen before I left my home network. Voice calls and SMS works fine while I'm abroad. It has not been a problem for me before as International Roaming from your home service provider has been prohibitively expensive. Part of my reason to buy a Dual SIM phone was the ability to use a local SIM for Data in slot one. But as International Roaming prices are comming down I would like to be able to use this option. I have used it with SIM cards from US T-mobile and German LIDL as well as a couple of Danish service providers. They alle work fine as long as no borders are crossed. Android version is 4.3 and Version Number is 15.5.A.1.5. The latest and final update. I'm looking into a possible downgrade to 15.2.A.2.5 as mentioned above. Can anyone point me to where I can find this for a C2004? I have been able to find it for a C2005. But for C2004 the best I can find is 15.2.A.1.12 something called Storefront.    

  • Unable to get Data Connection on Treo Pro after Flying (Sprint)

    I got my Treo Pro a few weeks ago and have really had no issues. It has been a great phone, but I just ran into an issue I cannot explain.
    I had to fly from Mpls to Miami and put my phone in "airplane mode" when the flight started. When I landed I took the phone out of "airplane mode" and was able to get voicemail and make calls. However, when I tried to get email or open a browser session the phone kept giving me an error. It was trying to dial #777 to begin a data session (I think) and said it was unable to make a connection. I removed the battery and forced the phone to reboot and everything work just fine.
    Someone I traveled with suggested I give it some time to "sync" up with the network, so on the return trip I just let phone continue to try and establish a session for about an hour. After an hour with no email I got frustrated and rebooted the phone... again everything worked just fine. Am I going to need to reboot this phone every time I travel? Is there something I am missing here?
    Is anyone else seeing this? Is it a Sprint Issue? Please help. Thanks in advance.
    Dan
    Post relates to: Treo Pro T850 (Sprint)
    This question was solved.
    View Solution.

    Hello and thank you for using the Palm Help Forums!
    That's strange and I've never heard of this issue. I usually don't jump to this method of troubleshooting right away but I do not have any other idea to resolve this issue. Try to do a hard reset on the device. A hard reset will erase all data on the device and restore settings back to default. Be sure to back up all data on a computer to Outlook via Activesync or Windows Mobile Device Center (WMDC). For further information and instructions on hard resets please visit kb.palm.com and look up article number 43146 in the solution id search field.
    Please let me know if you have any further questions or concerns.
    -Pat 
    Post relates to: Treo 800w (Sprint)

  • Question,Get data from ALV to internal table

    Hi, friends
    I currently need to get the data displayed on ALV.
    But the original internal table is local.
    It means it has already been deleted.
    Do you know which method I shoud use?
    After that, I will move the records to other internal
    table.
    3Q
    Minghan

    Hi,
    are you using ALV list/GRID FM,
    Check this..,
    1. why can't you declare the internal table as Global.
    2. you can call the FM
    REUSE_ALV_LIST_LAYOUT_INFO_GET
    here you get the table data using the table parameter <b>ET_OUTTAB</b>
    try this...
    where you will try?( when ever you want , please let me know where exactly you need this)
    Regards
    vijay

  • Unable to download data in ALV output with local file option

    Hi,
    I am displaying ouput in ALV grid display.Its showing output fine.When i am trying to down load the data into Excel file from ALV ouput .when i am downloaded the data by using Local file option,its down loading the data but its not downloading all the fields.
    Could you plz provide me solution.Thanks!

    Just Check that one of your parameters is defined in lower case letters.
    Earlier it used to give dump on execution but now if you download then it will give ABAP dump.
    I have seen this problem many times.
    Regards,
    Gaurav Sood

  • Unable to get data from a xml file...

    hi everybody....
    i'm new with spry....can you tell me what's wrong with this
    code? I'm just unable to display the xml content from a
    database...thanks in advance for any help :)
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "
    http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    <title>Documento senza titolo</title>
    <link href="css/thrColEls.css" rel="stylesheet"
    type="text/css" />
    <script src="SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryCollapsiblePanel.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var articoli = new Spry.Data.XMLDataSet("
    http://www.openweb.in/xml.php",
    "wp_posts/post");
    //-->
    </script>
    <link href="SpryAssets/SpryCollapsiblePanel.css"
    rel="stylesheet" type="text/css" />
    </head>
    <body class="thrColEls">
    <div id="container">
    <div id="sidebar1">
    <div id="articoli" spry:region="articoli">
    <ul>
    <li spry:repeat="articoli"><a href="note1.html"
    onclick="articoli.setCurrentRowNumber(0); return
    false;">{titolo}</a></li>
    </ul>
    </div>
    <!-- end #sidebar1 --></div>
    <div id="mainContent">
    <div id="CollapsiblePanel1" class="CollapsiblePanel"
    spry:detailregion="articoli">
    <div class="CollapsiblePanelTab"
    tabindex="0"><h3>{titolo}</h3></div>
    <div class="CollapsiblePanelContent">
    <p>{testo}</p></div>
    </div>
    <p> </p>
    <!-- end #mainContent --></div>
    <!-- Questo elemento di clearing deve seguire
    immediatamente il div #mainContent al fine di forzare il div
    #container a contenere tutti i float di livello inferiore
    --><br class="clearfloat" />
    <!-- end #container --></div>
    <script type="text/javascript">
    <!--
    var CollapsiblePanel1 = new
    Spry.Widget.CollapsiblePanel("CollapsiblePanel1");
    //-->
    </script>
    </body>
    </html>

    ok, thanks!
    i'd like to ask one more thing, if you don't mind...
    i want to make a sliding panel where each link leads to a
    different article in the wml file....like in this page:
    http://labs.adobe.com/technologies/spry/samples/slidingpanels/SlidingPanelsSample.html#Hor izontalSliding
    how to call the ID article from the xml?.....
    can you give a look to this code?....thanks a lot:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Sliding Panels Sample</title>
    <link href="
    http://labs.adobe.com/technologies/spry/widgets/slidingpanels/SprySlidingPanels.css"
    rel="stylesheet" type="text/css" />
    <link href="
    http://labs.adobe.com/technologies/spry/css/samples.css"
    rel="stylesheet" type="text/css" />
    <style type="text/css">
    hr, .clearAll {
    clear: both;
    .SlidingPanels {
    width: 300px;
    height: 300px;
    .SlidingPanelsContent {
    width: 300px;
    height: 300px;
    #example2.SlidingPanels {
    float: left;
    #example2 .SlidingPanelsContentGroup {
    float: left;
    width: 10000px;
    #example2 .SlidingPanelsContent {
    float: left;
    #example3.SlidingPanels {
    float: left;
    #example3 .SlidingPanelsContentGroup {
    float: left;
    width: 900px;
    #example3 .SlidingPanelsContent {
    float: left;
    #example3_nav.SlidingPanels {
    float: left;
    #example3_nav .SlidingPanelsContentGroup {
    float: left;
    width: 900px;
    #example3_nav .SlidingPanelsContent {
    float: left;
    </style>
    <script src="SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script src="SpryAssets/SprySlidingPanels.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    var articoli = new Spry.Data.XMLDataSet("
    http://www.openweb.in/xml.php",
    "wp_posts/post");
    articoli.setColumnType("testo","html");
    //-->
    </script>
    </head>
    <body>
    <p>
    Navigate by id:
    <div id="articoli" spry:region="articoli">
    <ul>
    <li spry:repeat="articoli"><a href="#"
    onclick="sp2.showPanel('{ID}'); return
    false;">{titolo}</a></li>
    </ul>
    </div>
    <a href="#" onclick="sp2.showFirstPanel(); return
    false;">First</a> |
    <a href="#" onclick="sp2.showPreviousPanel(); return
    false;">Previous</a> |
    <a href="#" onclick="sp2.showNextPanel(); return
    false;">Next</a> |
    <a href="#" onclick="sp2.showLastPanel(); return
    false;">Last</a>
    </p>
    <p> </p>
    <div id="example2" class="SlidingPanels" tabindex="0"
    spry:detailregion="articoli">
    <div class="SlidingPanelsContentGroup">
    <div id="{ID}" class="SlidingPanelsContent p1">
    <h3>{titolo}</h3>
    <p>{testo}</p></div>
    </div>
    </div>
    <script type="text/javascript">
    var sp2 = new Spry.Widget.SlidingPanels('example2');
    </script>
    <p class="clearAll"> </p>
    <hr />
    </body>
    </html>

  • Performance Monitor Remote Data Collection unable to get data

    When attempting data collection of a remote Windows 2008 server (Server_B) from another W2k8 server (Server_A) I receive the following error:  "When attempting to start the Data Collector Set the following system error occurred:  No data to
    return."
    However remote real-time monitoring of Server_B is no problem.  Also, local real-time monitoring and data collection of Server_A is successful.
    Is the error due to security restrictions?

    Hi Scott,
    Would you please let me know whether have administrator rights on the server trying to collect data collector set?
    Please type services.msc on RUN. When Services panel opened, please navigate to Performance Logs & Alerts
    service and check if it started. Meanwhile, please temporarily disable firewall and monitor the result.
    In addition, please refer to following KB and check if can help you.
    The Data Collector Set may not start on a computer that is
    running Windows Server 2008 or Windows Vista
    Performance Monitor data collector set does not collect all
    required performance counter data in Windows 7 or in Windows Server 2008 R2
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • How to get data of Oracle Applications tables in APEX

    Hi all,
    My requirement is to Develop Oracle apps Order Management Reports in APEX.
    But when i am trying to query the table or view i am unable to get data in APEX.
    Ex: If i query the Sales order form view OE_ORDER_HEADERS_V in toad i am able to get data as i am running this
    begin
    dbms_application_info.set_client_info('204');
    end;
    i.e for particular org_id. i am able to get data.
    But in apex how do i get data. Are there any settings to be done. Please let me know if anyone have worked on the same.
    Regards.
    Chandu

    My Query is like this :
    SELECT DECODE (ship_loc.city, NULL, NULL, ship_loc.city || ', ')
    || DECODE (ship_loc.state, NULL, NULL, ship_loc.state ) Destination,
         party.party_name "Sold To",
         l.ordered_item Product,
         l.ACTUAL_SHIPMENT_DATE "Ship Date",
         Nvl(l.ordered_quantity,0) "Act. Tons",
         '$'||Nvl(l.ordered_quantity,0)* l.unit_selling_price||'.00' "Price"
    FROM mtl_parameters ship_from_org,
         oe_order_lines_all l,
    hz_cust_site_uses_all ship_su,
    hz_party_sites ship_ps,
    hz_locations ship_loc,
    hz_cust_acct_sites_all ship_cas,
    hz_cust_site_uses_all bill_su,
    hz_party_sites bill_ps,
    hz_locations bill_loc,
    hz_cust_acct_sites_all bill_cas,
    hz_parties party,
    hz_cust_accounts cust_acct,
    ra_terms_tl term,
    oe_order_headers h,
    hz_cust_account_roles sold_roles,
    hz_parties sold_party,
    hz_org_contacts sold_cont,
    hz_party_relationships sold_rel,
    ar_lookups sold_arl,
    hz_cust_account_roles ship_roles,
    hz_parties ship_party,
    hz_org_contacts ship_cont,
    hz_party_relationships ship_rel,
    ar_lookups ship_arl,
    hz_cust_account_roles invoice_roles,
    hz_parties invoice_party,
    hz_org_contacts invoice_cont,
    hz_party_relationships invoice_rel,
    ar_lookups invoice_arl,
    fnd_currencies fndcur,
    oe_transaction_types_tl ot,
    qp_list_headers_tl pl,
    ra_rules invrule,
    ra_rules accrule
    WHERE h.order_type_id = ot.transaction_type_id
    AND ot.LANGUAGE = USERENV ('LANG')
    AND h.price_list_id = pl.list_header_id(+)
    AND pl.LANGUAGE(+) = USERENV ('LANG')
    AND h.invoicing_rule_id = invrule.rule_id(+)
    AND h.accounting_rule_id = accrule.rule_id(+)
    AND h.payment_term_id = term.term_id(+)
    AND term.LANGUAGE(+) = USERENV ('LANG')
    AND h.transactional_curr_code = fndcur.currency_code
    AND h.sold_to_org_id = cust_acct.cust_account_id(+)
    AND cust_acct.party_id = party.party_id(+)
    AND h.ship_from_org_id = ship_from_org.organization_id(+)
    AND h.ship_to_org_id = ship_su.site_use_id(+)
    AND ship_su.cust_acct_site_id = ship_cas.cust_acct_site_id(+)
    AND ship_cas.party_site_id = ship_ps.party_site_id(+)
    AND ship_loc.location_id(+) = ship_ps.location_id
    AND h.invoice_to_org_id = bill_su.site_use_id(+)
    AND bill_su.cust_acct_site_id = bill_cas.cust_acct_site_id(+)
    AND bill_cas.party_site_id = bill_ps.party_site_id(+)
    AND bill_loc.location_id(+) = bill_ps.location_id
    AND h.sold_to_contact_id = sold_roles.cust_account_role_id(+)
    AND sold_roles.party_id = sold_rel.party_id(+)
    AND sold_roles.role_type(+) = 'CONTACT'
    AND sold_cont.party_relationship_id(+) = sold_rel.party_relationship_id
    AND sold_rel.subject_id = sold_party.party_id(+)
    AND sold_arl.lookup_type(+) = 'CONTACT_TITLE'
    AND sold_arl.lookup_code(+) = sold_cont.title
    AND h.ship_to_contact_id = ship_roles.cust_account_role_id(+)
    AND ship_roles.party_id = ship_rel.party_id(+)
    AND ship_roles.role_type(+) = 'CONTACT'
    AND ship_cont.party_relationship_id(+) = ship_rel.party_relationship_id
    AND ship_rel.subject_id = ship_party.party_id(+)
    AND ship_arl.lookup_type(+) = 'CONTACT_TITLE'
    AND ship_arl.lookup_code(+) = ship_cont.title
    AND h.invoice_to_contact_id = invoice_roles.cust_account_role_id(+)
    AND invoice_roles.party_id = invoice_rel.party_id(+)
    AND invoice_roles.role_type(+) = 'CONTACT'
    AND invoice_cont.party_relationship_id(+) = invoice_rel.party_relationship_id
    AND invoice_rel.subject_id = invoice_party.party_id(+)
    AND invoice_arl.lookup_type(+) = 'CONTACT_TITLE'
    AND invoice_arl.lookup_code(+) = invoice_cont.title
    AND h.header_id = l.header_id

  • Phone unable to get Host Routing Tables

    Hey,
    I've been on with Rogers tech support for sometime today.
    My originating issue was wireless wouldn't work and everytime i tried to scan for networks the bb would freeze and auto restart. I did a backup and wiped the device and wireless was working yet again.
    But now i'm unable to get data services at all, apparently with rogers you're supposed to get EDGE and not edge. You're also supposed to have 8 entries in the Host Routing Table and i have none.
    Rogers has wiped the handheld, reloaded all applications to barebones and still the issue persists. 
    Whenever i try to do a full restore it errors out at reloading WLAN Profiles and options.
    Before all this started and it was wiped trying to view WIFI Options an error popped up "Uncaught Exception: padded byte out of range" now i remembered that from memory so the Uncaught part maybe wrong.
    Really don't want to drop another $500 on a phone literally 2 years after i spent $400 for this thing.
    Thanks
    Ian

    I should also add that i tried my dads sim card in my phone and same issue.
    Radio Data Activation: Yes
    Signal Level: -86dBm
    Radio Access: EDGE
    Network: Rogers Wireless
    IP Address: 10.172.171.13
    ICMP Ping Echo: Yes
    BlackBerry Registration: No
    Connected to BlackBerry: No
    BlackBerry PIN-PIN: No
    Server Name: GBISXNAC01S08
    Email Address: <email address #1>
    Connected to <email address #1>: No
    Server Name: GBISXNAC01S08
    Email address: <email address #2>
    Connected to <email address #2>: No
    PIN: 24a5d7dd
    MSISDN: <my phone number>
    Device Type: BlackBerry 8900
    Application Version: v4.6.1.94
    Platform Version: 4.2.0.69
    Thanks
    Ian

  • Am unable to get the data from Sys.databases when i use where condition for column owner_sid

     
    Hi all,
    Help me here when i try am unable to get a data,Can some one help me with a query to get.
    If it cant be done can i know why..
     select * from Sys.databases
      where owner_sid='0x01'
    What am trying is to get a login
    names from syslogin
    table with respect to Sid.
    Select a.name,b.name,a.owner_sid from Sys.databases a
      Join Syslogins b
      on a.owner_sid = b.sid
      where owner_sid like '0x01'
    Thanks all in Advance.....

    Below are a couple of examples of how to accomplish the task.  Note that SID is varbinary so the literal should not be enclosed in quotes.
    SELECT
    a.name AS DatabaseName
    ,b.name AS OwnerName
    ,a.owner_sid AS OwnerSID
    FROM sys.databases a
    JOIN sys.server_principals b ON
    a.owner_sid = b.sid
    WHERE owner_sid = 0x01;
    SELECT
    a.name AS DatabaseName
    ,SUSER_SNAME(owner_sid) AS OwnerName
    ,a.owner_sid AS OwnerSID
    FROM sys.databases a
    WHERE a.owner_sid = 0x01;
    Dan Guzman, SQL Server MVP, http://www.dbdelta.com

  • Just updated to IOS 7 and two issues:  First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".

    Just updated to IOS 7 and two issues: 
    First when I connect my iPhone to my computer I get this error message:itunes was unable to provider data from sync services".  I'm not sure what this really means...
    The second issue is when I try to select "Manually Manage Music"
         The iPhone "My iPhone" is synced with another iTunes libary on "MY-PC".  Do you want to erase this iPhone and sync with this iTunes library?  An iPhone can be synced with only one iTunes library at a time.  Erasing and syncing replaces the contents of this iPhone with the contents of this iTunes library."
    So... I don't want to do that, but I do what to be able to Manage my music.  I'm not sure what it means by being synced to another iTunes unless it means to an older version of itunes?
    Anyone have any ideas?

    I cannot address the sync services error right now, but the error that you receive when you change from sync to manually manage music is what happens when you change. Once you change to manually manage music, it erases all of the music and will only put the music that you want on the phone, content that you manually drag over to it. See if this support document helps you out. http://support.apple.com/kb/HT1535

Maybe you are looking for

  • Is it possible to create a report for script selections?

    I am using UCCE version 8.5 and programming with Internet Script Editor. I would like to know which options callers are selecting in my script. I know how to do this by monitoring the script. I would like to have it captured in a report so that I do

  • Typeface in pdf looks washed out/light

    When I convert a document to PDF the typeface looks washed out. Recently I was looking at a document on line and wanted to copy a paragraph. When I tried it a window came up saying that the page needed to be scanned/converted before i could copy from

  • Why did Skype Highjack my signature line in email

    I just noticed that the signature line in my Yahoo emails has been highjacked with a SKYPE tagline--I didn't put it there.  Does anyone know why it happened without my knowing?

  • [OIM 11g] SAP ER connector behavior

    Hi Experts, How does the SAP ER Connector works when the IDOC has historical data from the user? I need to know if OIM will look for the latest chances and use this to create the identity. Best regards.

  • Lots of Icons

    Why do my mycloud makes up to 35 icons of the same movie in public movie libory on every streaming divices ?BRKnastaksel