How to supress the tags in XI

HI Everyone,
i have two questions for you.
1) i have a traget field of type integer and its a non mandatory field,  can i send empty fields for this elements. iam getting a response from target webservice saying that it is not valid value.
2) How can i supress the tags if they are empty.
Regards,
Sita Rama Raju

Hi ,
Just check this link
/people/sravya.talanki2/blog/2005/12/08/message-mapping-simplified-150-part-ii
no. 5
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/877c0d53-0801-0010-3bb0-e38d5ecd352c
page 14
Regards
Sachin
Message was edited by:
        Sachin Dhingra

Similar Messages

  • How to supress the dialog box in smartforms

    Hi Experts,
    Can any body tell how to supress the dailog box while executing the smarform.
    valid answers will be rewarded.
    Thanks,
    Satish.

    data p_out like ssfcompop.
    Look at smartform function module,there could be option like
    p_out-tdnoprev = 'X'.
    pass p_out to smartform function module

  • How to get the tag name into javascript

    Hi,
    Is there any way to get the tag name into java script when user clicks on.
    For eg: if i use netui:anchor tag, how can I pass the tag id to the javascript when user clicks on the link using onClick attribute. This tag id needs to be evaluated at run time.
    Ex code is given below.
    function fun1(){
    // how to get the tag name;
    <%
    String st="hai";
    %>
    <netui:anchor action="x" onClick="fun1()" tagId="<%=st%>>
    I want to get this tagId (st) to the java script function fun1() when user clicks on this link. How can I do that. can you please help in this issue.
    Thanks,
    Satish.

    Hi,
    You can set the java variable as a js variable at run time:
    <script>
    var anchorName = <%=getNetuiTagName%>;
    function fun1()
    var anchorID = getNetuiTagName(anchorName);
    alert(anchorID);// this will show the rendered ID for the anchor specified
    </script>
    this works because the jsp variable will be rendered before the js.
    Thanks,
    Steve

  • How to read the tag values sent by PCo to MII transaction

    Hi everybody,
    I have an Agent created inside PCo and its listening to a data server. I have also created a notification object which triggers my MII Transaction (after certain condition is getting fulfilled).
    Now, I want to pass certain values from PCo to MII using the notification object. For this I have tried 2 options:
    1. I defined one input parameter in transaction of type 'XML'. But this did not work. When I used 'Tracer' to check the received values, it showed empty.
    2. Since XML variable did not work, I tried with 'String' variable. It worked but the entire input data was in 'String' format.
    Actually I used XML_Saver to save the string and given filename as '.xml'. When I opened that xml file, it was looking like this:
    <<unable to write XML here>>
    Considering the above 2nd option, how can I extract the particular 'Tag' values from XML string. Since the string is not in the format of 'Rowset/Row/Row', I cannot specifically assign/map those tag values to any other variable inside MII transaction.
    ===========

    Hi, I was trying to post the xml string. It was not possible yesterday (because, SDN editor has converted xml part into some irregular string).
    Now, I am trying to post the string by removing the special characters. Please try to understand it.
    Now, my question is how to retrieve the CDATA value 5599999999 using xpath. Please help.
    NotificationMessage
    Body
    Values
    Expression1 type xsd string
    CDATA 5599999999
      /Expression1
      /Values
      /Body
      Faults /
      /NotificationMessage

  • Index file share with pictures - how to get the "Tag" property as refiner?

    Hi,
    I'm indexing a folder in file share and in the windows explorer view i gave values to the "Tags" property.
    Now i want to set it as refiner in search results. I see that SharePoint gets the properties of: file name, size, picture height, picture width, author... how to get also the properties of Tags? and Dimensions?
    keren tsur

    Hi keren,
    According to your description, my understanding is that you want to add some refiners based on pictures’ properties in SharePoint 2013 Search.
    Firstly, do a full crawl for the content cource.
    For the ‘Tags’ refiner, go to the results page, click on edit page and edit the refiners web part, then choose the Choose Refiners picker. Now add the TAGS field to the right hand column.
    More information, please refer to the link:
    http://social.technet.microsoft.com/wiki/contents/articles/23690.sharepoint-metadata-tag-refiners-not-displaying-in-sharepoint-2013office-365-search.aspx
    SharePoint indexes an item based on list/library columns. However, for the Dimensions property of pictures, SharePoint library cannot retrieve the property from pictures . So when crawling, the property cannot be crawed as a crawled property, you are not
    able to add it as a refiner in Search. When you use Picture Library, there are Picture Size, Picture Width and Height columns, you can create refiners based on these three columns. You can check them in Crawled properties(CA->Search Service Application->Seach
    Schema).
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to supress the header if there is no detail record in the report

    Hi,
    I am trying to create a report using the TEXT_IO utility in oracle forms. The header part is created in one program unit and detail part is created in another program unit. How can I supress the header if there is no detail part? I came to know that I can use HOST command . How can I use this? Can any one help me in resolving this?
    My report should apppear in the format specified below.
    case number : 1
    Name Address1 Address2 State ZIp
    XXXXX XXXXXXX XXXXXXXx XXXXX XXXxx
    case number: 2
    Name Address1 Address2 State Zip
    YYYYY YYYYYY YYYYYYY YYYYY YYYY
    Edited by: 837462 on Feb 16, 2011 6:12 PM

    Hi
    i think it's a better idea to paste ur code here...
    but logically... i supposed u have 2 function header_function & detail_function e.g. both functions returns either 1 or 0 if there is data then it returns and the contrary if returns 0
    In the calling these functions i e.g. WHEN-BUTTON-PRESSED u need to validate as follow
    DECLARE
    v_header_output  varchar(2);
    v_detail_output  varchar(2);
    BEGIN
    v_header_output :=  header_function ( PARAMETERS ... , ,);
    v_detail_output :=  header_function ( PARAMETERS ... , ,);
    IF  v_detail_output = 0 THEN
    v_header_output := 0;   -- or u can do some works that change the return of the   header_function  to null or 0
    END IF;
    END;Hope it works...
    Regards,
    Abdetu...

  • How to get the tag name of HTMLDocument?

    I am now using JEditorPane to display and edit a html file.
    My code is like this:
    kit = new HTMLEditorKit();
    doc = (HTMLDocument) (kit.createDefaultDocument());
    editor.setEditorKit(kit);
    editor.setDocument(doc);
    editor.setContentType("text/html; charset=utf-8");
    editor.getDocument();
    [editor is the class JEditorPane,  doc is HTMLDocument,  kit is HTMLEditorKit]
    When a user clicks on the pane, it's easy to me to get the caret position. However, how can I get the tag?
    For example,
    <p><font class="book">I am a boy.</font> Hello! </p>
    On the pane, the position between "I am a boy" is clicked, I want to get the name of the tag - "font". Moreover, how can I get the class - "book" also?
    Moreover, can I get the <p> tag also?
    Many Thanks!
    Stephen

    Hi Stephen,
    is it possible to get the EditorKit from the EditorPane and then get the ViewFactory for the editor kit.
    Since u have the some tags of the elements hardcoded in the HTMLEditorKit.HTMLFactory it will be handy i guess.
    Let me know whether it helped or not so that either same method be approached or some other has to be tried.
    Cheers,
    Nagaraj

  • How to supress the process diagram after workflow executes

    I need to supress the display of process diagram, displayed afer the workflow executes. How to turn this off.
    Thank u

    Put form.setSuppressReports(true); into whatever your output jsp is (e.g. createResults.jsp, taskResults.jsp, etc; generally whatever jsp displays in your URL when the process diagram is displaying).
    See http://forum.java.sun.com/thread.jspa?forumID=764&threadID=5171130 and/or item 14 in http://groups.google.co.in/group/iampearl/msg/d12647374d730ee6 for more info.

  • How to Supress the record having zero value

    Hello All,
    I have the situation where if the value is zero, i shoud supress the record not to show in the output.
    This if for the purely a xmlP desktop report.
    can some one let me know how to achive this.
    Thanks
    Balaji.

    Hi PBV,
    You can add one more condition.
    For columns:
    <?for-each:groupname?>
    <?if:ELEMENT!='0' and ELEMENT!='' ?>
    Col1 col2.....
    <?end if?>
    <?end for-each?>
    Thanks
    Ravi

  • How to supress the error in a column?

    Hi all ,
    I am using FR_studio for creating reports.
    Can any telll me how could I supress the error in a column which will be caused by Division by zero by using conditional formula?
    Thanks

    Hi,
    I think you are mixing two separate things here. the original question was about FR studio
    FR is Financial reporting, which is a reporting tool, separate from Essbase / EAS
    Essbase Report writer is a native reporting utility, by which you can export data from Essbase database. Though, you will not be able to show data in Workspace and in pdf format etc.
    Regarding FR, you can select the grid where the error is coming, In the grid properties, select suppression and give a value or name in the error "text option".
    Let me know if it helps.
    Cheers
    RS

  • Re:How to supress the customised functionaliteis in a copied comp code

    Hello Friends,
    My client requires a new comp code 3015 which is going to have only some functionalities of the existing comp code 3000.
    The functionalities are all customised. After copying the comp code 3000 , how can I supress the customised functionalities which are not required in the comp code 3015.
    Also please kindly give me the tips for copying the comp code
    Awaiting your response.
    Thanks,
    Krishna

    Hi Michael,
    thank you for your advice! This problem is solved...
    ...but I have another issue. Ive implemented 2 editable fields in my popup. The user should fill that fields with context and that context should be processed in the calling view of my popup.
    My question is how to transfer these information from my popup to my calling view or method?
    I tried the following...
          lv_context_node ?= m_popup->get_context_node( 'QUICKACT' ).
          IF lv_context_node IS NOT INITIAL.
            lv_text = lv_context_node->get_date( attribute_path = '' ).
          ENDIF.
    But it doesnt work! The context node object is always empty/initial.
    Thank you!
    PS: Another possibility could be that the object / node of the calling view is transferred to the pop-up in order to process it there.
    Edited by: Marcus Findeisen on Feb 22, 2011 12:13 PM

  • How to supress the cell size in Discoverer 4i

    Hi,
    I am trying to supress that cell size is less than 5 by using Discoverer 4i. Could someone tell me if the Discoverer 4i has the function and how to do it?
    Thank you for your time!
    Cat

    smithbrian wrote:
    When I am placing a component on the grid I want to be sure the component is exactly where I place it. In order to do that I would need to know what is the size of the gird and how to change the size of the gird in the JFrame.What grid?? You're assuming that we know much more about your program than we actually do. We actually know zip. Please read this help site which will help you to avoid similar errors in posting questions here. It has helped me in the past: [smart questions|http://www.catb.org/~esr/faqs/smart-questions.html]

  • How to remove the tags in a html file?

    I am trying to remove all the tags in a html file , just text left.
    I have written a class myself,but it just works for html tags.
    So could u please give me some tips ?
    thks!

    It's actually not easy to do it. There are various regexp ways of doing it. If you search you'll find them. But they are only partial solutions. What you really need to do is write an HTML parser, perhaps using Java's built-in HTML parser. That's the only way to really and truly extract text from HTML. It's a bit of an advanced programming task, though.

  • How To supress the Pop-up during Submit program Call

    Hi,
    I am calling a program from a a function module using Submit Report and return statement. The problem is that the report give a information pop up to show the number of account processed, and i just click the Ok code and it goes, but i want to supress the Popup since that causes problem if i call it in Background. Please provide any solution for this.
    Regards,
    Nikesh
    SAP Global

    Hi,
    Did you try to check in back ground or not. I think the program will execute automatically when we are assign it in back ground mode.
    create back ground job and assign the respective program to it. definitely it will work fine. if you have any problem let me know.
    Ram.

  • How to supress the screen while calling the Fm

    hi all,
    i am using  a FM HRHAP_SHOW_DOUMENT,
    i am passing the ADD_ON_APPLICATION = ALL
    MODE = N
    S_APPRAISAL_ID = my appid(50000081).
    and also start date, end date,T_NEW_APPRAISER,T_NEW_APPRAISEE,
    and when i execute this FM i am getting a new screen,
    but when i call the FM it shud not be displayed,
    is there Fm to supress the screen
    please help me to go ahead.

    Hi rukmani,
    i don't think it is possible to supress the screen by calling any other FM. as all the screens are associated wid the function module. so if u don't want that screen in that case use any other fm for the same purpose.
    regards
    saurabh

Maybe you are looking for