Dependent Dropdown with POST

Hi (Gunter Hi again if it's you that answers this)
<br />
<br />I have a dependent dropdown on page with 3 selects (working fine) that needs to pass 3 parameters to a page manage_sections.php and the params are ClientID, ProjectID and SectionID respectively.
<br />
<br />Here is my form:-
<br />
<br />--------
<br />
<br />
<form action="manage_sections.php" method="get" name="remove" target="_parent">
<br />
<span class="textcol4">1.&#160;</span>
<select name="ClientID" id="ClientID">
<option value="">select client</option><?php<br />do {  <br />?>
<option value="<?php echo $row_RsClients['ClientID']?>">
<?php echo $row_RsClients['ClientName']?>
</option><?php<br />} while ($row_RsClients = mysql_fetch_assoc($RsClients));<br />  $rows = mysql_num_rows($RsClients);<br />  if($rows > 0) {<br />      mysql_data_seek($RsClients, 0);<br />   $row_RsClients = mysql_fetch_assoc($RsClients);<br />  }<br />?>
</select>
<br />
<label>
<br />
<br />
<span class="textcol4">2.&#160;</span>
<select name="ProjectID" id="ProjectID" wdg:subtype="DependentDropdown" wdg:type="widget" wdg:recordset="RsProjects" wdg:displayfield="ProjectName" wdg:valuefield="ProjectID" wdg:fkey="ProjectClientID" wdg:triggerobject="ClientID" wdg:selected="">
<option value="">select project</option>
</select>
<br />
<br />
<br />
<label>
<br />
<span class="textcol4">3.&#160;</span>
<select name="SectionID" id="SectionID" wdg:subtype="DependentDropdown" wdg:type="widget" wdg:recordset="RsSections" wdg:displayfield="SectionName" wdg:valuefield="SectionID" wdg:fkey="SectionProjectID" wdg:triggerobject="ProjectID">
<option value="">select section</option>
</select>
<br />
</label>
<br />
<a href="javascript:void(0)">
<img src="../Nitobi/Assets/style/treegrid/flex/refresh.gif" alt="refresh" width="16" height="14" hspace="4" border="0" onclick="window.location.reload()" />
</a>
<br />
<label>
<br /> &#160;&#160;&#160;&#160;
<input type="submit" class="btn1" value="GO" />
<br /></label>
<br /></label></form>
<br />
<br />-----------
<br />To submit the IDs I have found the only way I can figure is to use 'GET' form action and manually add the dropdown IDs to be the same as the ID I want to pass eg '
<select name="ClientID" id="ClientID"></select>

Hi Glennboy,
<br />
<br />regretfully there´s no way to hide URL parameters from the browser´s address bar, but there are ways to protect the originally passed $_GET values -- it´s done by storing them in Session Variables and check these ones against subsequent changes.
<br />
<br />Out of curiosity - and also because this is a serious issue to many folks here - I´ve just been experimenting a little, and I´d like you to try the following approach:
<br />
<br />1. create a simple "parameters.php" page which just contains a link to "check.php" -- and append some static dummy values to this link, e.g. "check.php?ClientID=53&amp;ProjectID=15&amp;SectionID=25"
<br />
<br />2. create the page "check.php", and in here paste the following PHP/HTML code:
<br />
<br />-----------
<br /><?php<br />session_start();  <br />if(isset($_SESSION['views']))<br />    $_SESSION['views'] = $_SESSION['views']+ 1;<br />else<br />    $_SESSION['views'] = 1;<br />?>
<br />
<br /><?php<br />if(!empty($_GET['ClientID']) && (is_numeric($_GET['ClientID'])) && ($_SESSION['views'] == 1) ){<br />$session_ClientID = $_GET['ClientID'];<br />$_SESSION['session_ClientID'] = $session_ClientID;<br />}<br /><br />if(!empty($_GET['ProjectID']) && (is_numeric($_GET['ProjectID'])) && ($_SESSION['views'] == 1) ){<br />$session_ProjectID = $_GET['ProjectID'];<br />$_SESSION['session_ProjectID'] = $session_ProjectID;<br />}<br /><br />if(!empty($_GET['SectionID']) && (is_numeric($_GET['SectionID'])) && ($_SESSION['views'] == 1) ){<br />$session_SectionID = $_GET['SectionID'];<br />$_SESSION['session_SectionID'] = $session_SectionID;<br />}<br />?>
<br />
<br /><?php<br />// 1. checking the Session Variable "session_clientID"<br />if (isset($_SESSION['session_ClientID']) && ($_SESSION['session_ClientID'] == $_GET['ClientID'] ) ) {<br />$check_ClientID = "has not been faked";<br />$valid_ClientID = 'Y';<br />}<br />else {<br />$check_ClientID = "has been faked to <b>".$_GET['ClientID']."</b>";<br />$valid_ClientID = 'N';<br />}<br /><br />// 2. checking the Session Variable "session_projectID"<br />if (isset($_SESSION['session_ProjectID']) && ($_SESSION['session_ProjectID'] == $_GET['ProjectID'] ) ) {<br />$check_ProjectID = "has not been faked";<br />$valid_ProjectID = 'Y';<br />}<br />else {<br />$check_ProjectID = "has been faked to <b>".$_GET['ProjectID']."</b>";<br />$valid_ProjectID = 'N';<br />}<br /><br />// 3. checking the Session Variable "session_sectionID"<br />if (isset($_SESSION['session_SectionID']) && ($_SESSION['session_SectionID'] == $_GET['SectionID'] ) ) {<br />$check_SectionID = "has not been faked";<br />$valid_SectionID = 'Y';<br />}<br />else {<br />$check_SectionID = "has been faked to <b>".$_GET['SectionID']."</b>";<br />$valid_SectionID = 'N';<br />}<br />?>
<br />
<br />The original ClientID value is
<b>
<?php echo $_SESSION['session_ClientID']; ?>
</b> and <?php<br />echo $check_ClientID; ?>
<br />
<br />
<br />
<br />The original ProjectID value is
<b>
<?php echo $_SESSION['session_ProjectID']; ?>
</b> and <?php<br />echo $check_ProjectID; ?>
<br />
<br />
<br />
<br />The original SectionID value is
<b>
<?php echo $_SESSION['session_SectionID']; ?>
</b> and <?php<br />echo $check_SectionID; ?>
<br />-----------
<br />
<br />You will see that any subsequent changes of the initially stored $_GET values will return a "has been faked to..." message for each URL variable, and I think that´s quite fine for a start ;-)
<br />
<br />Cheers,
<br />Günter Schenk
<br />Adobe Community Expert, Dreamweaver

