Issue with SID's flag check on DSO

Hello,
I have a DSO with the SID's flag checked. With this check on, when I run a query, the query dumps or doesnt show data.
In RSRV when I do a test on this DSO, I get the following errors (which dont get corrected after running "correct error")
The SID values are missing for 1 specifications for characteristic ZCH_STDAT
The SID values are missing for 1 specifications for characteristic ZCH_TGFDT
The above two characteristics are referenced on 0DATE. Many records in the DSO have blank values from the source for the above date objects, which is expected as they might not be populated all the time.
We didnt have these issues before. It seems its a data related issue. But I am not able to pinpoint, as the load and activation goes smooth.
Would appreciate anyone's thoughts on this.
Thanks
Prakash

The message is telling you that you have a value in the DSO for InfoObjects ZCH_STDAT and ZCH_TGFDT  which are not found in ZCH_STDAT and ZCH_TGFDT themselves.
This can happen when if you have chosen NOT to create master data as data is loaded to the InfoProvider.
Insure that all values found in the DSO are also found in the InfoObject, and everything will be fine.

Similar Messages

  • Proformance issue with 'sid generation on activation'

    Hi Gurus,
    In our BW(NW 2004) system we are using Cognos as reporting tool, due to process chain failure at DSO level we unchecked 'sid generation on activation' and chain running successfully after that.
    unchecking will be a performance issue due to generating sid's at run time as per SAP.
    My question is as i am using Cognos in place of BEX. what are the possiblities of effecting the performance and alll?
    Please provide your valuable suggestions.
    Thanks in Advance,
    Suresh.

    Hi Suresh,
    Irrespective of what is the reporting front end you use, if you use this DSO for reporting it would generate the SID values at the runtime which will have huge impact on reporting performance. Just removing the SID generation option would temporarily fix the load issue, with quick activation of DSO but it will affect the most important area reporting performance.
    Try to solve the issue with SID generation error while activating at the BW side which could be because of the special character issues and once you fix that your process chains would load fine with a far better performance while reporting on this DSO.
    Regards,
    Mani

  • Issues with Admissions Restricted flag on Programs of Study

    Hi,
    We have had issues recently with students booking when they should not be allowed to book.  (example: admission approved for fall, but the student was able to book for the previous summer)  One suggestion from SAP was to use the Admissions Restricted checkbox located in the Program Data section of the SC "Program of Study"
    Testing went well, however, we found a couple of instances where this option did not work.
    1.  If the student had 2 admissions with the same program of study and one of them was in Rejected status, they would not be able to book.  So the scenario is...a student applied last year and was rejected as an Undeclar UG.  They applied again this year also as an Undeclar UG and were approved for Fall.  When they book for fall...the error message returns that they do not have a valid admission.
    2.  It appears that if we can no longer use the Change of Program button on the Registration tab.  If we try to change the program, we get the message that the "Student has no valid admission" for the program we are switching too.  Which they don't have an admission for the change...that's why we do the Change of Program functionality.
    I may have to file an OSS note for this, but I was wondering if anyone else used this feature and ran into the same problems.
    Thanks!
    Mike

    Hi Mike,
        If look into documentation of BADI it says "the system calls this BAdI when you process the following activities:
    RA01 - Initial registration
    RA02 - Extend study segment
    RQ01 - Change of program
    The logic you suppose to code is if you are getting value CV_ADMISSION_OK as space. Look for does that student have any approved admission for that level (UG/GR/DR). If he finds any records in Hrp1001(relat 530) with same level just set this flag to 'X'. It will allow you to change the program.
       Let's say if SAP allows you to change of program without going through this validation. Again you will get caught when student will not be able to book course because it will not find any admission for new program. This badi is allowing you override admission check.
    Thanks,
    Prabhat Singh

  • BPEL wsdl & issue with WS-I Profile check...

    Hi all,
    The .WSDL file corresponding to a BPEL always has an additional <partnerlinkType> element at the end.
    This causes some tools that do a WS-I Profile check to report it as a failure to conform to standards (Of course, since it is an "extra" element NOT supposed to be there in a 'standard, portable' WSDL file..)
    (How Can i ?!? and...)Can i manually remove this element..?!?
    Or should i ignore this error/failure...?!?
    What do you people suggest/follow..?!?
    (Personally, i feel it should be there...)
    Many Thanks..!

    Thanks for some pointers...
    But, i feel the Amazon/Google WSDL's do NOT have partnerlinkType elements in them simply (perhaps) because they represent "plain vanilla Web-services" & not BPEL processes.
    The problem fer me is that when i develop & deploy a BPEL process, the associated WSDL for that process automatically/always has 1 or more partnerlinkType elements in it.
    Kindly let me know your views on this, dear friends..
    Thanks again...!!

  • Issues with using utl_http with Oracle Wallet

    Hello Everyone,
    We are experimenting with Oracle wallet and utl_http and are attempting to do an https transfer and we are facing some problems. I will appreciate your help greatly if you can advise on what could be wrong. We are on db version 10.2.0.1 and Unix HP-UX. The intention ping an https url and get a simple 200 response. Future development would include get/post XML documents from that url and other interesting stuff. I understand that utl_http with Oracle wallet can be used for this purpose.
    The wallet has been created and the ewallet.p12 exists. We downloaded the SSL certificate from the url's website and uploaded into the wallet.
    Everything works if I put in a url with plain http. However, it does not work with an HTTP*S* url.
    With HTTPS when I run the below code I get the following error. Again, greatly appreciate your time and help because this is the first time we are using Oracle wallet manager and do not know where to go from here.
    ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1029
    ORA-29268: HTTP client error
    declare
    url varchar2(225);
    req utl_http.req;
    resp utl_http.resp;
    my_proxy BOOLEAN;
    name varchar2(2000);
    value varchar2(2000);
    V_proxy VARCHAR2(2000);
    v_n_proxy varchar2(2000);
    v_msg varchar2(100);
    v_len PLS_INTEGER := 1000;
    BEGIN
    -- Turn off checking of status code.
    utl_http.set_response_error_check(FALSE);
    --Set proxy server
    utl_http.set_proxy('my-proxy');
    utl_http.set_wallet('file:<full Unix path to the wallet on DB server>','wallet998');
    req := utl_http.begin_request('https://service.ariba.com/service/transaction/cxml.asp');
    --Set proxy authentication
    utl_http.set_authentication(req, 'myproxyid', 'myproxypswd','Basic',TRUE); -- Use HTTP Basic
    resp := utl_http.get_response(req);
    FOR i IN 1..utl_http.get_header_count(resp) LOOP
    utl_http.get_header(resp, i, name, value);
    dbms_output.put_line(name || ': ' || value);
    END LOOP;
    utl_http.end_response(resp);
    exception
    when others then
    dbms_output.put_line(sqlerrm);
    END;

    I tried this using plsql ...
    declare
    SOAP_URL constant varchar2(1000) := 'http://125.21.166.27/cordys/com.eibus.web.soap.Gateway.wcp?organization=o=WIPRO,cn=cordys,o=itgi.co.in';
    request      UTL_HTTP.req;
    begin
    dbms_output.put_line('Begin Request');
    request := UTL_HTTP.begin_request(SOAP_URL,'POST',UTL_HTTP.HTTP_VERSION_1_1);
    dbms_output.put_line('After Request');
    exception
    when others then
       dbms_output.put_line('Error : '||sqlerrm);
    end;The output was ...
    Begin Request
    Error : ORA-29273: HTTP request failed
    ORA-06512: at "SYS.UTL_HTTP", line 1029
    ORA-12535: TNS:operation timed outIt seems to be an issue with the webservice, plz check if its available & allowing requests.

  • Issue with printing Indesign exported PDF in Chrome

    I have created a file in CS6 and exported it to a two sided PDF. This PDF works when printing from the PDF.
    I have uploaded it as a document link on a website and when clicking on the link it opens in a separate window. If people use Internet Explorer or download the file the PDF and print it it looks perfect.
    If the user is using Google Chrome only a section of the PDF prints at a large size. It looks like it thinks the PDF is an A3 so only prints the bottom left hand corner.
    Things I have already tried - which all have the same issue.
    Creating a brand new InDesign file and exporting reuploaded on the website
    Saving it as a IDML file and exporting and reuploaded on the website
    Had someone else export the file
    Tried printing from google chrome outside the office
    Checked no issues with the website backend
    Checked with the IT company that services our systems.
    Thanks in advance of your help.

    Hi jtrew,
    It sounds as though the issue is specific to Chrome. Please see the following document from Google support: https://support.google.com/chrome/answer/142056?hl=en
    Let us know how it goes.
    Best,
    Sara

  • Issues with Lion and Outlook - Display

    Since installing Lion on my MacBook Pro, I get the spinning wheel every minute for about 5 seconds when authoring an Outlook 2011 email. In addition, my open windows randomly shift 1" to the left and back again when toggling between them. I have reached out to others in my company who have upgraded and they are experiencing some of the same kind of issues. I have searched different sites for a solution but none of them seen to solve the issues. Do I have to revert back to Snow Leopard in order for my machine to keep up with my typing??

    Thank you Allan! Checking with Buffalo right now! I didn't occur to check the NAS manufacturer as I didn't have this issue with Snow Leopard. Checking their website it looks like there is a Firmware update for OS Lion which is great! Downloading the file now. Will post my results later so others can benefit from this thread. Thanks so much! Always nice to have an extra set of eyes when a "crisis" strike

  • Datamart - Generate Datasource DELTA flag check

    We are on BW 3.5 (source system) and trying to send data across to target system (SCM / BI 70).
    When I perform "generate datasource" for a cube, the resulting datasource " 8* " is generated correctly but with the DELTA FLAG CHECKED (txn .RSA6 ) for that datasource
    With this flag setting, we are forced to run an INIT and then DELTA from the target system to extract the data
    Question :
    1) How do we "uncheck"  the Delta Flag setting ? Is it possible ?
    2) If we cannot uncheck the flag , how do we run Full loads from our target system ?
    Thanks in advance .
    Hitesh

    Hi,
    Even if the datasource is delta enabled it means you can run delta loads for it but it doesn't mean that you cannot run the full loads.
    For unchecking the flag in the Delta for a datasource you have make that particular delta field to be disabled in the RODELTAM table for the particular data source. This can be done by using a custom ABAP program.
    Hope it helps !
    Regards,
    Rose.

  • Login Issues with license check

    Hi All,
    We have had some issues with starting the database after a virus attack on our network. We have now sorted this out with the help of an Oracle DBA. We can now start the database as well as the central instance fine.
    But, when our users are trying to login, they are getting the error "Logon not possible (error in license check). I have also tried with the SAP* and DDIC users in 000 client. But no luck.
    O/S:    Windows 2000 Server
    DB:     Oracle 9i
    SAP:   4.7 EE
    Can someone help me plz?
    Thanks
    Vijay

    Regarding the error "Logon not possible (error in license check),
    Few suggestions:
    1. Please copy and paste the output from the following commands:
       -> saplicense -version
       -> saplicense -install trace=2    (this generate dev_slic file)
       -> saplicense -get
       -> saplicense -show
    2. DB connect problem... Sometimes this error can occur when there are
    connection problems to the central instance. During logon system checks
    if a valid license is installed by reading the entries in table MLICHECK.
    SAP* will bypass the MLICHECK check.  So, sometimes this error can occur when there are connection problems to the central instance (message server). This could be a temporary problem. Please try to restart your SAP servers if this helps.
    3. See SAP note 359944, 193800
    4. Copy and paste the output of command "R3trans -dx"
    5. Check the file /etc/services for missing entries, example like
       sapms<SID> 3600/tcp
       sapdp00    3200/tcp
       sapdp99    3299/tcp
       sapgw00    3300/tcp
       sapgw99    3399/tcp
    6.  use the message-server-test tool 'lgtst' as per SAP note
    64015 to see whether you can connect to the server.
    7. can you ping the message server ? check parameter rdisp/mshost, IP
    address on host table ?
    cheers,
    Vincent

  • I  have an issue with speaker/microphone. when i call or i  recive a call the person on the other side can not hear me.

    i  have an issue with speaker/microphone. when i call or i  recive a call the person on the other side can not hear me.

    Hello aalapdesai112,
    Lets see if we can get you back to taking calls normally again. Start your troubleshooting with the article below and go through checking to making sure that you are up to date with your iOS as well as a simple restart on your iPhone. 
    If your voice is too faint or sounds unclear using iPhone, or iPod touch
    http://support.apple.com/en-us/HT203792
    Regards,
    -Norm G. 

  • Issues with Analysis Authorization checks in APO

    Hi Friends,
    I am facing an issue with Analysis authorization checks in APO.
    We have setup user access based on Management Entity (Analysis authorization - AGMMGTENT and 0TCAACTVT) and core APO authorizations (based on the work profile - e.g: Demand Planner).
    Scenario: Consider User A has access to India and Australia Management Entities with 0TCAACTVT - *
    This user also has display access to all management Entities (AGMMGTENT - * and 0TCAACTVT - 03). This scenario works very well in Quality where the RSECADMIN trace shows check on both Characteristics. However in Production the RSECADMIN trace shows up only against AGMMGTENT (*) and by default takes 0TCAACTVT as (*).
    In Quality the Characteristics that get checked are as below : and it works as expected. Display access for Management Entities that are supposed to be displayed only and change access to only the Management Entities that it should.
    However the Trace for Production shows the following : As a result it is allowing the user to change access to all management Entities. Which is not desirable..
    Resultant trace results are as below: This should not happen..
    I have compared all Analysis Authorizations and it is same across both Instances. The Demand planner access is consistent too..
    Will it be possible for you to advise on what could I be missing.

    Hi All,
    If it helps, in Quality: the Authorization checks are listed as: Subselection (Technical SUBNR) 1
    while in Production it checks Subselection (Technical SUBNR) 1 in one place, however where it fails - the check happens as Subselection (Technical SUBNR) 0.
    Is there a way we can change this to SUBNR 1. Is there any table entry that I can look at to check if the Authorization check is functioning incorrectly..
    Please advise.. Thanks..
    Regards,
    Prakash

  • IS there a way to fix the issue with text list boxes where they shift (empty space is smaller than the text size) when two text lsit boxes are side by side?

    Currently I have a webpage I designed for a company where I have multiple text list boxes side by side for the purpose of displaying data in each one based on a category in the database. So a text list box for the primary key, name, serial number, etc. I have to use Firefox as it typically works best for printing and functionality for the page. The single issue we are having is that in Firefox if the field is null as far as text the text are shrinks meaning all the data in that list box shifts up and is no longer in line with its congruent data in the other text list boxes. In other browsers that's not a problem and everything stays lined up regardless of whether there's text in the box or not.
    Unfortunately I cannot provide a link but if contacted I will provide screen shots.

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • My itunes account shuts down for no reason.  It wont recognize my iphone and there is an issue with network connectivity and itunes.  I have already  reinstalled itunes and did a syste restore on my computer, firewall checked and virus scan done.  Ideas??

    My itunes account on windows xp shuts down for no reason.  If even try to delete something from my library it shuts down.   It wont recognize my iphone and there is an issue with network connectivity and I can't connect to the store.  I have already  reinstalled itunes and did a system restore on my computer, firewall has been checked, itunes is ok on firewall and virus scan done.  Ideas??

    Same problem. I can see the itunes store so not a problem with windows firewall. The account is active on my iphone so i know i am not locked out. I can connect the PC to my iphone so i know itunes is working ok. It is just logging into itunes on this pc which doesn't work. Only thing I can think of is that the email address I use for my apple id has been offline for a while and is working again now, I'm wondering whether this has been the case for others who are having this issue?

  • Issues with getting to side displays and closing apps

    Maybe someone else has had a similar problem or can help advise:
    I am on a Windows 8.1 Asus Laptop with a second monitor.  
    Up until about a week or two ago other than some resolution issues (assume may be my video card) all was ok with Windows 8 and 8.1 update and I was liking the new functionality (like anything new may take a few min, but once you know how things work all
    is good).
    My problem is the following: starting about 2 weeks ago and is only with my main monitor (My secondary monitor works exactly like it should)
    - I can now no longer close apps by clicking and dragging at the top of the screen.  Now I need to get to the X button however, I can not get to that X button without clicking on another application which I can only due going to my second screen.  I
    have tried going to the top right corner, clicking, holding, ect the top bar does not show up
    - On my Laptop's main monitor I can no longer get the side Start bars to show up (one on the left shows open apps, the one on the right has the search, Share, Start, settings, ect).  
    Did Microsoft change something in an update that could have caused this issue?
    Is anyone else having this same issue?
    Any clue why functionality would work on my secondary monitor and not my primary monitor?
    Any suggestions or even key shortcuts that I can use to get to these necessary bars without the mouse that I can use till issue is resolved?
    Thank you.

    in the case of the AMD catalyst that i have myself you can try detect displays whenever catalyst is opened and also disable itc processing to give your Microsoft certified drivers quality control.
    Nvidea has similar options but it is important to know the more you change on the windows options level and driver levels can lead to many issues with a limited understanding.

  • .Issue with creating a photo book in Iphoto error message states some frames are missing images, but I've checked each one and from I can see they are all filled in. It won't let my buy the book though

    Having an Issue with Creating a photo Book in Iphoto. I continue to get an error message when clicking on "Buy Book" The error indicates that I'm missing a frame or frames from the book. I've checked this many times and cannot locate the issue. The book appears to be complete from my perspective. What can I do now? I worked very hard on this and would hate to lose it all.

    How did you check the book? Did you preview it?
    See:
    iPhoto, Aperture: Previewing an order in iPhoto or Aperture
    Is that the message?
    "your book seems to have frames on one or more pages that do not contain photos. You must either change the layout of those pages or place photos in those frames before you can buy this book."
    The most common reason for this error is, that you have used a page layout that needs a background photo and you have not yet added the backdrop. Then the book is still showing some default grayscale image.
    Check, if one of your page layouts is using this background:
    Then you need to add a photo to the background of the page.

