Issue with FIELD VALIDATION in modify status

I have a problem with a validation of field of a service request.
My problem is this:
I created this type of validation for the field STATE:
([<Status>] = LookupValue ("SR_STATUS", "Open") AND
[<AccountName>] = 'TO CHANGE') OR
([<Status>] = LookupValue ("SR_STATUS", "Open") AND
[<AccountName>] = 'TO BE DEFINED') OR
([<AccountName>] = 'SPAM') OR ([<AccountName>] <> 'SPAM' AND
[<AccountName>] <> 'TO CHANGE' AND [<AccountName>] <> 'TO BE DEFINED' AND
[<plReason_of_the_contact_ITAG>] <> LookupValue ("OCC_CUST_LOV_
SR_10 "," To be defined "))
Now say that the field "Account Name" is set with 'TO CHANGE' and the field "Reason of the contact" is set with "To be defined" and I try to close the service request, the validation works correctly and blocks me to closed the SR ([<Status>] = LookupValue ("SR_STATUS", "Open") AND
[<AccountName>] = 'TO CHANGE').
Perfect!
Now let's say I want to change the "Account Name" and "Reason of the contact" then set the ticket status to closed.
Now the problems are:
If I do NOT go into edit status of the ticket (edit button) and return on time then the "Account Name"=Jack first "Reason of the contact"=information and then was put Status as Closed, validation allows me to close the ticket. Perfect.
But if I go into Edit state (with the Button Edit SR) of the ticket and change simultaneously "Account Name"=Jack and "Reason of the contact"=information and Status="Closed" and then do Save, validation is not working properly and gives me the message as if I had not changed the Account Name.
She acts as if he hadn't interpreted the change of fields.
Please Help me!
Any suggestion??

There is no limit in Adobe form, that means you need to check the backend service, where the field is truncated and change the ABAP data type from the mentioned char255 or something to string for example. Otto

Similar Messages

  • Issue with field separator in GUI_UPLOAD

    Hello Gurus
    I am facing issue with gui_upload. I have a text file in which the fields are eparated by single Pipe  i.e |. Now when I try to read the data from file in internal table even with using field separator it does not insert data in proper fields.
    DATA: BEGIN OF IT_TAB OCCURS 0,
          OBJECT_ID type string,
          VERSION_SERIES_ID TYPE string,
          VERSION_NUMBER TYPE string,
          REVISION TYPE string,
          DOC_NUMBER TYPE string,
          DOCTITLE TYPE string,
          FILESIZE TYPE string,
          MIME_TYPE TYPE string,
          PLANTUNIT TYPE string,
          END OF IT_TAB.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = w_mpath
        FILETYPE                      = 'ASC'
        HAS_FIELD_SEPARATOR           = '|'
      HEADER_LENGTH                 = 0
       READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
      VIRUS_SCAN_PROFILE            =
      NO_AUTH_CHECK                 = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      TABLES
        DATA_TAB                      = it_tab[]
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    I want the data to get appended in internal table based on | separator.
    Please help.
    Regards,
    Rajesh.

    Hi,
    I believe the field separator parameter will work for Excel files..You have to get the internal table in a string format..and then use split statement..
    check this example..
    DATA: BEGIN OF it_tab OCCURS 0,
           object_id TYPE string,
           version_series_id TYPE string,
           version_number TYPE string,
           revision TYPE string,
           doc_number TYPE string,
           doctitle TYPE string,
           filesize TYPE string,
           mime_type TYPE string,
           plantunit TYPE string,
         END OF it_tab.
    DATA: t_tab   TYPE TABLE OF string,
          v_string TYPE string.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename                = 'C:\TEST.TXT'
    *    has_field_separator     = '|'          "Actually not required.
      TABLES
        data_tab                = t_tab
      EXCEPTIONS
        file_open_error         = 1
        file_read_error         = 2
        no_batch                = 3
        gui_refuse_filetransfer = 4
        invalid_type            = 5
        no_authority            = 6
        unknown_error           = 7
        bad_data_format         = 8
        header_not_allowed      = 9
        separator_not_allowed   = 10
        header_too_long         = 11
        unknown_dp_error        = 12
        access_denied           = 13
        dp_out_of_memory        = 14
        disk_full               = 15
        dp_timeout              = 16
        OTHERS                  = 17.
    IF sy-subrc <> 0.
    ENDIF.
    LOOP AT t_tab INTO v_string.
      SPLIT v_string AT ','
            INTO
            it_tab-object_id
            it_tab-version_series_id
            it_tab-version_number
            it_tab-revision
            it_tab-doc_number
            it_tab-doctitle
            it_tab-filesize
            it_tab-mime_type
            it_tab-plantunit.
      APPEND it_tab.
      CLEAR: it_tab.
    ENDLOOP.
    Thanks
    Naren
    Edited by: Narendran Muthukumaran on Oct 15, 2008 4:58 PM

  • Issue with field symbol not assigned in SMQ2

    We are facing an issue with an error in SMQ2.
    The error is "field symbol not assigned". There is also short dump in ST22.
    I have read the previous forum threads and it talks about going into the debugger mode.
    However, which is the program to be debugged ?
    How do I navigate from SMQ2 to the ABAP program.
    Kindly let me know.
    Regards,
    Sanjay

    Hi Sanjay,
    You need to debug program RSTRFCM3. This is the program which drives SMQ2.
    However just check if there are any support pack upgrades to the program recently since this is a standard program.
    Regards
    Abhii

  • Issue with field value defaulted

    Hi,
    I am working on forms (ver 6i). In enter query mode, whenever I click on a DFF field, its context field is being populated randomly with a valid context. There are no events on DFF field at all nor on the block to trigger such behaviour. Any pointers as to what I am missing.
    TIA,
    Neeraja

    convert the form to .fmt file ( i am working on 10g not 6i). Search that .fmt (which is readable) in textpad or notepad for the instance of the field in which you say is getting populated. I believe that it will tell you if it is getting populated on a trigger, if you cannot, check the properties of that field and see if it has an initial value being set.

  • Issue with simple validation rule

    Hi All,
    Environment: HP app which is EPMA deployed
    Version: 11.1.2.1
    I have a strange issue writing a validation rule through calc mgr.
    scenario: We are performing allocations over entity dimension based on %ages entered on a specific account member say 'Input%age' on total to be allocated value. For example: consider a parent entity P with 4 children as mentioned below.
    P         (parent) (Type: Dynamic)
    --A         (child) (Type: Store)
    --B         (child) (Type: Store)
    --C         (child) (Type: Store)
    --D         (child) (Type: Store)
    Need: The allocation should happen only when the sum of  %ages on each of the child roll up to 1 for their respective parent. Else allocation should not happen and message should be displayed to users.
    The current snippet:
    FIX(@Relative("P'',0))
    "AllocValue"
    IF('P"->'Input%age' == 1)
         'Allocvalue" = 'Input%age' * "TotalEntityValue";
    ENDIF
    ENFIX
    Issue:
    1. The script never works correctly even if the sum of %ages for all child is 1. I have tried making '1.0', '1.00' ,'100','100.00' etc but it didn't work. (Note: If user enters 0.2 as %age, the web-form shows it as 20%)
    2. In case the sum of %ages is not equal to 1, allocation happens only for last child D.
    3. If %age condition is removed, allocation happens as expected.
    Any input or suggestion is highly appreciated.
    Thanks in advance..

    Perform the following check:
    1. during the time of calculation the "Input%age" is one (i mean aggregated).
    2. Is  your condition is valid. I mean if you have missed "BegBalance" or any valid combination.
         Best way is to try excel retrieve and match the combination with the if condition

  • Issue with FI Validation check Screen

    Hello Friends,
    I am having an issue with creating FI validation, specifically the check tab. I need to input BSEG-GSBER = 'EES', but I dont see BSEG in the list of structures. How can I add it?
    Thanks.
    Zack

    Hi,
    I have asked to check whether the BSEG structure is allowed to be used in the Pre-requisits part of the validation or not.
    Also check that you are defining the validation step at level 2 (Line Item level) or at level 3 (Complete Document Level).
    As level 1 (Header Level) does not allow the BSEG structure.
    Regards,
    Gaurav

  • Txt formatting issues with fields in text object

    Post Author: David Goldman
    CA Forum: General
    Hi, complete newbie here.  I'm working on my company's estimating form.  I was requested to combine fields FCITY FSTATE and FZIP into one line that auto flows any given data.  So I used a Text object with field calls to FCITY FSTATE and FZIP.  This works very well, however my text is always formated to the way it was entered into the database.  ie. if some salesman enters his info with the capslock key on, it shows up in my text object that way, and not in my regular fields.  The regular fields are somehow formatting the text to cap the first letter of each word.  How can I configure my text object to do this? Thanks 

    Post Author: SKodidine
    CA Forum: General
    Format the fields prior to placing them in the text box.
    For example,
    propercase({table.last_name}) & ', ' & propercase({table.first_name}) & ' ' & propercase({table.middle_name});
    Then place the formula in a text box and then right click and check the box next to 'Suppress Embeded Field Blanks'.

  • Issue with same order being modified in multiple sessions upon simultaneous multiple login.

    Hi,
    I am facing a issue in the following scenario.
    1. User logs into the site from firefox and chrome browsers with the same login credentials simultaneously.
    2. From Firefox session, the user removes some items from his cart.
    3. Now the user refreshes the cart page in chrome. The console throws a "RemovedItemException" and the page breaks.
    Reason:
    This issue occurs since both the user sessions are referring the same order object. The session scoped ShoppingCart component object holds the references to the commerce items that have been modified / removed from the order in other session. Now when it tries to access these objects, it throws a "RemovedItemException". In our site the error gets thrown from the mincart page fragment which first tries to access the removed items. I can put a <c:catch> tag to wrap and catch the exception but how can this be gracefully handled?
    Please provide any ideas, solutions or suggestions if you have encountered a similar issue.
    Below is the stack trace of the error:
    Caused by: org.apache.jasper.JasperException: An exception occurred processing JSP page /cart/json/cartItems.jsp at line 16
    13: <c:set var="itemsQuantity" value="${0}"/>
    14: <c:forEach var="item" items="${items}">
    15: <dsp:param name="item" value="${item}"/>
    16: <dsp:getvalueof var="commerceItemClassType" param="item.commerceItemClassType"/>
    17: <c:if test="${commerceItemClassType != 'giftWrapCommerceItem'}">
    18: <c:set var="itemsQuantity" value="${itemsQuantity + item.quantity}"/>
    19: </c:if>
    Stacktrace:
    at org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:498)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:411)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:322)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:249)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
    at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
    at org.apache.catalina.core.ApplicationDispatcher.doInclude(ApplicationDispatcher.java:543)
    at org.apache.catalina.core.ApplicationDispatcher.include(ApplicationDispatcher.java:480)
    at atg.servlet.WrappingRequestDispatcher.include(WrappingRequestDispatcher.java:116)
    at atg.servlet.ServletUtil.invokeInclude(ServletUtil.java:3858)
    at atg.taglib.dspjsp.IncludeTag.doEndTag(IncludeTag.java:812)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_dsp_005finclude_005f1(cartContentsData_jsp.java:701)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_c_005fotherwise_005f1(cartContentsData_jsp.java:673)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_c_005fchoose_005f1(cartContentsData_jsp.java:585)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspx_meth_dsp_005fpage_005f1(cartContentsData_jsp.java:528)
    at org.apache.jsp.cart.json.cartContentsData_jsp._jspService(cartContentsData_jsp.java:121)
    ... 178 more
    Caused by: atg.repository.RemovedItemException: Attempt to use an item which has been removed: commerceItem:ci2126000003
    at atg.adapter.gsa.ItemTransactionState.<init>(ItemTransactionState.java:385)
    at atg.adapter.gsa.GSAItem.getItemTransactionState(GSAItem.java:2358)
    at atg.adapter.gsa.GSAItem.getItemTransactionState(GSAItem.java:2301)
    Thanks,
    Tejas

    Hi Nitin,
    Thanks for the approach. However, this is an OOTB issue in CommerceReferenceStore module (was able to reproduce the same behavior in a OOTB CRS application as well) . The issue can occur not only when accessing a removed commeceitem but also during the checkout stages if user modifies the cart in a different session during checkout, the application would throw similar errors.
    Is there a way using which i can reload the order object (something like refreshOrder pipeline) whenever i see a similar error? I did not find any OOTB droplet that can reload the order object from the DB.
    Please suggest.
    Thanks,
    Tejas

  • Issue with data Validation while migrating from one application to another

    Hi All,
    I am having a strange issue Kindly please help me .
    I have a data form which have data validation on each cell.The dataform is quite large and contain data for 4 accounts and year (Jan to Dec) combination .The issue is that I when I migrate this data form to other application which is just the replica of the main application. The validation on each cells changes its reference points.
    I have 5 more similar data form and I need to migrate then to other application and also on production sever. Is there any way that while exporting and importing them using formutil.cmd or other way that the validation cells reference does not change its reference point.
    For ex I have validation on Cell A5,A6..........AA6 after migrating it changes to A1,A1.........AA1.
    I am using 11.1.2.1.0 version of Hyperion Planning
    Kindly please help.
    Thanks in advance
    Vikash
    Edited by: user11391767 on Nov 30, 2011 10:47 AM

    Hi Mehmet,
    I tried using the FormDefUtil.cmd .But by using this the reference points of validation changes to first cell when imported.
    Thanks
    Vikash

  • Issue with field data type NUMBER(22,5) while updating field data.

    Hi,
    I have a field with data type NUMBER(22,5).
    While inserting or updating field data it should take 17 digit and after decimal point 5 digit total 22 digit.
    I set 22 for maximumLength property of messageTextInput field.
    While updating field I am getting following problems,
    1) I provide the value as 1234567890123456789012 (22 digit) and click apply button.
    then I got error message as
    Error
    मैकेनाइजड दो पहिया/तीन पहिया वाहन - Value 1234567890123460000000 exceeds the maximum allowed value (NUMERIC (22, 5))
    2)then I insert 12345678901234567.1234 (17 digit before decimal point and 4 digit after decimal point and it didn't accept 5 digit after decimal point) and click apply button.
    It insert the value as 12345678901234600 (value changed after Apply)
    The I tried with simple SQL insert statement to insert data and it successfully insert 12345678901234567.12345 value.
    Any item property I missed here to set?
    Please suggest.
    Thanks & Regards,
    Sagarika

    hi
    according to
    " then I insert 12345678901234567.1234 (17 digit before decimal point and 4 digit after decimal point and it didn't accept 5 digit after decimal point) and click apply button.
    It insert the value as 12345678901234600 (value changed after Apply)"
    this statement ,it seems that it is definitely applying round or somthing like that function in the code before inserting value in the table("try with select round(12345678901234567.1234 ) from dual u will get the same result = 123456789012345600 ") ,
    bcz u r able to insert the same directely into the table using insert statement so kindely have look on the code if something like this is not happening there.try to check code in related EOimpl class
    try to to use debugging mode ,and the 23 char problem is related to maximum lenghth of text box make it 23 it will get resolved and u will be able to enter 17 digits with 5 digits after decimal point
    thanx pratap

  • Issue with a Validation Class

    Hello all,
    I have the following validating class that is supposed to check the usernames and passwords held in a file against what the user has typed into a form;
    package bus;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.io.IOException;
    import org.springframework.validation.Errors;
    import org.springframework.validation.Validator;
    import bus.Credentials;
    public class LogonValidator implements Validator {
        public boolean supports(Class clazz) {
            return clazz.equals(Credentials.class);
        public void validate(Object obj, Errors errors) {
             Credentials credentials = (Credentials) obj;
             String usernameCompare = credentials.getUsername();
             String passwordCompare = credentials.getPassword();
             String username;
              String password;
              String[] data;
             try {
                BufferedReader in = new BufferedReader(new FileReader("C:/Documents and Settings/Jaz/workspace/OBS/war/LoginInfo.txt"));
                String inLine = null;
                while ((inLine = in.readLine()) != null) {
                     data = inLine.split(",");
                     username = data[0];
                     password = data[1];
                   if (((username.toString()).equals(usernameCompare))== false){
                         errors.rejectValue("username", "error.login.invalid-user",
                                   null, "Value required.");
                   else{
                   if (((password.toString()).equals(passwordCompare)) == false){
                              errors.rejectValue("password", "error.login.invalid-pass",
                                        null, "Incorrect Password.");     
               in.close();
          }catch (IOException e){
    }the file the class is to read from (LogonInfo.txt) intially contained only;
    guest,guestand the app worked perfectly fine. However when more entries were added as such;
    guest,guest
    vip,vip
    someone,someone
    nobody,nobodythe form did not validate anything anymore. When I enter a valid username and password that is found in the txt file it simply says value required. Even if I use the initial entries of guest. Im completely lost with this one. Can anyone help?
    Thank You

    Thank you very much for your help. I have amended the code as such;
    while ((inLine = in.readLine()) != null) {
                     data = inLine.split(",");
                     username = data[0];
                     password = data[1];
                   if (username.equals(usernameCompare) && password.equals(passwordCompare)) {
                       break;
                if (username.equals(usernameCompare)== false && password.equals(passwordCompare)){
                             errors.rejectValue("username", "error.login.invalid-user",
                                       null, "Value required.");
                 else{
                 if (password.equals(passwordCompare) == false && username.equals(usernameCompare)){
                             errors.rejectValue("password", "error.login.invalid-pass",
                                       null, "Incorrect Password.");
               } I thought this would have worked, however it validates the username and password even if both are incorrect. What I would have expected it to do is to validate only if both username and password were correct.
    Also if the username was correct and password incorrect display the appropriate error message. Again if the password was incorrect and the username correct display the error message.
    I dont understand why this is not working.
    Message was edited by:
    Jazman

  • Issue with using validation return-to="someAction.do"

    I've an action with the following definition.
    @jpf:validation-error-forward return-to="someAction.do" name="failure"The problem is that "someAction.do" requires a specific form bean as argument. If it is implicitly forwarded there, the form bean is not properly setup. Additionally, there will be lots of error logs because the request parameters does not populate right into "someAction.do"'s form bean.
    I notice that I can get around this if I move all validation logic from form bean into the Action method.
    ... // manual validations
    if (validationFailed){
      FormBeanB newFormBean = new FormBeanB(... ...);
      return new Forward("failure", newFormBean)
    }Effectively, I'm bypassing the implicit call to FormBean's validate method, and do my own manual validation. But this is not the best design.
    Is it possible to disable struts call to validate() method, and I'll manually call them from action method, and handle the forward?

    I've an action with the following definition.
    @jpf:validation-error-forward return-to="someAction.do" name="failure"The problem is that "someAction.do" requires a specific form bean as argument. If it is implicitly forwarded there, the form bean is not properly setup. Additionally, there will be lots of error logs because the request parameters does not populate right into "someAction.do"'s form bean.
    I notice that I can get around this if I move all validation logic from form bean into the Action method.
    ... // manual validations
    if (validationFailed){
      FormBeanB newFormBean = new FormBeanB(... ...);
      return new Forward("failure", newFormBean)
    }Effectively, I'm bypassing the implicit call to FormBean's validate method, and do my own manual validation. But this is not the best design.
    Is it possible to disable struts call to validate() method, and I'll manually call them from action method, and handle the forward?

  • Issue with K9N2 SLI Platinum LED Status Indicators?

    I don't know if there is a problem or not with my K9N2 mb. When I turn my computer on the LED Status Indicators (LED 4-11) immediately show red, red, green green. It doesn't run through the usual initialization/tests that it would normally go through. However, my computer boots up just fine (using it right now). This combination of LED's says that there is a problem with initializing the IDE controller, but I don't have any IDE devices. So, I don't know if there is a problem or not, but I just don't want to ignore it either. It used to not do this, it would run through the initialization/tests normally. The only thing that I have done was upgrade the PSU from a Silverstone Zeus ST65ZF 650watt to a Ultra X4 1200watt. Any help or information would be appreciated, thanks.

    Well, I guess that's nice to know.  As long as everything is working, I'll just ignore it. I was just wanting to be safe than sorry. Thanks.

  • Issue with CRM_STATUS_CHANGE_EXTERN - Not updating user status immediately

    Hi Everyone,
    I need to set a user header status in CRM based on the delivery block selected in ECC sales order. for example, If the delivery block is A2 then user status should be E0008(Image review) etc. For this to happen in the transaction CRMD_ORDER, in save userexit I am reading the shipping data and based on the delivery block, I set the user status using FM "CRM_STATUS_CHANGE_EXTERN".
    When I open the sales order again using CRMD_ORDER, I could see the old status still remaining but when I go to change mode, the user status is reflecting correctly. Can someone pls help me how I can fix this i.e status should change to correct one soon after I open the sales order in CRMD_ORDER.
    Thanks,
    Dharmendra G

    After call of CRM_STATUS_CHANGE_EXTERN you need to call BAPI_TRANSACTION_COMMIT.
    call function 'CRM_STATUS_CHANGE_EXTERN'
        exporting
            objnr               = iv_guid
            user_status         = iv_status
        exceptions
            OBJECT_NOT_FOUND    = 1
            STATUS_INCONSISTENT = 2
            STATUS_NOT_ALLOWED  = 3
            OTHERS              = 4
    if ( sy-subrc = 0 ).
        call function 'BAPI_TRANSACTION_COMMIT'
            exporting
                wait  = ABAP_TRUE
    else.
        "!+ Handle error
    endif.
    Best regards,
    Tomas.

  • Issue with fields of a database table

    Hi All,
    While browsing through database table T2515, i have observed that in 'fields' tab, there are only 2 fields visible ie MANDT and WWSSN.
    When we see the contents of table, there will be one more additional field called BEZTEK.
    Now my requirement is to retrieve data from both WWSSN and BEZTEK fields.
    How to define internal table and how to write select statement in such cases?
    Moreover, from where this BEZTEK will get populate, when we see the contents of table in se11?
    Regards
    Pavan

    Hi,
    BEZTEK may be coming from the Text table related to T2515.  See the text table of T2515 (SE11 -> Menu option Goto -> Text Table).
    Regards
    Vinod

Maybe you are looking for

  • CNTL_ERROR  in job scheduling log

    Hi experts,             i have developed a report to upload the time event data from multiple text files into  table CC1TEV. My report is having a few standard function modules. And i have scheduled the  program using SM36. Erlier i was getting run-t

  • BRFPlus - license with NW fundation for 3rd party - SAP PO applies ?

    Hi, I got the impression that in order to use BRFPlus we need to have SAP NW fundation license for 3rd party, does anyone know, if we have SAP PO (process orchestration) which has a restricted SAP NW fundation license for 3rd party (to be used only w

  • Aperture 3 and Lumix LX5

    I have recently upgraded my Aperture 2.0 software and pictures library to Aperture 3.0 and I bought a Lumix LX5. I have the following questions: 1. It is supposed that in Aperture 3.x you can import also the videos. My videos are not imported. Lumix

  • No Records in Error Stack

    Hi, I've created a Standard DSO on top of a flatfile datasource. I have few records in flatfile with special charcters like @, ~ etc. When I activate the data in DSO, activation fails with invalid SID message. Request turns red and no data are writte

  • AppleTV Streaming while keeping Photos on AppleTV Hard Drive

    I am a new Apple user. Just purchased an AppleTV and an MAC Mini. What I want to do is my most popular photos on the ATV for quick access when I have friends over, but at the same time I want to stream from my mini for other photos without lossing wh