Similar Messages

  • How to compare dropdown pre value with post value in sharepoint designer list workflow

    How to compare dropdown pre value with post value in sharepoint designer list workflow

    Hi,
    Can you provide more details about your requirement? It would make others easier to find a solution for you.
    By default, a workflow will be triggered after submitting data in the NewForm or EditForm.
    If you want to monitor the value changed in a drop down menu which is supposed to be in NewForm or EditForm, it would be more appropriate to apply custom JavaScript in the NewForm
    or EditForm page.
    About how to detect the value changed using JavaScript, the demos in this thread would be helpful:
    http://stackoverflow.com/questions/12080098/dropdown-using-javascript-onchange
    Thanks
    Patrick Liang
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • ADDT Dependent Dropdown SB with Spry Repeat Lists

    Hi,
    I first want to say that this forum is fantastic and full of very bright folks willing to help us not so bright types.
    Next, of course, I have a problem. I'm using spry repeat lists as dropdowns in a form. There are 3 that need to be dependent on each other. I had been using the ADDT dependent dropdown SB and it works great for normal selects. It doesn't seem to work at all on spry repeat lists. I was hoping these two would play nicely together, and maybe they do and there's some trick to this.
    If the ADDT SB's don't work with Spry repeat lists, maybe there's a way to do this using javascript?
    Thanks in advance for any help,
    Tony Galfano

    Hi Gunter,
    Thanks for the help. I've decided, based on your accurate assessment of the work involved in getting all this to work with spry, to ditch that and just refresh the damn page after all new entries are made. I appreciate your help, probably saved me many hours.
    I do have a wierd issue with the ADDT editaqble dropdown behavior. I actually use this one a lot and it always works well. I have one dropdown that only showsw the first 2 characters of the contents. A swcreenshot is avaiable here: http://www.zenwebguru.com/editabledropdown.jpg
    All of the other editable dropdowns on the page, and the site, work fine, but this one is shruken for some reason. I'm wondering if there is a size limitation in the css or the js that can't handle larger records? The largest field in the table contains the value:
    "Flat Guarantee; Purchaser to provide one Fender Amplifier (see rider for list of amps) at no cost to Artist."
    This really shouldn't present a problem, but maybe it's something else?
    Thanks, as always for your great help.
    Tony

  • How to implement two dependent dropdown lists in an input  table row?

    Hi all,
    I am new in Jdev 11g. I try to develop an input table with two dependent dropdown list. I can create independent dropdown list in such table. When I try to implement dependent one following some examples do it in a form using bind variable in the view object I get an empty listbox. How can I do this? Is it possible. I cannot find any documents about this.
    Thanks in advance

    Hi,
    it hasn't changed between 10.1.3 and 11. The basic outline of how you do it is
    - use a managed bean to query the data
    - populate the list with f:selectItems that point to the managed bean ArrayList<SelectItem> for the master and the detail
    - obtain the master ID in the managed bean by parsing the #{row} variable when the table renders
    - then bulild the detail list
    - have the detail list referencing the ArrayList<SelectItem> you expose for the details
    Note that without proper caching, the action is quite expensive
    Frank

  • Generate 2 line items with posting keys in same table while using  FM .

    Dear Expert ,
    For T-code f-65 ,I have to park a FI Document  .i tried with PRELIMINARY_POSTING_FB01 for parked Document . But  i am not  successfully park the document .
    with the help of F-65 the data Segregate between Tables VBSEGS and VBSEGD with respecting Posting key . but with this Fm entire entry is displaying in table VBSEGS .For example it generated two line items with posting keys '15' and '40' and these both are displayed in VBSEGS whereas posting key '15' has to be displayed in VBSEGD.
    when i check this Document in FBV0 Error reflect " G/L Account 0012000 1001 Does not Exist ".
    Here my code -
    DATA:   XT_BKPF LIKE  BKPF OCCURS 0 WITH HEADER LINE ,
            XT_BSEG LIKE  BSEG OCCURS 0 WITH HEADER LINE ,
            XT_BSEG1 LIKE  BSEG OCCURS 0 WITH HEADER LINE ,
            XT_BSEC LIKE  BSEC OCCURS 0 WITH HEADER LINE ,
            XT_BSET LIKE  BSET OCCURS 0 WITH HEADER LINE ,
            XT_BSEZ LIKE  BSEZ  OCCURS 0 WITH HEADER LINE ,
            XT_BKORM  LIKE  BKORM OCCURS 0 WITH HEADER LINE ,
            XT_THEAD  LIKE  THEAD OCCURS 0 WITH HEADER LINE ,
            XT_SPLTTAB  LIKE  ACSPLT  OCCURS 0 WITH HEADER LINE ,
            XT_SPLTWT LIKE  WITH_ITEMX  OCCURS 0 WITH HEADER LINE .
    DATA :    XTEXT_UPDATE  LIKE  BOOLE-BOOLE VALUE SPACE,
              XTEXT_ITEM_UPDATE LIKE  BOOLE-BOOLE VALUE SPACE,
              XI_UF05A  LIKE  UF05A,
              XI_XCMPL  TYPE  XFELD VALUE 'X',
              XFS006_FB01 LIKE  FS006 ,
              XI_TCODE  LIKE  T020-TCODE  VALUE 'F-65',
              XI_PARGB  LIKE  RF05A-PARGB        ,
              XI_TCODE_INT  TYPE  TCODE           .
    DATA P_RETURN LIKE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    XT_BKPF-BUKRS     =     'CP01'.
    XT_BKPF-GJAHR     =     2011.
    XT_BKPF-BLART     =     'DZ'.
    XT_BKPF-BLDAT     =     SY-DATUM.
    XT_BKPF-BUDAT     =     SY-DATUM.
    XT_BKPF-MONAT     =     '06'.
    XT_BKPF-CPUDT     =     SY-DATUM.
    XT_BKPF-WWERT     = SY-DATUM.
    XT_BKPF-USNAM     =     'ABAPER'.
    XT_BKPF-TCODE     =     'F-65'.
    APPEND XT_BKPF.
    XT_BSEG-BUKRS     =     'CP01'.
    XT_BSEG-GJAHR     =     '2011'.
    XT_BSEG-BUZEI = '001'.
    XT_BSEG-BSCHL = '40'.
    XT_BSEG-KOART = 'S'.
    XT_BSEG-SHKZG = 'S' .
    XT_BSEG-GSBER     =     'CPLN'.
    XT_BSEG-BUPLA = 'CP01'.
    XT_BSEG-WRBTR     =     10000.
    XT_BSEG-PSWSL = 'INR'.
    XT_BSEG-ZUONR = 'CH. 123456'.
    XT_BSEG-HKONT = '241000'.
    APPEND XT_BSEG .
    CLEAR  XT_BSEG.
    Vendor line item - required even for header only - BSEG table
    XT_BSEG-BUKRS     =     'CP01'.
    XT_BSEG-GJAHR     =     '2011'.
    XT_BSEG-BUZEI = '002'.
    XT_BSEG-BSCHL = '15'.
    XT_BSEG-KOART = 'S'.
    XT_BSEG-SHKZG = 'H' .
    XT_BSEG-GSBER     =     'CPLN'.
    XT_BSEG-BUPLA = 'CP01'.
    XT_BSEG-WRBTR     =     10000.
    XT_BSEG-PSWSL = 'INR'.
    XT_BSEG-ZUONR = 'CH. 123456'.
    XT_BSEG-HKONT = 'PC04000001'.
    APPEND XT_BSEG .
    CLEAR  XT_BSEG.
      CALL FUNCTION 'PRELIMINARY_POSTING_FB01'
       EXPORTING
         TEXT_UPDATE            = XTEXT_UPDATE
         TEXT_ITEM_UPDATE       = XTEXT_ITEM_UPDATE
      I_UF05A                =
         I_XCMPL                = XI_XCMPL
      FS006_FB01             =
          I_TCODE                = XI_TCODE
      I_PARGB                =
      I_TCODE_INT            =
      IMPORTING
        XEPBBP                 = CHECK_A
        TABLES
          T_BKPF                 = XT_BKPF
          T_BSEG                 = XT_BSEG
          T_BSEC                 = XT_BSEC
          T_BSET                 = XT_BSET
          T_BSEZ                 = XT_BSEZ
      T_BKORM                =
      T_THEAD                =
      T_SPLTTAB              =
      T_SPLTWT               =
              EXCEPTIONS
                ERROR_MESSAGE = 1.
      P_RETURN-ID         = SY-MSGID.
      P_RETURN-TYPE       = SY-MSGTY.
      P_RETURN-NUMBER     = SY-MSGNO.
      APPEND P_RETURN.
         p_return-MESSAGE_V1 = XSYMSGV.
      IF SY-SUBRC = 0.
        CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
          EXPORTING
            WAIT = 'X'.
      ENDIF.
      WRITE :/ sy-subrc , sy-MSGV1 .
    Thanks ,
    Ashish Gupta

    Hi Raghuram,
    I found a very important SAP Note 103051, details are below.
    An IDoc processed by function module IDOC_INPUT_INVOIC_MM (of category INVOIC01) must not refer to the same purchase order item in several invoice items. This is also valid if for a goods receipt-related invoice verification several delivery notes belong to the same purchase order item.
    Depending on the system settings and the situation, various error messages can occur (for example, FD240 'Order item ... selected more than once' or M8050 'Balance not zero: & debits: & credits: &').
    In this situation module IDOC_INPUT_INVOIC_MRM generates error message M8321 'Document contains same order item more than once'.
    For example, this situation occurs if you work with individual batch valuation and the SD billing document executes a batch split for different batches which belong to the same purchase order item and delivery.
    Other terms
    INVOIC, SAPLIEDI,  M8047, M8, 321
    Reason and Prerequisites
    This is because of the program design.
    Solution
    There is no solution for IDOC_INPUT_INVOIC_MM.
    Module IDOC_INPUT_INVOIC_MRM (only as of Release 4.0) for the logistics invoice verification can distinguish different goods receipts by means of the delivery note number. For this purpose, GR-related invoice verification must be active.
    Owing to this symptom, billing documents for single batch valuation with batch split cannot be settled in MM-EDI inbound processing. The settlement generates exactly the situation described (several invoice items for the same purchase order item). In this case, the only solution is to deactivate the billing of the batch sub-items in SD Customizing and to calculate the main item only.
    Hope this helps.
    Reward if helpful.
    Thanks

  • Dependency DropDown List for Multiple Rows in Offline Interactive Form

    Hi I have 2 drop down lists.. in one dropdown list I have "Billable" and "Non Billable" , in second Dropdown list we will have Binding values with "Billable".... when we select "Billable" I need to get the data in Second Dropdown list from Database, and when we Select "Non Billable" then Dropdownlist should become a Inputfield (i.e Dropdown should turn to textfield)...and this should happen for each and every row....based on Index value....help me on this.....

    Hi,
    You can create one input text field and make it visible when a user choses non billable option in dropdown 1, using -
    <this>.presence = "visible";
    when billable is chosen from dropdown 1, I can think of two ways.
    - Since you have binding 'billable' options with second dropdown, make it visible when billabile option is chosen.
    - you can also populate the second dropdown using javascript (something like dependent dropdowns) when billable option is chosen.
    if ( this.rawValue == 'billable' )
         seconddropdown =  xfa.resolveNodes("xfa.record.ITAB.DATA[ *]");
         for ( var k = 0; k < seconddropdown.length ; k++)
          <your path>.addItem(seconddropdown.item(j).fieldname.value,seconddropdown.item(j).fieldname.value );   (to populate second dropdown)
    Regards, Liz

  • Column with dropdown with different values in each cell

    Hello,
    I have a Table and one of the columns contains a dropdown list (dropdownbykey). My problem is that the list of values for each drop down element is different because it depends on the value in the rest of the row cells. Obviously I need to calculate the values dynamically at runtime.
    I have created a context node and linked it to the table columns, one of the attributes in the node is linked to the 'selectedKey' property of the dropdown. Then in my code I try to give the list of values to this attribute using the method set_attribute_value_set from the if_wd_context_node_info interface. The process it's explained in the DEMO_UIEL_STD_SELECTION component.
    But I only get the same values for each row.
    I would like to know if it's possible to have dropdowns with different values in the same column of a Table, and if so any indication of how to do that.
    Best regards,

    Hello Javier,
    unfortunately you cannot use dropdown by key if you want to have different dropdowns per line of your table.
    Instead you will need to use dropdown by index, and bind your dropdown to a subnode of the table element (ensure that this is a non-singleton node).
    To make life easier for yourself, I would also have an attribute in your main structure that holds the selected value of the dropdown by index - update this value on any "onSelect" action of the dropdown by index.
    e.g. for a table that holds addresses:
    Context Node Address:
    attribute street
    attribute city
    attribute country
    attribute region
    subnode regionlist
    ...attribute regionkey
    ...attribute region_text
    table - bound to node address
    input field bound to street
    input field bound to city
    dropdown by key bound to country (onSelect event populates subnode regionlist)
    dropdown by index bound to subnode regionlist, text bound to region text, (onSelect event populates address element attribute region with key field of selected element).
    I hope this helps,
    Chris

  • Error message when I Embed QT movie with Poster movie

    Hi,
    I posted a QT movie with poster movie to my blog,
    http://blog.ginauhlmann.com/
    All info that I can think of is below, and any help would be greatly appreciated!
    I can't get my hosting company to help.
    Thanks!
    I uploaded a folder named video, with QT movie "FWP1.mov" & "FWP1.jpg" QT poster on to my FTP site.
    When I click on the play button, I get the following message:
    Forbidden
    You don't have permission to access /<!-- begin embedded QuickTime file... --> <table border='0' cellpadding='0' align="left"> <!-- begin video window... --> <tr><td> <DEFANGED_OBJECT
    classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="638" height="458" codebase='http://www.apple.com/qtactivex/qtplugin.cab'> <param name='src'
    value="http://ginauhlmann.com/video/FWP1.mov"> <param name='autoplay' value="false"> <param name='controller' value="true"> <param name='loop' value="false"> <DEFANGED_EMBED
    src="http://ginauhlmann.com/video/FWP1.mov" width="638" height="458" autoplay="false" controller="true" loop="false" pluginspage='http://www.apple.com/quicktime/download/'> </EMBED>
    </OBJECT> </td></tr> <!-- ...end embedded QuickTime file --> </table> on this server.
    Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
    Apache/2.0.52 (Debian GNU/Linux) PHP/4.3.10-2 Server at blog.ginauhlmann.com Port 80.
    In the design mode, I clicked on the hyperlink symbol and entered what follows below in the URL box:
    <!-- begin embedded QuickTime file... -->
    <table border='0' cellpadding='0' align="left">
    <!-- begin video window... -->
    <tr><td>
    <OBJECT classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width="638"
    height="458" codebase='http://www.apple.com/qtactivex/qtplugin.cab'>
    <param name='src' value="http://ginauhlmann.com/video/FWP1.mov">
    <param name='autoplay' value="false">
    <param name='controller' value="true">
    <param name='loop' value="false">
    <EMBED src="http://ginauhlmann.com/video/FWP1.mov" width="638" height="458" autoplay="false"
    controller="true" loop="false" pluginspage='http://www.apple.com/quicktime/download/'>
    </EMBED>
    </OBJECT>
    </td></tr>
    <!-- ...end embedded QuickTime file -->
    </table>
    The info that is now in the URL box reads:
    %3C%21--%20begin%20embedded%20QuickTime%20file...%20--%3E%20%20%20%20%20%20%20%3 Ctable%20border=%270%27%20cellpadding=%270%27%20align=%22left%22%3E%20%20%20%20% 20%20%20%20%20%3C%21--%20begin%20video%20window...%20--%3E%20%20%20%20%20%20%20% 20%20%3Ctr%3E%3Ctd%3E%20%20%20%20%20%20%20%20%20%3COBJECT%20classid=%27clsid:02B F25D5-8C17-4B23-BC80-D3488ABDDC6B%27%20width=%22638%22%20%20%20%20%20%20%20%20%2 0height=%22458%22%20codebase=%27http://www.apple.com/qtactivex/qtplugin.cab%27%3E%20%20%20%20%20%20%20%20%20%3Cp aram%20name=%27src%27%20value=%22http://ginauhlmann.com/video/FWP1.mov%22%3E%20% 20%20%20%20%20%20%20%20%3Cparam%20name=%27autoplay%27%20value=%22false%22%3E%20% 20%20%20%20%20%20%20%20%3Cparam%20name=%27controller%27%20value=%22true%22%3E%20 %20%20%20%20%20%20%20%20%3Cparam%20name=%27loop%27%20value=%22false%22%3E%20%20% 20%20%20%20%20%20%20%3CEMBED%20src=%22http://ginauhlmann.com/video/FWP1.mov%22%2 0width=%22638%22%20height=%22458%22%20autoplay=%22false%22%20%20%20%20%20%20%20% 20%20%20controller=%22true%22%20loop=%22false%22%20pluginspage=%27http://www.app le.com/quicktime/download/%27%3E%20%20%20%20%20%20%20%20%20%3C/EMBED%3E%20%20%20 %20%20%20%20%20%20%3C/OBJECT%3E%20%20%20%20%20%20%20%20%20%3C/td%3E%3C/tr%3E%20% 20%20%20%20%20%20%20%20%3C%21--%20...end%20embedded%20QuickTime%20file%20--%3E%2 0%20%20%20%20%20%20%20%20%3C/table%3E%20
    The info in HTML mode, now reads:
    <!-- begin embedded QuickTime file... --> <table align="left" border="0" cellpadding="0"> <!-- begin video window... --> <tbody><tr><td> <object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="458" width="638"> <param name="src" value="http://ginauhlmann.com/video/FWP1.mov"> <param name="autoplay" value="false"> <param name="controller" value="true"> <param name="loop" value="false"> <embed src="http://ginauhlmann.com/video/FWP1.mov" autoplay="false" controller="true" loop="false" pluginspage="http://www.apple.com/quicktime/download/" height="458" width="638"> </object> </td></tr> <!-- ...end embedded QuickTime file --> </tbody></table>

    The error was that I should have been posting the link in the body of the blog text.

  • How to changes baseline date in miro with Posting date

    Please tell me the procedure to change the baseline date in miro with posting date (EKBE-BUdat) on basis of  Purchase order No (EBELN) .
    I tried it by using user exit :-EXIT_SAPLKONT_011  Enhancement : LMR1M002 but got stuck somewhere .Please tell me how to work on this .

    hey guys my problem is solved by using a badi  " MRM_PAYMENT_TERMS" .In method "PAYMENT_TERMS_SET" writing the code .

  • Problems with posting iDocs from MDM in SAP R3

    Hi,
    I am an MDM consultant, with limited knowledge about SAP R3.
    We send material master data from MDM, via PI to R3 using iDocs.
    We are having problems with posting MATMAS, and it seems the problems are with updating already existing materials.
    In BD87 we get the following warnings:
    The field MARA-ERVOE is not ready for input and was therefore not initialized
    The field MARA-ERVOL is not ready for input and was therefore not initialized
    The field MARA-FERTH is not ready for input and was therefore not initialized
    The field MARA-KZGVH is not ready for input and was therefore not initialized
    The field MARA-XCHPF is not ready for input and was therefore not initialized
    With the last message being:
    No changes made
    I have checked the MDM syndicator, and none of these idoc-fields are linked to the MDM repository.
    So they are syndicated blank.
    If we try to resend the material, it is again stopped and in BD87 I see the same messages.
    Please help me understanding how to solve these issues.
    Thanks,
    Thomas

    Hi,
    Please refer the below threads which talks about the similar problem
    http://scn.sap.com/thread/3180116
    http://scn.sap.com/thread/1374222
    Generally the basic view of the material to be created first. Then the sales, purchasing and other views to be created.
    There are few fields in the other views which gets values from the basic data view.
    Regards,
    Antony

  • How do I create a dropdown with three options so that only one is visible in a form (non-flowable)

    I'm working on a form which needs to provides three options for the user out of a drop down list. When the user chooses one option, only that subform is to be visible. Two of the three subforms are text fields, and the third subform is a series of fields which are editable by the user.
    How do i create a dropdown with three options in it, so that in each instance only one subform is visible? This needs to happen in the same space on the main form.

    Hi Nellie,
    Here is the form back to you. There were three main issues:
    In order for dynamic behaviour, like showing and hiding, the form must be saved as a Dynamic XML Form in the save-as dialog.
    While you can use a minus sign when naming objects and subforms, it will cause scripts to fail. I have changed the name of the subforms so that they now use an underscore.
    The dropdown had specified values in the Object > Binding palette (1, 2, 3), so the script needs to use these in the if statements.
    When sharing forms on Acrobat.com, the best option is to select the file in your workspace and then click Publish. This will make it available to anyone who has the published URL.
    I hope that helps,
    Niall

  • Pdf reader X has problems with small pdf and printer with post script driver

    Hi friends.
    I have installed new Reader X and then i saw that, when i print a very small pdf with about 50 kb and i print it on a Laserjet 4000 printer the printer has problem with the amount of data that reader 10 produces.
    When i install a Postscript driver for the printer my computer makes up to 3.5MB printer data from a 50kb pdf.
    When i install a PCL driver for the printer my computer makes only 350kb from the same 50kb pdf file!!!!
    When i install Reader 9.3 the 50kb file becomes also only 350kb on the printer with post script driver, and i can print without problems also.
    my printer has 8 MB Ram and that should be enough for 3.5MB printer data.
    But when i print the pdf with 1 side only, the printer created a side who is only filled with 50% of the text, then there comes out a second page with the message.....not enough memory in the printer.
    i can not change the postscript driver to a pcl driver cause our ERP System can not handle printer with PCL drivers.
    Can someone help me please.........are there settings in Reader X who can solve my problem ???
    Thank you very much for help!

    put ? after rwcgi60.exe

  • Error When I Deploy Dependent DC With Java DC

    Hai ,
    When i deployed Dependent Dc With Java Dc I got  the floowing Error please let me know the solution . for all applications .
    500   Internal Server Error
    SAP NetWeaver Application Server/Java AS
    The initial exception that caused the request to fail, was:
       java.lang.ClassNotFoundException: com.outokumpu.roma.service.model.RomaListValue -
    Loader Info -
    ClassLoader name: [outokumpu.com/romamast] Living status: alive Direct parent loaders: [system:Frame] [service:servlet_jsp] [service:ejb] [outokumpu.com/csdeploy] [outokumpu.com/romamodel] [outokumpu.com/romaexp] [outokumpu.com/lookup] Resources: /usr/sap/S72/J02/j2ee/cluster/apps/outokumpu.com/romamast/servlet_jsp/webdynpro/resources/outokumpu.com/romamast/root/WEB-INF/lib/app.jar -
        at com.sap.engine.boot.loader.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:259)
        at com.sap.engine.boot.loader.MultiParentClassLoader.loadClass(MultiParentClassLoader.java:228)
        at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:353)
        at com.outokumpu.romamast.romamastcomp.wdp.InternalRomaMastComp.<init>(InternalRomaMastComp.java:140)
        at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
        ... 115 more

    You have you references and dependecies wrong. Very few, if any of us, are clairvoyant.
    If you really want to to get help; and there is someone who feels they want to help and has the requisite understanding... you need to provide a proper and complete explanation of your dependencies and setup.
    You need to get your references right and dependencies right.

  • Problem with posting message in forum

    This question was solved.
    View Solution.

    Hi dkpb,
    The problem here was that IE9 at the time was incompatible with the forum software.  That has since been fixed.  What is your issue now?  It helps if you describe your specific problem with posting so we can look into it for you.
    SunshineF
    Clicking the "Kudos star" to the left is a great way to say thanks!
    When your problem has been solved, accept the solution by clicking the "Accept as Solution" button to help other members in the future!
    Rules of Participation

  • Redirect page with POST method in JSTL

    how to redirect page with POST method in JSTL.
    below is the code that i make, but the page redirected with GET method,
    so, the URL shown as http://localhost:8080/tes2/coba2.jsp?nama=saya
    how to hide the parameter, so it didn't show at the URL..??
    anybody help me..??
    server1 -> coba1.jsp
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <html>
    <head>
    <title>coba1</title>
    </head>
    <body>
    <c:url value="http://localhost:8080/tes2/coba2.jsp" var="displayURL">
      <c:param name="nama" value="saya"/>
    </c:url>
    <c:redirect url="${displayURL}"/>
    </body>
    </html>server2->coba2.jsp
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>
    <html>
    <head>
    <title>coba2</title>
    </head>
    <body>
    <c:forEach items="${param}" var="currentParam">
            <li><c:out value="${currentParam.key}" />
                = <c:out value="${currentParam.value}" /></li>
          </c:forEach>
    </body>
    </html>

    There are other two way communications methods as well. One such would be:
    Server1Page1: Take response with parameters.  Use HttpURLConnection to make a request to DataInputServlet
                  on Server2 and send the parameters there with a POST operation
    Server2DataInputServer: Takes request with data in it and starts a new session.  Puts the data into the session and
                  returns the session id to the requester
    Server1Page1: Reads the response from the DataInputServer (the session id) and generates a sendRedirect to
                  Server2's display page using the session id.  Server1Page1 is now done.
    Server2Page1: Gets a request from the client with the session id, and pulls the parameters out of the session.  Then
                  can continue as normal.Server2Page1 can also do a quick refresh to itself not using the session id as well, which will keep the URL visible by the client relatively clean.

Maybe you are looking for

  • How to do a silent install of NI-DAQ 7.3.1?

    I want to do a minimal silent install of NI-DAQ 7.3.1. I have found a few references, but none seem quite to provide all the information I need. Summary of my reasearch so far: In these two threads (thread 1, thread 2) a user asks the same question a

  • How do you connect a Satellite Pro 2100 to a TV?

    Is it possible to connect this laptop to a tv using the video out jack? If so what do you have to do? Any help would be very much appreciated.

  • BPMs in PI 7.3 and PI 7.4

    Dear Experts, My Requirement is How to implement BPM Scenarios in sap pi 7.3 and pi 7.4 Can you please any one guide me with PPT or any Screenshots It helps me allot. Thanks and Regards, Ravi

  • Will a Thunderbolt external hard drive be able to boot the Thunderbolt MBP?

    Are there Thunderbolt external hard drives available and will they be able to boot the Thunderbolt MBP? Thanks.

  • T400 Streaming Media Issue

    Hey. I recently got a Lenovo T400 (type 2764, sn xxxxx) and after a few months of everything working fine the streaming media stopped working. The problem started soon after I got the machine back from Lenovo after sending it in to repair the integra