Variable for 'Solution' text status in the smartform

Hi, everybody.
I would like put to smartform solution resolving info from 'Solution' text status from incident.
Is any variable for this status in smartform?
regards,
Yessen

Hi Yessen,
You can read this text from text container and fill any variable, then add to smart form ( requires little abap ).
About standards there is posibbility to extract all long text.
Look at standard smartforms.
ask if you need example
Rg Dan

Similar Messages

  • "manage nuget packages for solution" is missing in the drop down for NuGet Package Manager

    Hi,
    I have VS2013 Ultimate on windows 7 PC and that Nuget Option does show in the dropdown.  Today, I setup a vm in Azure, from image I select VS2013 Ultimate, just like the one on my PC.  However, when I click on the Tools, Nuget, there is only 2
    drop down option, "package manager console" and "package manager settings" are the only 2 available.  How can I get the ""manage nuget packages for solution"?
    I want to install the xamarin.forms extension and I need this.
    thank you
    Thank you

    Hi laJasmine,
    Based on your issue, generally, I know that there have two ways to see the "manage nuget packages for solution" option after we install the VS2013 Ultimate.
    One way is that it is default that we can see the "manage nuget packages for solution" option by right click this Solution->Manage NuGet Packages for Solution option like the following screen shot.
    Another way is that we can see the "manage nuget packages for solution" option by clicking the Tools->Library Package Manager-> manage nuget packages for solution like the following screen shot.
    So please check if you can get the "manage nuget packages for solution" option from this above two way again.
    If you still could not the "manage nuget packages for solution" option in this VS2013 Ultimate, to check if this issue is related to the VS2013 Ultimate set up file. I suggest you could try to copy this setup file and then install it on other machine
    and then check if you still get the issue.
    If you have any updated message about this issue, please tell me.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error in determining the variable for Workitem Text

    Hi Friends,
                   My workflow is getting triggered by the event but during sending a notification to the agents the variables which i used in the workitem text is not coming. It is showing variables in workitem text cannot be displayed.
                      I checkd in the workflow log. The same variable is coming till the task of sendmail but its not coming into the mail notification.
             But when i tirgger the WF manually the workitem text is cmng........Can u tell me from wher dis error cmng from??
    Thanks
    Kumar

    Read,
    ABAP Proxy error :  GET_BUSINESS_SYSTEM_ERROR
    Dump "GET_BUSINESS_SYSTEM_ERROR" when changing relationships.
    They might help
    Regards
    Juan

  • How to enter text in to the smartform before Printing.

    Hi All,
    my requirement is,
    after execute the print programe, it should give the window for entering the text, after that the text should be displayed on the smartform.
    custom text should be entered after the exection of the program and before if prints.

    *& Report  ZTEST_PRG1
    REPORT  anirban.
    ** DATA Declration
    DATA: w_contain TYPE REF TO cl_gui_custom_container,
          w_textcon TYPE REF TO cl_gui_textedit.
    ** Constant Declration
    CONSTANTS: c_container TYPE scrfname VALUE 'C_CONTAIN'.
    ** Start-of Selction event
    START-OF-SELECTION.
      CALL SCREEN '9003'.
    *&      Module  STATUS_9003  OUTPUT
    *       text
    MODULE status_9003 OUTPUT.
      SET PF-STATUS 'MAIN'.
      SET TITLEBAR 'MAIN00'.
    ENDMODULE.                 " STATUS_9003  OUTPUT
    *&      Module  USER_COMMAND_9003  INPUT
    *       text
    MODULE user_command_9003 INPUT.
      CASE sy-ucomm.
    ** when doing Normal Function
        WHEN 'BACK' OR
             'CANC' OR
             '%EX'.
          LEAVE TO SCREEN 0.
    ** When dong Save Function
        WHEN 'SAVE'.
          PERFORM sub_convert_data.
    ** When Doing Print Function
        WHEN 'PRN'.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9003  INPUT
    *&      Module  text_area  OUTPUT
    *       text
    MODULE text_area OUTPUT.
    ** Create Custom Container.
      CREATE OBJECT w_contain
        EXPORTING
          container_name              = c_container
      EXCEPTIONS
          cntl_error                  = 1
          cntl_system_error           = 2
          create_error                = 3
          lifetime_error              = 4
          lifetime_dynpro_dynpro_link = 5
          OTHERS                      = 6      .
      IF sy-subrc = 0.
    ** Create Text Object
        CREATE OBJECT w_textcon
          EXPORTING
            wordwrap_mode     = cl_gui_textedit=>wordwrap_at_windowborder
            parent            = w_contain
          EXCEPTIONS
            error_cntl_create      = 1
            error_cntl_init        = 2
            error_cntl_link        = 3
            error_dp_create        = 4
            gui_type_not_supported = 5
            OTHERS                 = 6        .
        IF sy-subrc = 0.
    ** Get the text entered
        ENDIF.
      ENDIF.
    ENDMODULE.                 " text_area  OUTPUT
    *&      Form  sub_convert_data
    *       text
    FORM sub_convert_data .
      DATA: lt_data TYPE STANDARD TABLE OF char80.
    ** Clear Local table
      CLEAR lt_data.
      IF NOT w_textcon IS INITIAL.
    ** Call The Covert Method
        CALL METHOD w_textcon->get_text_as_r3table
          EXPORTING
            only_when_modified     = cl_gui_textedit=>false
          IMPORTING
            table                  = lt_data
          EXCEPTIONS
            error_dp               = 1
            error_cntl_call_method = 2
            error_dp_create        = 3
            potential_data_loss    = 4
            OTHERS                 = 5.
      ENDIF.
      IF NOT lt_data IS INITIAL.
    ** Now Lets move the data and Call on the Smartform or Save the Data as
    ** per wish
        SET SCREEN 0.
      ENDIF.
    ENDFORM.                    " sub_convert_data
    Hope That Helps
    Anirban M.

  • Using a Substitution Variable in a text box when the member isn't used in a grid

    Hi,
    I'm trying to create a footer in my report to display a substitution variable for the "Period" dimension. The Period dimension is not used in any of the rows or columns in my grid in my report in FR studio. It is left as a POV. I am trying to reference the substitution variable for CurrentMonth, which is independant of what the user selects for the Peiod POV.
    For example, the user runs the report and selects YearTotal for the Period dimension. I want to bring back the substitution variable of &CurrentMonth for Period even though it is not selected in the Grid for the report. Is there a way to do that?
    The workaround I am using is adding a second Grid and selecting the Substitution variable in the row and referencing the function from the second grid, which is hidden. This is bulky, and I'm hoping for a cleaner solution. The function I'm using from Grid 2 is below:
    <<MemberAlias("Grid2", 1, "Period")>>
    If I referenced Grid1 for Period, the function would display the user's POV selection, which is not what I want.
    Any help would be much appreciated. Thanks so much!!
    Tiffany

    Tiffany,
    I do the following which I think may fit you need:
    Add the "Period" dimension to the Columns section.
    Make the "Period" dimension the top most member of your column selections.
    Hide that row.
    Set the left most column to "Current Poinf of View for Period"
    Select "Same As Col A" (for example) for the remaining report columns.
    Add a column to the far right and use the &CurrentMonth substitution variable for the "Period" dimension. (The other dimensions in that column should be set, if possible, to retrieve as little data as possible.)
    Hide the new column.
    Change the function in the footer to <<MemberAlias(Grid1, A, "Period")>>
    This should allow your user to select their desired period without impacting the hidden column value of &CurrentMonth which will be displayed in your footer.
    Bill

  • My iPhone 5c ... The sound is goofy.  I have the classic Bell sound for my text messages but the phone no longer dings. Can anyone help me?

    Some of my sounds do not work. I have the classic bell sound for my text messages but when someone sends me a text message it doesn't make a noise anymore. Does anyone have any ideas on what's wrong?  It seems that it stopped working ever since I upgraded to the latest iOS system

    Hey Grose1946,
    Thanks for the question. I understand that you are experiencing issues with sound on your iPhone 5c. The following resource may provide a solution:
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    http://support.apple.com/en-us/HT203794
    Thanks,
    Matt M.

  • Using variables for answers to fill-in-the-blank questions

    Hello,
    For fill-in-the-blank questions, one has to provide answers. I want to provide these in the form of (user-created) variables, rather than in the form of fixed strings of characters (so then, as $$var1$$ rather than as 'rabbit'). I haven't been able to get this to work. The enter variable function is indeed available (in the properties panel), but it doesn't actually work (i.e. even if you select a variable to be entered, it doesn't actually get entered).
    Is there a way around the problem?
    1. NB that this same issue holds for text entry boxes (rather than fill-in-the-blank questions). If I could get this to work for text entry boxes, I would use them rather than fill-in-the-blank questions.
    2. One can use variables for answers to multiple choice questions. So I'm hoping I can get it to work for fill-in-the-blank questions as well.
    Thank you in advance. Marvin DuBois

    That would have been my suggestion. I don't have a dedicated blog post, but use TEB's for that kind of questions myself as well. And contrary to the widget/interaction I mentioned before, a TEB is an interactive object, which means it can be validated and there can be a score attached to it. But, it will not help you, since you have to add the correct answers in the same way as for a dropdown list in the FIB question (they are sort of TEB's there). And it is that list that doesn't allow to enter a variable instead of a fixed sequence of characters.
    Which means that you are back to the advanced actions, same as in my blog posts with the widget/interaction.
    Have a workaround (after all I am the workaround Queen) to have reporting, if you need to check only one TEB, described here:
    http://blog.lilybiri.com/report-custom-questions-part-2
    The idea is to use another interactive object that can have a score. In reality I use two instances of that same object: one with score 0 and one with score X and show the right one depending on the conditional action.
    However if you want to have multiple TEB's on the same slide, that have to be checked all with the same advanced action, than you'll need either the Mastery widget by InfoSemantics (only for SWF output) or Javascript.
    Lilybiri

  • How the text elements of the SMARTFORMS can generate a field?

    Hello guys
          I have got this problem of not getting the value of the fields from the smartform. i wrote the text element to populate the field by inserting as the following &IV_BID_HEADER-PROCESS_TYPE& first it comes with the shaded background but after i activate the smartform  the shaded part will gone and it remain as &IV_BID_HEADER-PROCESS_TYPE&  which basically cannot populate any value.
    can anyone help me on this,to keep the field remain shaded at the background which basicallly can populate the values of the fields.
    Thanks

    Hello,
    Please click on "FIELD LIST on/off" or ctrlshiftf4 and then drag and drop the same from the left bar.
    First find whether you have declared the value in Global Variables OR in Import/Export Interfaces.
    Hope this was helpful.
    Cheers,
    Suvendu

  • How to set different pointsize  (Font Size) for different text range in the single textframe.

    I have a one textframe in which i want to  set three different pointsize(font size) for three different text ranges. I have set different tag name for different text ranges . So How can I set different pointsize in the single texmframe.
    Please reply me if anyone is aware of it.
    Thanks,

    Jack,
    Extending Martti's post, you can create an XSLT that will add an element around the ASD2.1 part when you import the XML file into FrameMaker. Then FrameMaker's EDD can format this added element with a font different from the one used in the content element.
    Van

  • Variables for all .fm files on the .book

    Is it possible to create a variable for displaying a date over all .fm files contained on a .book?
    My .book structure is the next:
    Catalog.book
    -Title.fm
    -Index.fm
    -Content.fm
    Each time I need to update the date of the catalog, I should edit the master page of index, and both master pages (left/right) of the content.
    Is there an easier way to make those changes?
    By the time I have a variable called 'revision_date' in both files, but I must change them twice.
    Thanks in advance

    1. Educate him. Point out that the system variable is intended to overcome human mistakes....
    2. a. Either in one of your working files or In a new, separate file, create a unique paragaph tag -- ModDate, for instance --. Insert the Modification Date variable as the only content.
        b. Insert a cross-reference from your working file(s) to the ModDate para tag.
        c. Whenever you open and Save the file with the date-controlling variable, the change should ripple into all files that use that as the source for the cross-reference.

  • Setting bind variable for a view object from the Managed Bean

    Hi,
    i am using JDeveloper 11g, i have to create LOV in the JSF. To show the LOV, it has to populate data using View object and its query parameter need to be sent from the Managed Bean.
    For the View object i want to set the bind variable parameter from the managed bean value. bename is stored in a managed bean (session scope)
    #{beantest.bename}
    But it gives the following exception.
    JBO-29000: Unexpected exception caught:
    org.codehaus.groovy.control.MultipleCompilationErrorsException,msg=startup failed, Script1.groovy: 1: expecting '!',found '{'@ line1, column 2.
    I have followed the link http://kr.forums.oracle.com/forums/thread.jspa?threadID=615474 like Frank wrote on 8.2.2008:
    But steps are not clear.
    How to input the VO bind parameter with Managed bean variable?
    Any Help
    Regards
    Raj
    Edited by: user9928180 on Dec 17, 2008 9:51 AM

    Hi,
    a bind variable in a VO needs to be exposed as an executeWithParams operation in the pageDef file. Just add a new action binding to the pageDef file (context menu) and select the executeWithParams operation on teh VO. Then in the argument field, reference the managed bean property for the value
    Frank

  • Displaying Variables values with Text also in the selection screen of repor

    hai
    I have one InfoObject ZPLANT .When i try to excute the report then im getting only the Values of ZPLANT(not Text of those values) .Like below
    ZPLANT :-
    101 -
    (im getting like this)
    101 London Plant ( i want like this ,when i try to excute the report).
    Please tell me how to do .
    rizwan

    Yes kamaljeet ,
    When we press F4 , then we will gwt some values .
    I want those values with description also ..
    Pls tell me how can i get those F4 values with text in the selection screen of report .
    i ll assing the points
    rizwan

  • JS CS4: Create variable for current layer then select the layer at the end of a script

    I'm coming up blank with the verbiage and spinning my wheels with the OMV and script guide.
    var myOriginalLayer = app.activeDocument.layers.item(0);
    alert(myOriginalLayer)
    returns "object layer" and not the layer's name.
    var myOriginalLayer = app.activeDocument.layers.lastItem().name;
    Does return the layer name I want but not by selection.
    I'm challenged on how to select the layer.

    Hi John,
    The difference lies in that the [Object Layer] is the actual object, and the 'name' is just a property -- just like its color.
    You can use one of these two approaches:
    var myOriginalLayer = app.activeDocument.layers.item(0);
    alert(myOriginalLayer.name);
    will hold the original layer object, and you can see the name if required :-)
    To re-select the layer, use
    app.activeDocument.activeLayer = myOriginalLayer;
    Alternatively, selecting by name goes like
    var myOriginalLayerNAME = app.activeDocument.layers.lastItem().name;
    app.activeDocument.activeLayer = app.activeDocument.layers.item(myOriginalLayerNAME);
    I also noticed the following:
    app.activeDocument.layers.item(0) points to the first layer of your document; not the 'active' one. Similarly, app.activeDocument.layers.lastItem() just points to the very last one. I'm not sure if the order of the activeDocument.layers array mimicks the order as shown in the Labels palette, but I would hope it does :-)
    To get/set the active layer, use app.activeDocument.activeLayer as shown above.

  • Variable for an infoobject when that infoobject is unavailable in the cube

    Hello
    I have a variable for 0FISCPER (V1), which gets populated based on another variable for 0FISCYEAR (V2).
    But the infoprovider on which the query is based doesnt have 0FISCYEAR infoobject. so I am unable to pass a value to the variable V2.
    is there a way in which I can pass on an year to the variable V2 so that V1 gets populated with appropriate fiscal periods.
    Any help is highly appreciated

    Hi Atla.
    which kind of time characteristics do you have in your infocube ?
    I you have these variables I think you have certainly 0FISCPER char...but how you can insert 0FISCYEAR variable if you don't have 0FISCYEAR in your cube ?!

  • Create a new dimension in business layer from Data source: text file on the web

    Hi,
    I have a text data source which is published every few hours that is accessible from a certain URL. I follow the instruction given in this http://scn.sap.com/docs/DOC-43144 - where it shows in great detail how to create the connection, data foundation as well as business layer to create a universe for this type of data.
    All is well - I can use this universe in my WEBI doc and display the data.
    However, in order for me to merge the data from this universe with another universe, I need to create  new dimension based on the data from the text file. The new dimension value is simply the first 4 characters of the Subject found in the text file. The "Subject" dimension is of variant type: varchar.
    Following the guide mentioned earlier, the connection is using SAP BO OpenConnectivity driver. And this driver limits severely the SQL statement that I can use to extract a substring of another string. Here's the screenshot of the SQl expression that I can use with this driver
    After hours of searching, I cannot find any other connection driver for a text file that's published on a certain URL. The BO OpenConnection driver is the best that I could find.
    So here are my problems
    1. one of my data source is a text file published on a web
    2. the only connection I can create does not allow me to create  new dimension in the universe to create an important column "subject ID"
    3. I can create the column in webi as a variable. But when I do so, I cannot merge it with existing dimension (webi not allowing to merge these 2 types). And without the merge, the flat file universe with my database universe can't be combined.
    I'm using WEBI Rich client version 4.1 SP3 Patch 1. Build 14.1.3.1300
    Is there any other idea that you can suggest without requiring to change the extracted data?
    Thanks.
    With warm regards

    Hi Bala,
    Were you able to find out a solution for the problem with uploading values for a variable from a text file on the web?  I am confronted with the same request from users.
    Thanks,
    BQ

Maybe you are looking for