Possibility to define length of String fields for POJO Reporting

<p>It would be a nice feature if you could set the length of a String field in POJO Reporting.</p><p>Right now the max length is set to 127 characters and that is not sufficient for our needs.</p><p>/Thanks</p><p>Mattias Melin</p><p>IST International</p><p>Sweden </p>

Bascotie wrote:
To make sure it was not blank I had been using
     if (aCust.state.equalsIgnoreCase("") || aCust.state.length() != 2){
The first condition is redundant and pointless here, since, if it's true, the second one will always be true.

Similar Messages

  • Is it possible to define a seperate number range for purchase requisitions

    Hi Experts,
    Is it possible to define a seperate number range for purchase requisitions that come from Forecast vs normal MRP requisitions so that our purchasing department can identify the origin of the document?
    Thanks
    for the thoughts
    Sreeni

    You'd need to figure out manually how forecast PR's are different from MRP PR's (the field from PR tables ) and then in the user exit I mentioned the program looks at the table T161 and field NUMKI, and if the PR getting created is from forecast change that NUMKI in the program to a different one else keep it as it is. If you're know abap programming it won't take long to figure out the logic else work with your developer to implement it.

  • New field for RFDEPL00 report

    Hello, colleagues. Could you tell me how to add new field for RFDEPL00 report? It's gonna be field from KNA1 table. I know that note 984305 helps to do it for FBL5N. But this report uses another structure.

    Hi,
    I don't think you can... Indeed, with RFITEMAR report (FBL5N), you can play with the structure, but not in RFDEPL00/RFKEPL00 reports. Only modification: you can take note 868388 as an example of a change, if you decide to do it.
    Regards,
    Eli

  • Is it possible to define multiple Initial Extract Date' for Different modules ? INITIAL_EXTRACT_DATE

    HI
    We are configuring BI Apps 11.1.1.7.1 For HRMS and Financials.  HRMS data should extract from  '2010-01-01' and Financials Data should extract from '2012-01-01'
    is it possible?
    Source system: EBS 12.1.3
    OBIEE: 11.1.1.7
    BI APPS: 11.1.1.7.1
    ODI: 11.1.1.7.0
    OS: Windows server 2008 R2
    by default 'Configure Initial Extract Date' to set the value of INITIAL_EXTRACT_DATE to '2005-01-01'.
    http://docs.oracle.com/cd/E28271_01/fusionapps.1111/e16814/overview.htm
    Regards
    Sher ullah

    HI Srini VEERAVALLI
    ITs confusing point. Cause on Configuration manager i am able to see 'Initial Extract Date' for HRMS also and in Financials also.
    I created two separate Implementation projects respectively HRMS and Financials. so whether 'Initial Extract Date' can be setted Different for both.
    Regards
    Sher

  • Is it possible to define a global keyboard shortcut for Exposure Adjustment?

    I often find myself having to get out of full-screen mode or having to pull up the Develop or Library module from the hidden right panel just to adjust exposure and nothing else (it is my most common adjustment).
    Is there some way to globally define a key so I can adjust exposure without having to exit full-screen?

    Globally? No.
    However, if you click on the word exposure, you can indeed adjust exposure with the + or - keys.
    I believe you'd have to do this on each photo, and if you click on another word in the Basic panel then that slider is now controlled by + or - (for example, if you click on contrast, then the + or - keys adjust contrast).

  • Convert a number field to a string fields for sorting

    Good Day All,
    I have a field called TranNo which is a number. Then numbers are random (1,3,6,8,99)
    In my sort I want to Sort Ascending, but I want the 3 to be at the bottom of the sort..
    1 first followed by the 6 then 8 then 99 then 3s.
    I wrote a forumla but Crystal doesn't like it.
    if {vrcGGP_ContDiary.TranNo} = 1 then Cstr({vrcGGP_ContDiary.TranNo}) = 'A'
    else if {vrcGGP_ContDiary.TranNo} = 3 then Cstr({vrcGGP_ContDiary.TranNo}) = 'Z'
    else if {vrcGGP_ContDiary.TranNo} = 6 then Cstr({vrcGGP_ContDiary.TranNo}) = 'B'
    else if {vrcGGP_ContDiary.TranNo} = 8 then Cstr({vrcGGP_ContDiary.TranNo}) = 'C'
    else if {vrcGGP_ContDiary.TranNo} = 99 then Cstr({vrcGGP_ContDiary.TranNo}) = 'D'
    else Cstr({vrcGGP_ContDiary.TranNo}) = 'E'
    Error ****
    The Formula result must be a string
    Kind Regards,
    Dmarz96

    Hi,
    Try to create a formula like below and place this on your report and sort based on this formula field.
    if {vrcGGP_ContDiary.TranNo} = 1 then  'A'
    else if {vrcGGP_ContDiary.TranNo} = 3 then  'Z'
    else if {vrcGGP_ContDiary.TranNo} = 6 then 'B'
    else if {vrcGGP_ContDiary.TranNo} = 8 then 'C'
    else if {vrcGGP_ContDiary.TranNo} = 99 then 'D'
    else  'E'
    Thanks,
    Sastry

  • Define value in value field for CO-PA analysis.

    Hello everyone,
    I am looking to determine the values of a custom value field I created. This new value field is activated and assigned to an operating concern and I am able to use it in my form.
    Now I would like to "link" my field value to an GL account in FI. How can I do this?
    Thanks.

    Hi Elodie,
           Just to add to Pavan's reply you need to use tcode KEI2.
            In case of SD to COPA transfer you need to map the SD condition to the value field
    regards
    Waman

  • Is it possible to export all of the fields for calendar events ? Specifically we're after the event creation date time.

    We need to find out when a calendar event was created.
    I have been unable to find this information in Lightning or any exports.
    From looking into the local.sqlite database file the cal_events table has a field called
    time_created. Unfortunately when I try to export this, the format is unknown so it just
    exports as a number.
    Does anyone know of another way to export this information ?
    Thanks in advance

    what exactly are you trying to achieve is my obvious question. A single forensic inquiry is different to a full listing of all events over years.
    I assume you mean the created date shown in this view of the database.
    https://support.cdn.mozilla.net/media/uploads/images/2014-06-02-18-47-50-c207d9.png
    The values stored there are javascript date time values.
    If you enter the value into a javascript like
    var d = new Date(1374129123000000);alert(d);
    Where 1374129123000000 is your number not mine then the alert will be the datetime UTC
    You can enter that javascript onto the error console and have it evaluate. Tools menu (Alt+T) > error console.

  • Length of a field in calendar report...

    Hi,
    I have a calendar report based on 2 columns as necessary, a date column and a varchar2 column.
    All the records for a particular date are grouped and shown under the date in the calendar report as required.
    Off late, we have faced an issue as below
    Error Error during rendering of region "Scheduled Maintenance".
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    This occurs when there are a large number of records for a single date. I.e, the field on the calendar report for a date is not able to display all the records due to length constraints.
    Could somebody pls tell me what is the length of a date field displaying data in the calendar report and also in other reports.
    Is there a way, I could change the length of this date field being displayed.
    Regards,
    Jitesh Gurnani

    Hello Jitesh,
    I don't know whats the exact limit. But when I try following queries in apex.oracle.com then..
    /*No Error*/
    SELECT 'b' name, sysdate date_col from dual connect by rownum < 32000;
    /*Error Occured in Month view, works fine in Day view*/
    SELECT 'b' name, sysdate date_col from dual connect by rownum < 33000;However I can't imagine calender with so many events and long text. It will destroy look & feel of calender regions.
    I suggest you to create some kind of filters so you only display some data at a time. That will definitely help end-users.
    Regards,
    Hari

  • How to popluate user defined values in Paramter field of a report using "Report Server Project", BIDS

    Hello,
    I am creating report using "Business Intelligence Development Studio", creating "Report Server Project" connected to TFS database.
    I have created Variance report and the output of report  as below sample:
    Project   Assigned To      Planned Effort        Completed    Remaining  Variance
    P1            X                        20                        
    10                 5              5
    P2            Y                        10                        
    10                 0             0
    P3            Z                          5                        
    0                  5              0
    By default I made Assigned To as parameter field and its showing data for selection in a drop down box (X, Y and Z) and data also filtered correctly.
    Q. how can I fill resource names in a drop down of my own choice (in this scenario, I want to display only X and Y) and display data based on the selected resource? By default parameter displays all the resources which I don't want.
    I did the below but could not get correct result:
    1. Right Click on "Assigned To" parameter, Clicked on "Available Values" and Selected "Specify values" instead of "Get values from query"
    2. Added X as Label and Value as 2 (Employee ID as mentioned in dbPerson table)
    Drop down displays X but when I clicked on report, it gives an error...
    Appreciate your help on this.
    Regards
    Abdul Kalam

    Hi Abdul,
    From the document, we know that CONSTRAINED flag is used to reduce the risk of injection attacks via the specified string. If a string is provided that is not directly resolvable to qualified
    or unqualified member names, the following error appears: "The restrictions imposed by the CONSTRAINED flag in the STRTOSET function were violated."
    So you need to make sure the members are passed properly to the STRTOSET function. For more details, please see the following links:
    http://ch1n2.wordpress.com/2010/02/21/the-restrictions-imposed-by-the-constrained-flag-in-the-strtoset-function-were-violated/
    http://www.bp-msbi.com/2010/04/passing-unconstrained-set-and-member-parameters-between-reports-in-reporting-services/
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • SQ01 - Need an input field for query report as mandatory

    Hi Guys
    I have created a report using SQ03,SQ02 & SQ01. The report is running fine. But i want to make one of the input field as manadatory
    Guys have any suggestion for the same
    I tried in SQ02, a field named DBPAOBLIG
    I got the above mentioned field when i clicked the extras tab in SQ02 - But the field is not in change mode
    Please suggest me how to make the field as mandatory
    Warm Regards
    Bala

    Hi,
    Create a variant, when you run a query - make it to be run only with this variant (via definition in a transaction for this query). In variant, you can define required fields.
    Regards,
    Eli

  • How to fetch this field for my report?

    Hi.,
    In my system I am having one zprogram, where..,
    If we enter F1 and F2 in the first screen we can present with second screen where we can have details...
    In that details we are having F3 field(Say).
    So this is not standard program. and for first screen we are having T'Code as TT1(Say).
    And the most important thing here we have to note is F3 is not fetching from any database or tables...
    So Here they are developed one code to generate that. Later they are not saving it in any data base or custom table..!
    So Now my reuirement is..,
    Here I want to develop one report with some columns(Fields) where it contains above F3.
    Now,
    I am having F1 and F2 with me.,
    So how can I get F3 Value?
    Do i need to use same logic behind the above program?
    Or,
    Can I call that second screen by inputting first screen inputs i.e F1 and F2?
    If soo, How can read F3 from second screen?
    Thanks for your attention.
    Let me know if you want any further information.
    --Naveen Inuganti.

    In your report ,u can use the same logic code to calculate F3 ,dat they have used in the program.
    If you feel value of F3 is needed in lots of places in your project,then u can develop a FM to calculte F3 inpuuting F1 and F2..and use the FM where evr u want...

  • Hiding a selection screen field for Standard Report Transaction

    Hello All,
    We are trying to hide a check box on the selection screen for a standard sap report transaction (s_alr....). We can hide it by creating a variant but then if the users don't select it, the checkbox will be visible. We can't use transaction variant to hide this since its not a dialog transaction.
    We don't want any users to select that option by clicking on the checkbox and then running the report. Any suggestions or help is much appreciated.
    Thanks,
    Sal

    Did you think about modifying the standard report by adding NO-DISPLAY to the parameter option?
    If you are not allowed to modify another option - although much more effort - would be to replicate the standard selection screen in an own Z-report and at the end do a SUBMIT standard report WITH parameter
    In your won report you can easily hide that parameter and always pass a space to the standard report.
    To submit data to the standard report just use
    DATA: lt_par  TYPE TABLE OF rsparams.
    build the selection table based on the selection criteria the user entered and do:
    SUBMIT rep USING SELECTION-SCREEN 1000
           WITH SELECTION-TABLE lt_par.
    Then just remove access to the standard transaction and create an own transaction for your custom report which is added to the users authorized transactions.
    Not the easiest way to do it, but it does work.
    Regards,
    Michael

  • Defining "prior-week" timeframe dynamically for scheduled reports

    I have a number of reports that I need to execute each week.  But, the scheduling options don't allow me to kick off the report on a Sunday AND constrain the timeframe to the prior week (Sunday-Saturday).   I have a prompt built into the original query, but that's useless if I want to automate the output. 
    I was successful getting the query to work against the upstream database using the following query fragment:
    BETWEEN CURRENT_DATE - INTERVAL '7 day' AND CURRENT_DATE - INTERVAL '1 day'
    But, there is no option to enter this query into the BI.Ondemand UI. 
    Any insight would be helpful.   This issue is hindering progress with our metrics automation plans.
    Regards,
    -Joe

    I'm using the Web-based version of BI.ondemand.  
    I don't have access to the OnDemand Desktop Publisher because the hosting provider I'm using doesn't support it.  
    The scheduler is very unstable in the web version. I often get "page not loaded" errors in the prompt window within the popup scheduler.  
    I've also just determined that the week-definition in BObj is Monday-Sunday and not Sunday-Saturday.   I'd need to make that adjustment as well. 
    --Joe

  • Sensitive fields for dual control (vendors)

    Dear Experts
    I want to configure sensitive fields for dual control -Vendors. Iam unable to see the field "SWIFT".
    Can any one helps, please
    Regards
    Ahmed Zain

    Dear El Zain,
    Unfortunatelly due to the SAP Standard System Design, it is not possible
    to define SWIFT as sensitive field for dual control.
    Table T055F was not thought to change them.
    I'd suggest you to try using a BTE; please check by BERE transaction the
    BTE 00001450 (Vendor master record, individual duplicate check).
    'Function module SAMPLE_INTERFACE_00001450 must not be changed.
    Probably by this BTE you could reach your goal.
    I hope this helps.
    Mauri

Maybe you are looking for

  • Very Strange:  ReferenceError: Error #1065: Variable txtToonName is not defined.

    I have a flash label on a movie clip with its instance name called 'txtToomName'.  This object has existed, been successfully instantiated and used for over a year without any modifications.  All of a sudden, during the getClassByName() call, I start

  • Help needed: FRM-10221 on 10g r2 (10.1.2.0.2) forms and report service

    hi, somehow i managed to install 10g r2 f&r service on an x86 machine with rhel4 es update3. moving on, i was given working fmb and mmb ver 5 files (edited using developer2000 and run against 8.0.x db) by a collegue. i've also get 10g dev suite insta

  • Biztalk 2006 issue

    Hello: We have change the DNS setting of our Standby SQL Server to production. I see connection coming from BIZTALK server into SQL Server and all required BizTalk Services are running fine. I am getting following error as shown below when I try to c

  • Rate routing in REM

    Hi all, I am working on REM and I am bit confused about scheduling and capacity data to be entered in workcenter (production line) Specially the formulas to be entered in both the tab for REM. 1.I want to capture only Machine and labour time . sugges

  • Media player not working

    When playing music the media player will stop working. When I open up the application again I get an error that says unable to connect to media player please try again. I have to restart the player each time (very annoying). Any suggestions?