Requirement of keeping the Path field BLANK of HTTP_AAE Channel in NW PO 7.31

Hi ,
We are in a phase of migrating Interfaces from PI 7.1 to PO 7.31(Java Only).
For one of the Interface in PI 7.1 there is a RFC Destination for vendor communication through HTTPS connectivity  :
Target-Host: IP Address
Post: value
Path Prefix: Blank
During migration  requirement is to keep the Path field BLANK of the Communication Channel,however since  PO has mandatory path field   a "/" is been provided, because of which data post fails.
PI:  https://IP:9443
PO:  https://IP:9443/  (Since Path Prefix is mandatory)
As per my understanding The data is supposed to be posted directly to the IP (https://IP:9443) however it is getting posted to (https://IP:9443/) where the service is not available.  For reference have attached relevant screenshots.
Is there any way to provide Blank value,omit the Path Field of HTTP_AAE Receiver adapter. Need ardent support and suggestions
regarding this.

Komal,
I tried the regular expression on my system which is PI 7.30 SP 8 Patch Level 45. And it worked for me.
I have used a simple check for alphabets.
Regards
Abhishek

Similar Messages

  • Text field properties-Using the 'required' option in the text field properties.

    Using the required' option in the text field properties.
    The 'help' manual describes the 'required' function as this: Required Forces the user to fill in the selected form field. If the user attempts to submit the form while a required field is blank, an error message appears and the empty required form field is highlighted.
    My users ARE not submitting the form, they open the pdf, fill it out and print it. HOW can I, make a field "required', I don't want them to skip/leave blank specific fields. However, if I choose the box 'required' in the text field properties, and I begin filling out the form, I can just tab past that field that I've choose as 'required', and I do not get
    prompt/error message or anything, it allows me to save, or print.
    I WANT SOME TYPE OF message (similar to enter a company order form
    off the web, where you can't continue without filling out 'required' fields).
    Is there a step/option I am not doing?

    Then you are going to have to write some JavaScirpt to be executed by the "Will Print" document action to check all the requried fields, either by name or by the 'required' property and handle the issue of the imcomplete fields. You will not be able to stop the print, but you could display and error field so the user knows the form is incomplete and the printed form also conatains this information.

  • How to keep the Text Fields in Nested Subforms together?

    Please find the structure of nested subforms as below:
    --Subform 1
        --Subform 2 {Subform 2 is repeatable}
          Text Field 1
            --Subform 3 {Subform 3 is repeatable}
              Text Field 2
            --Subform 4 {Subform 4 is repeatable}
                  Text Field 3(Header)
                --Subform 5 {Subform 5 is repeatable}
                  Text Field 4(Data) 
    I want to keep the Text Field 2, Text Field 3 and Text Field 4 together.
    I am able to keep the Text Field 3 and Text Field 4 together by checking Keep with next and checking Allow Page Break. But checking Keep with next and checking Allow Page Break for Text Field 2 doesn't help in keeping all the three Text Fields together.
    Can anyone please tell me how do I keep all the three Text Fields (2, 3 & 4) together?
    Please mail me at [email protected] for any solutions. Thanks.

    It would be easier to answer by looking at the form settings.
    You can send the form to [email protected] so I can have a look at it.
    Thanks
    Srini

  • How to keep the input field from PDF Form to RTF

    Hi,
    I'm looking to keep the input fields from my pdf form document to Rtf so I can use them in my Rtf document.
    Regards,
    Alan

    Good day Alan,
    I'm afraid that's not possible as form fields in a PDF file have no equivalent either in a Word format (.docx/.doc) or within the Rich Text Format (.rtf).  That data is simply stripped during the conversion as there's no equivalent available.
    Kind regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • How to keep a calculation field blank until the user enters a number?

    I am building a sales sheet for a school that sells scrip as a fund-raiser. I have the document set so that when the user enters the number of scrip certificates he wants (say, two $25 gift certificates at Lowe's), the program will automatically calculate that this user owes $50 for that scrip category. However, there are more than 100 companies that one can choose from, and if the user doesn't enter a number, the calculated field shows $0. Is there a way that each field can stay blank until the user enters a number bigger than zero? By the way, I'm using this calculation to determine the value (borrowed from a user on this forum): event.value = 50 * this.getField("Lowes").value
    Thanks!

    There are two approaches. You can either add the following Validate script:
    // Custom Validate script for calculated field
    if (+event.value !== 0) event.value = "";
    Or you can change your custom Calculate script and set the Format type of the field to "None":
    // Custom Calculate script
    (function () {
        var v = +getField("Lowes").value;
        event.value = (v !== 0) ? util.printf("$%.2f", v) : "";

  • Where does iTunes keep the "comments" field info?

    I've lost all the comments I recently entered for a particular CD
    and I need to figure out what file iTunes keeps that infomation in
    so I can get only that file out of a recent back up.
    This info is not in the file titled "iTunes Music Library.xml" is it?
    I looked in there by opening it in TextEdit but that didn't seem to be
    the file so it must be kept someplace else. UgH!@

    Matthew,
    thanks for the quick reply but...
    I have not actually ripped a song so this info can not be in the song file.
    Here is what i have going :
    I put in the CD and I have titled each track to give it a descriptive name and
    further added comments to the comments fields.
    I eject the CD.
    When I insert the CD again, all this info shows there again, it's like
    iTunes just knows it's this CD and what the song titles are etc.
    So this song title and commments info couldn't be part of the song file because the songs are still on the CD and iTunes can't make a change on the CD, it's a commercial write protected CD, know what I mean?
    Also, the song title and comments info isn't kept in the "iTunes Music Library.xml" because iTunes shows song titles and comments that are
    not in this file when I search in it with TextEdit. This is making me nuts!

  • Html select change to make JSP page forward keeping the exsting field value

    Hello, All,
    I am trying to make the change of a selection box in HTML form to reload the page and populate the second selection box based on the value in the first selection box. The content of the second selection box is from database....
    i used a javascript funtion and called it by the onChange(), the onChange redirect the page to the same page. However all my previous input is lost and the second selection box is not populated based on the first selection box.
    The question is how do I keep the current input and reload the page based on the change of a selection box?
    Please help..
    Thanks..
    Here is the code
    <script language=javascript type="text/javascript">
    function forward(){
    location.href="trdCapDetail.jsp";
    </script>
    <select name=vehicle onChange="forward()">
    <%for(int i = 0; i < Vehicle.getAll().size(); i++){
         Vehicle vehicle = (Vehicle)(Vehicle.getAll().elementAt(i));     
         out.write("<option value=" + vehicle.getKey()+" >" + vehicle.getCode() + "</option>");
    %>

    Ok two things.
    1 - you need to submit the value which was selected.
    2 - you need to repopulate the select box with it.
    1 - you need to submit the value which was selected.
    You do this by either appending the parameter to the url, or calling form.submit().
    <script language=javascript type="text/javascript">
    // either set parameter on url manually
    function forward(control){
    var param = control.value;
    location.href="trdCapDetail.jsp?vehicle=" + param;
    // or submit the form:
    function forward(control){
      control.form.submit();
    <% pageContext.setAttribute("vehicles", Vehicle.getAll() ) ; %>
    <form name="myForm" action="trdCapDetail.jsp"> 
      <select name="vehicle" onchange="forward(this)">
          <c:forEach var="vehicle" items="${vehicles}">
            <option value="<c:out value="${vehicle.key}"/>"> <c:out value="${vehicle.code}"/> </option>
          </c:forEach>
       </select>   
    </form>2: populating the control
    One way is to use javascript again:
    <c:if test="${not empty param.vehicle}">
      <script language="javascript">
        document.myForm.vehicle.value = "<c:out value="${param.vehicle}"/>";
      </script>
      </c:if>
    // or scriptlet code if you must
    <%
    String selectedVehicle = request.getParameter("vehicle");
    if (selectedVehicle != null){  %>
      <script language="javascript">
        document.myForm.vehicle.value = "<%= selectedVehicle%>";
      </script>
    <%
    %>The other way to keep the current input is to generate the string "selected" inside the option tag for the selected item. In your loop, check if the current id equals the submitted id, and print "selected" if it is.
    Hope this helps,
    evnafets

  • How can I modify supplied WP template & keep the changeable fields eg date

    Sorry couldn't find any details on this. If I use one of the supplied 'letter' templates - it includes a date field which is created when I create document. If I modify the rest of this template and then save it as a template - I lose this automatic date insertion facility.
    Also is there a method of automatically inserting the document name into the 'insert filename' field when the file is saved?
    Has anybody written a guide on advanced template design?

    Hello fruhulda
    It seems that the OP is facing a behaviour which was described several times.
    In some Apple delivered templates, is a date field which grabs the current date when we create a new document.
    This date remains as is whe we re-open the saved document some days after.
    If we create a template, we may insert a date and ask it to update when re-opening the document.
    If we save such a document as a template, it will apply the creation setting so, when we use it to create a document the date of this new document will continue to change on opening which is annoying.
    Getting the behaviour of the Apple delivered template requires a bit of surgery in the Index.xml file of the custom template.
    This trick was described several times in a Pages forum.
    A quick search with the keystring *_template AND date AND index.xml_* brought the dedicated messages to the surface (of course I enlarged the time range to search to All).
    http://discussions.apple.com/thread.jspa?messageID=5848918
    http://discussions.apple.com/thread.jspa?messageID=6601953
    http://discussions.apple.com/thread.jspa?messageID=6601953
    http://discussions.apple.com/thread.jspa?messageID=9079986
    Yvan KOENIG (VALLAURIS, France) mardi 17 août 2010 14:08:01

  • ValuationType(VT) Auto Picked at GRN after keeping the VT filed blank at PO

    Dear Gurus,
    I need to trace my FOC items seperately.
    For that i am using split valuation and created a valuation type as FOC.
    I have created a PO for the same material in two line items. One with valuation type blank and other with valuation type FOC. When i do GRN, system automatically pic the valuation type as FOC for both line items.
    Cant i trace the normal stocks without a valuation type?
    Do i need to craete 02 valuation types as NORMAL and FOC?
    Why does the system pick the FOC valuation type automatically even the PO valuation type is blank?
    Please guide
    Regds,
    Nalindar
    Edited by: Nalinda Ratnayaka on Dec 3, 2010 1:26 PM

    Hi,
    1)If you want to use same material with using split valuation, you should create two valuation type with NORMAL & FOC.
    2)System picks default valuation type -FOC, because you have only one valution type for material.
    3) Alternatively you can create other material code with material type-UNBW (Non -Valuated material).
    I hope you got all answers.
    YB

  • Can anyone tell me what would happen if I left the photo field blank on the Cards app on iOS?

    I like one of the letterpress designs but i'd prefer if the photo did not exist on the inside cover.
    Does anyone know what would happen if I left it blank or of any way to remove it?
    Thanks

    Try here:
    iTunes Store: My credit card's security code or zip code does not match my bank's records
    Then try contacting iTunes
    Apple - Support - iTunes - Contact Us

  • Required Table for the following fields.

    Hi All,
    I am searching for a table which containing the following all fields can anybody help me if you know
    Cost centre: KOSTL,
    Activity Type: LSTAR
    Fixed Activity Price in the transaction KP27.

    Cost centre: KOSTL,  table is CSKS
    Activity Type: LSTAR table is  CSLA,
    further if u want
    se11->datatype-> enter ur field name -> click where used list button (3rdbutton from left)-> check table fields-> press enter...
    Ramesh.

  • Is it required to keep the older versions of JAVA

    I see that all the updates are visible as installed , and take up a large ammount of valuable disk space , is it necessary that all the updates be retained Inidviually on the disk ,
    IS IT POSSIBLE to remove the earlier updates and retain only the latest uodated

    Looks like I am confusing the Software updates information which indicates the numerous versions of Java in it .
    does it mean that even if the version of Java are indicated independently they are not installed independtly on the Mac but replace the older version,

  • I lost power cord but just plugged in a generic one.  Are there specific requirements to keep the apple tv from overheating or something?

    should I buy another apple power cord or just use the one I plugged in--it seems to be working.  is there anything wrong with using another plug?

    No. As long as it fits it will work just fine.

  • Making Numeric field blank

    Hi Experts ,
    i have a requirement to make the numeric field "blank" in some rows of internal table .
    its about vendor
    whenever any vendor will repeat , i need to display  3 numeric fields "blank" , in that particular row .
    please help me on this issue .
    thanks in advance .
    vijeta

    Hi,
    One very important thing we cannot make numeric field as blank is can be made initial i.e. 0.
    So we have to make the field as character then we can make it blank by initializing it.
    thanx.

  • Is the username field required in the URI Scheme?

    The URL scheme does seem to work now just like RDP files but it does not work if I leave the username field blank.  I can enter the domain in username field but cannot get a "\" included.  I would ideally like it to be blank. Also, SSO
    does not work.

    Hi,
    Thank you for posting in Windows Server Forum.
    Enabling a Uniform Resource Identifier (URI) scheme gives IT professionals and developers a way to integrate features of the Remote Desktop clients across platforms and enriches the user experience by allowing: 
    1. Third-party applications to launch Microsoft Remote Desktop and start remote sessions with predefined settings (provided as part of the URI string.)
    2. End users to start remote connections using pre-configured URLs.
    More information.
    Remote Desktop Client URI Scheme Support
    http://technet.microsoft.com/en-us/library/dn690096.aspx
    Hope it helps!
    Thanks.
    Dharmesh Solanki

Maybe you are looking for

  • Send Synchronous message from Oracle to BPM to CRM in RWB

    Hi All, I have a scenario like this Oracle Sender (synchronous interface)-> calling ccBPM -> CRM which is a synchronous process. Oracle sends an external message to CRM and get the response back. This is achieved using ccBPM due to some internal call

  • In my library i'll show an album but on my classic it will show the album twice, why? and how can I fix it?

    Not every body is a computer wizz so why make it so difficult to get an answer. I asked how do I fix it when your library on your PC shows an album that same album shows up twice on my classic. Am I the only one getting frustrated from having to jump

  • IPhone doesn't recognize epson workforce 545

    My iPad prints effortlessly to my epson.   I just can't get my iphone4 to recognize the same printer.   Can anyone offer me some ideas?   Thanks!

  • Urgent: zone boot error!!!!

    1. I create my zone with following configuration: zonepath: /export/home/zones/ems-zone autoboot: true pool: ems-pool inherit-pkg-dir: dir: /lib inherit-pkg-dir: dir: /platform inherit-pkg-dir: dir: /sbin inherit-pkg-dir: dir: /usr net: address: 10.1

  • Cannot record custom voicemail greeting?

    I initially set my voicemail with the default greeting. Then I switched to "custom" greeting and my iphone doesn't let me record my own greeting. I press the record button but nothing happens. Is anyone else experiencing this?