Maybe you are looking for

  • Transport Request as Per TMS in XI 3.0's Post Installation

    Hi Everybody !! ..I have completed cinst, dbinst, client copy, jinst, xinst installation for XI 3.0 INSTALLAION ON ABAP + JAVA. SAP_BW , SAP_BASIS, SAP_ABAP and PI_BASIS Patches have been applied. I am doing the XI Post Installation Steps and for tha

  • Blu ray and surround sound

    I just purchased a Sony Bravia kdl-52v4100 and a ps3 to watch blu ray. Now I want to buy a surround sound but watch blu ray at the same time with out buying a blu ray dvd player. Is there any way I can connect my PS3 with the surround sound to play t

  • IMAP email not refreshing on iPhone4s

    I use IMAP email for a secondary email account (Groupwise) both on my MacBook Pro and my iPhone4S. Recently the iPhone has done something odd: It stopped displaying new mail on attempt to refresh. The only way I was able to solve the problem was by v

  • Bookmark problem BI report

    Hello, I created a Bookmark after making some changes to a report and saved it. If I open the bookmark again, it shows the original report. Changes are not reflected in the bookmark. Whereas bookmark for the same report is working fine for my colleag

  • Negative price values in DSOs...Orecordmode, ROCANCEL related

    Hi, I am seeing a lot of negative values for pricing in the DSO. This has something to do with 0RECORDMODE and ROCANCEL. I am not able to troubleshoot this one. Please suggest on what the approach should be to resolve this issue.