Getting Msg: Error when calling Credit Management: Technical Error

Hi All,
While creation of sales order in ECC, i am getting a message "Error when calling Credit Management: Technical Error"
Can you help me in this case
Regards,
Satish

Satish,
Just so you know, this BADI "links" SD module to FSCM credit management. If you use the right code in this BADI, it copies over credit information on to the sales order such as Credit Account, Risk Class and Credit representative code.  (Later this risk class, order's credit control area and credit group is used to look up the appropriate line in OVA8 settings)
Now you could be getting this error for any of the issues:
1. If the business partner is not created for the customer for which you're trying create a sales order (The credit account (sales order header) should have a relevant BP already) Check if the BP is correctly created.
2. Next if the credit data has been maintained for the BP in credit management.
3. XI/PI connectivity issues etc
Check if all this is maintained and you should be good. Cheers

Similar Messages

  • Library Update rqstd on Aperture 3.2; now won't open get msg "error opening data base for the library "~/Pictures/Aperture Library.aplibrary"   TIme machine won't load backup "error code -8003"

    Aperture working on OS 10.6.8 then Library Update rqstd on Aperture 3.2; said yes;
    now Aperture won't open,  get msg "error opening data base for the library "~/Pictures/Aperture Library.aplibrary"  
    TIme machine won't load backup "error code -8003"
    Tried reloading Aperture 3.2 but get same result.

    You’re running an outdated copy of Safari on your Desktop. That won’t work.
    In the Finder, select
    Go ▹ Applications
    from the menu bar, or press the key combination shift-command-A to open the Applications folder. Check that the Safari application is in that folder. If it is, use it, and delete the copy on your Desktop. Never move or copy built-in applications.
    If you've deleted Safari from the Applications folder, back up all data, then reinstall OS X. If your Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade, so make a note of those before you begin.

  • Getting   FRM-41029   when calling report from form

    Hi
    I have following procedure to run the report but its running fine but giving error FRM-41029 when calling the report from the form.
    runrep('MATREP,'REPSER','PDF','F:\rec\RepEnt.RDF');
    Repid := FIND_REPORT_OBJECT(repobj);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE, RUNTIME);
    set_report_object_property(repid, REPORT_SERVER, repserv);
    set_report_object_property(repid, REPORT_COMM_MODE, SYNCHRONOUS);
    set_report_object_property(repid, REPORT_DESTYPE,'file');
    set_report_object_property(repid, REPORT_DESFORMAT,repfor);
    set_report_object_property(repid, REPORT_FILENAME,repfile);
    rgds
    soumya

    hi
    try something like this.
    PROCEDURE sarah ( p_report_name varchar2, vParamValue number ) is
    l_param_list  paramlist;
    l_rep_id      report_object;
    l_rep_job     varchar2(100);
    l_rep_status  varchar(100);
    BEGIN
    l_param_list := Get_parameter_List('tmp');
    IF NOT Id_Null(l_param_list ) THEN
    Destroy_parameter_List( l_param_list );
    END IF;
    l_param_list := Create_parameter_List('tmp');
    add_parameter(l_param_list ,'p_num',text_parameter,to_char( vParamValue ));
    l_rep_id := FIND_REPORT_OBJECT( p_report_name );
    if
         id_null ( l_rep_id )
    then
      msg ( 'There is no Report ' || p_report_name || ' in form ' || name_in ( 'system.current_form' ) );
      raise form_trigger_failure;
    end if;
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(l_rep_id, REPORT_OTHER, 'paramform=no');
    l_rep_job := RUN_REPORT_OBJECT( l_rep_id, l_param_list );
    l_rep_status := REPORT_OBJECT_STATUS( l_rep_job );
    WHILE l_rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    l_rep_status := report_object_status( l_rep_job );
    END LOOP;
    WEB.SHOW_DOCUMENT('http://sarah:8889/reports/rwservlet/getjobid'||substr(l_rep_job,instr(l_rep_job,'_',-1)+1) || '?server=repserver', '_blank');
    END; then u may call the procedure something like this.
    when-button-pressed trigger.
    begin
    sarah ('REPORT6', :block.item );
    end;sarah
    Edited by: S@R@h on Nov 30, 2009 9:39 PM

  • Urgent: Getting FRM-41211 when calling reports from forms for first time.

    Hi,
    We are running into the FRM-41211 error, when the users try to call a report from a form. The report is called from a form in SYNCHRONOUS mode. This is the only report that is being called. No other report is
    running at that time when the users get this error. This is happening only the first time when they try to call the report from the form. After getting this error, when they click on OK, and when they try to call this
    report again, the report works fine.
    Any ideas?? It's urgent...
    Thanks
    Vamshi.
    null

    Maybe try to use "run_report_product"?

  • Fault getting XML node when calling webservice

    Please assist, I'm calling a webservice from SAP using a generated proxy and not going via XI. The webservice has 4 methods. Three of which make a successful call to the websrvice. When calling one of the methods, I get a SOAP fault. It does not say what the fault is.
    On debugging I traced the fault to class CL_SOAP_MESSAGE_NEW method DESERIALIZE_HEADER_ NEW, at point " 4.1- ... and get method ".  A method call is made to return the next XML node. This method executes a kernel module coded as "method IF_SXML_READER~NEXT_NODE
    by kernel module fxkmsrd_next_node fail", and the method name returned is "FAULT", which then triggers a SOAP FAULT exception.
    I do not know how to access this kernel module to trace the error. I need assitance in identifying why I'm getting a fault back. Please assist. Points will be awarded.
    Maggie

    Thanks for this hint, Amar. But this points directly to my next problem: How can I set this parameter. I know how to set flat parameters (e.g. of type long, boolean, etc.). But how can I set a parameter of a complex type?
    For example I can call
        wdContext.currentSaveElement().setIdFather(long id)
    in order to set the parameter idFather of type long for the WebService-method save(). But there is no method
         wdContext.currentSaveElement().setIdFather(SoftwareKomponenteDTO aKomp)
    Could you please help me on more time?
    Kind regards,
    Christoph

  • Getting rep-3002 when calling report from form on web

    i am getting rep-3002 when i call report from a form on web environment. Report is in character mode. It is coming proper if i change it to bitmap. but my requirement is of character mode. pl. give some solution.

    Hello,
    If you are running in WinNT/2000 environment, the NT/2000 user which runs the Report Server service must have a printer defined. In the control panel, look at the properties for the Report Server to see what user it runs as. Log in as that user and make sure a default printer is defined.
    Regards,
    The Oracle Reports Team --skw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Getting a NPE when calling the getContent of a multipart message

    Hi,
    I get a NPE when I try to get the body of a multipart MIME message. The BODYSTRUCTURE returns the number of bytes of a bodypart before any decoding is done, the getContent then expects server to return that many bytes when it does something like "aa fetch 1 BODY[0]<0.16384>", when the server does not return anything a NPE is thrown. The exception is as follows
    java.lang.NullPointerException
         at com.sun.mail.iap.Response.parse(Response.java:64)
         at com.sun.mail.iap.Response.<init>(Response.java:32)
         at com.sun.mail.imap.protocol.IMAPResponse.<init>(IMAPResponse.java:24)
         at com.sun.mail.imap.protocol.IMAPResponse.readResponse(IMAPResponse.java:99)
         at com.sun.mail.imap.protocol.IMAPProtocol.readResponse(IMAPProtocol.java:112)
         at com.sun.mail.iap.Protocol.command(Protocol.java:167)
         at com.sun.mail.imap.protocol.IMAPProtocol.fetch(IMAPProtocol.java:646)
         at com.sun.mail.imap.protocol.IMAPProtocol.fetch(IMAPProtocol.java:637)
         at com.sun.mail.imap.protocol.IMAPProtocol.fetchBody(IMAPProtocol.java:474)
         at com.sun.mail.imap.IMAPInputStream.fill(IMAPInputStream.java:52)
         at com.sun.mail.imap.IMAPInputStream.read(IMAPInputStream.java:80)
         at java.io.FilterInputStream.read(FilterInputStream.java:66)
         at java.io.PushbackInputStream.read(PushbackInputStream.java:120)
         at com.sun.mail.util.QPDecoderStream.read(QPDecoderStream.java:33)
         at com.sun.mail.util.QPDecoderStream.read(QPDecoderStream.java:86)
         at sun.nio.cs.StreamDecoder$CharsetSD.readBytes(StreamDecoder.java:404)
         at sun.nio.cs.StreamDecoder$CharsetSD.implRead(StreamDecoder.java:442)
         at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:179)
         at java.io.InputStreamReader.read(InputStreamReader.java:167)
         at com.sun.mail.handlers.text_plain.getContent(text_plain.java:63)
         at javax.activation.DataSourceDataContentHandler.getContent(DataHandler.java:755)
         at javax.activation.DataHandler.getContent(DataHandler.java:511)
         at javax.mail.internet.MimeBodyPart.getContent(MimeBodyPart.java:231)
    Did anybody see this exception ?
    Thanks
    Nina

    I get this error too when:
    Part part = message;      
    while(i < path.length && part != null) {
    MimeMultipart multipart = getMultipart(part);
    if (multipart == null)
         throw new IOException("not multipart.");
    part = findPart(multipart, path);     
    i++;     
    if (part == null)
    throw new IOException("not a part of message.");
    InputStream in = part.getInputStream();
    int b = 0;
    while((b = in.read()) != -1)
    out.write(b);
    at part.getInputStream() i get:
    java.lang.NullPointerException
    at com.sun.mail.iap.Response.parse(Response.java:99)
    at com.sun.mail.iap.Response.<init>(Response.java:68)
    at com.sun.mail.imap.protocol.IMAPResponse.<init>(IMAPResponse.java:31)
    at com.sun.mail.imap.protocol.IMAPResponse.readResponse(IMAPResponse.java:105)
    at com.sun.mail.imap.protocol.IMAPProtocol.readResponse(IMAPProtocol.java:153)
    at com.sun.mail.iap.Protocol.command(Protocol.java:215)
    at com.sun.mail.imap.protocol.IMAPProtocol.fetch(IMAPProtocol.java:882)
    at com.sun.mail.imap.protocol.IMAPProtocol.fetch(IMAPProtocol.java:874)
    at com.sun.mail.imap.protocol.IMAPProtocol.fetchBody(IMAPProtocol.java:677)
    at com.sun.mail.imap.IMAPInputStream.fill(IMAPInputStream.java:74)
    at com.sun.mail.imap.IMAPInputStream.read(IMAPInputStream.java:131)
    at com.sun.mail.util.BASE64DecoderStream.decode(BASE64DecoderStream.java:156)
    at com.sun.mail.util.BASE64DecoderStream.read(BASE64DecoderStream.java:54)
    at se.illuminet.httpd.mail.MailXMLService.serviceXml(MailXMLService.java:354)
    Any resolution to this yet?
    It worked up until I changed to an SSL connection to IMAP.
    Could this affect at this level?
    Help appriciated.
    best
    Jonas

  • Can I get refund on Skype Call Credit?

    I have accidently enable auto-recharge and top up my account €10 call credit.  I think my Credit Card has been charged.
    I haven`t use the credit yet, is it possible to get refund the money?
    I will not be using the Sykpe call credit , I want a refund 

    If you have a payment issue please contact Skype customer service as users here on the community can't help you with those. To help you find the right place for these types of questions please feel free to use the following links:
    Refund requests
    Problems with credit card/ PayPal payments
    Other payment issues
    General Payment and prices help
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • Getting msg Error 1.1 at .\sdk_data.cpp line 1384 when trying to sync w/notes

    Is this a corrupted record in my calender file w/in Notes?

    This is not about Windows calendar. It is about Lotus Notes calendar which is supported.
    I have now recreated my mail replica, run a program to remove large emails and to compress etc. I deleted the last calendar entry in the trace so now it stops after the penultimate one. To me that means it is either failing on the next one which is not in the trace, or it's failing on the next stage. I've tried using ODSViewer.exe and searching for the hex strings but I don't find them. This may not be surprising as the trace sort of says it can't find them either. Here's the end of the trace. I've also reset it and set it to say one way sync overwriting the blackberry. Any ideas?
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : B e g i n R e a d R e c o r d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ E 4 1 D 8 1 8 9 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 5 F 1 8 4 7 7 5 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 8 0 2 5 7 3 0 7 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 0 0 5 D 5 6 E D ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D v a l u e = [ E 4 1 D 8 1 8 9 5 F 1 8 4 7 7 5 8 0 2 5 7 3 0 7 0 0 5 D 5 6 E D ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S t a r t i n g a n a l i s y s o n p a r e n t / n o n - r e p e a t d o c u m e n t : 0 x b 1 3 a , E 4 1 D 8 1 8 9 5 F 1 8 4 7 7 5 8 0 2 5 7 3 0 7 0 0 5 D 5 6 E D
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S u c c e s s f u l l y c r e a t e d t h e 1 - 1 m a p p i n g !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 F i e l d R e s c h e d u l e W h i c h i s N O T p r e s e n t
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 L o t u s N o t e s e r r o r : 0 x 2 2 2 - N o t e i t e m n o t f o u n
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 3 4 9 0 5 E D 2 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 3 8 2 7 E 8 4 E ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 8 0 2 5 7 3 0 7 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 0 0 5 D D 5 6 E ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D v a l u e = [ 3 4 9 0 5 E D 2 3 8 2 7 E 8 4 E 8 0 2 5 7 3 0 7 0 0 5 D D 5 6 E ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 R e s p o n s e M a n a g e r : : P r o c e s s i n g n e w n o t i c e d o c u m e n t : 0 x b 3 0 6 , 3 4 9 0 5 E D 2 3 8 2 7 E 8 4 E 8 0 2 5 7 3 0 7 0 0 5 D D 5 6 E
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 A g e n t s u c c e s s f u l l y i n i t i a l i z e d !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 A g e n t s u c c e s s f u l l y i n i t i a l i z e d !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L R e p e a t E n t r y F i e l d B r i d g e : : c o n v e r t L N F i e l d s T o I S F i e l d s
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L R e p e a t E n t r y F i e l d B r i d g e : : c o n v e r t L N F i e l d s T o I S F i e l d s
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 D o c u m e n t O w n e r s h i p M a p h a s b e e n u p d a t e d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 C u r r e n t e x p o r t e d r e c o r d i s :
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - . S t a t e : C H A N G E D
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S t a r t D a t e = 2 0 0 7 0 7 2 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S t a r t T i m e = 1 2 0 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d D a t e = 2 0 0 7 0 7 2 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d T i m e = 1 3 0 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 $ A l a r m = 1
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 $ A l a r m D a t e = 2 0 0 7 0 7 2 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 $ A l a r m T i m e = 1 1 3 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S u b j e c t = D i s c u s s d e p l o y m e n t o f I B M s o f t w a r e - w h a t y o u o w n a n d h o w y o u ' r e u s i n g i t
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B o d y =
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 O r g C o n f i d e n t i a l = 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 L o c a t i o n = C h a s e s i d e
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 M e e t i n g A t t e n d e e s = 9 8 = \ , 8 8 = C N = S a m G a r f o r t h / O U = U K / O = I B M \ , 2 2 2 = 1 \ , 1 0 8 = L N O T E S \ , 1 2 2 = 0 \ , 0 1 1 = 1 ; 9 8 = \ , 8 8 = p a u l . f r o s t @ j p m o r g a n . c o m \ , 2 2 2 = 0 \ , 1 0 8 = S M T P \ , 1 2 2 = 0 \ , 0 1 1 = 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 N o n r e p e a t i n g i t e m .
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - . S t a t e : C H A N G E D
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : B e g i n R e a d R e c o r d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S u c c e s s f u l l y r e a d t h e a t t e n d e e s f i e l d !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : R e a d F i e l d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L R e p e a t B a s e d S e c t i o n : : G e t R e p e a t
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E x p o r t M e d i a t o r : : g e t R e p e a t - N o r e p e a t
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L R e p e a t B a s e d S e c t i o n : : G e t R e p e a t
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : E n d R e a d R e c o r d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L S e c t i o n : : E n d R e a d R e c o r d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L S e c t i o n : : B e g i n R e a d R e c o r d
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ E F 1 A 5 9 1 5 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 4 5 B E C 0 7 5 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 8 0 2 5 7 4 4 3 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 0 0 5 6 2 F 3 0 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D v a l u e = [ E F 1 A 5 9 1 5 4 5 B E C 0 7 5 8 0 2 5 7 4 4 3 0 0 5 6 2 F 3 0 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S t a r t i n g a n a l i s y s o n p a r e n t / n o n - r e p e a t d o c u m e n t : 0 x 1 0 6 7 a , E F 1 A 5 9 1 5 4 5 B E C 0 7 5 8 0 2 5 7 4 4 3 0 0 5 6 2 F 3 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 2 D C C 4 8 0 5 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 3 7 1 4 D 0 7 5 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 8 0 2 5 7 4 4 2 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 0 0 6 7 E 1 E 0 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D v a l u e = [ 2 D C C 4 8 0 5 3 7 1 4 D 0 7 5 8 0 2 5 7 4 4 2 0 0 6 7 E 1 E 0 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S t a r t i n g a n a l i s y s o n p a r e n t / n o n - r e p e a t d o c u m e n t : 0 x 1 1 3 6 e , 2 D C C 4 8 0 5 3 7 1 4 D 0 7 5 8 0 2 5 7 4 4 2 0 0 6 7 E 1 E 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 F i e l d R e p e a t W e e k e n d s i s N O T p r e s e n t
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 L o t u s N o t e s e r r o r : 0 x 2 2 2 - N o t e i t e m n o t f o u n
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 F a i l e d t o r e a d , b a i l i n g R e p e a t W e e k e n d s : - 2 0 8 8 4 3 5 1 6 6
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 D e b u g a s s e r t i o n : [ . \ L D a i l y R e p e a t P a t t e r n . c p p : 5 7 ] f o r C o n d i t i o n : 0
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 T h e b a s e L R e p e a t P a t t e r n : : i n i t i a l i z e F r o m L N m e t h o d f a i l e d . B a i l i n
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E r r o r o c c u r e d w h i l e i n i t i a l i z i n g t h e r e p e a t p a t t e r n ! T r y i n g w i t h u n s u p p o r t e d .
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 1 A D A 3 F 9 6 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 1 F A 8 C 9 7 F ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 8 0 2 5 7 4 4 2 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D H e x v a l u e = [ 0 0 6 7 E 1 F 4 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 I D v a l u e = [ 1 A D A 3 F 9 6 1 F A 8 C 9 7 F 8 0 2 5 7 4 4 2 0 0 6 7 E 1 F 4 ]
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L T o o l k i t : : L T o o l k i t : : c n v U N I D t o H e x S T R
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 U n s u p p o r t e d R e p e a t S t a t e : : P r o c e s s i n g n e w c h i l d d o c u m e n t : 0 x 1 1 3 7 2 , 1 A D A 3 F 9 6 1 F A 8 C 9 7 F 8 0 2 5 7 4 4 2 0 0 6 7 E 1 F 4
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 g e t U n u s e d O n e T o O n e M a p p i n g - c r e a t i n g a n e w O n e I s T o O n e L N m a p p i n g
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 g e t U n u s e d O n e T o O n e M a p p i n g - c r e a t i n g a n e w O n e I s T o O n e L N m a p p i n g
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S t a r t i n g t o e x p o r t I S r e c o r d s
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S u c c e s s f u l l y r e a d t h e r e p e a t s t a r t d a t e s !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S u c c e s s f u l l y r e a d t h e r e p e a t e n d d a t e s !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 A g e n t s u c c e s s f u l l y i n i t i a l i z e d !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 B e g i n - L R e p e a t E n t r y F i e l d B r i d g e : : c o n v e r t L N F i e l d s T o I S F i e l d s
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 E n d - L R e p e a t E n t r y F i e l d B r i d g e : : c o n v e r t L N F i e l d s T o I S F i e l d s
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S u c c e s s f u l l y r e a d t h e r e p e a t s t a r t d a t e s !
    2 0 0 8 / 0 9 / 0 8 1 8 : 1 8 . 1 6 S u c c e s s f u l l y r e a d t h e r e p e a t e n d d a t e s ! 

  • Getting session hang When calling Function from SQL query

    Hi All,
    I am using Oracle 8.1.7.4.0. I have a fucntion in a Package and I am calling it from the SQL query. When I am firing the query my oracle session is going to hang position and I am not able to any thing. I have to kill the session.
    But this same thing is working fine in Oracle 9.i.
    There are no out parameter and no DML, DDL and DCL statement in this fucntion.
    Could you please get back me what is the problem on it.
    Regards
    SUN

    Check why your session hangs.
    Just a few ideas:
    * Blocking locks?
    * Endless loop?
    * Performance (maybe it is just slow in orac8i and you have to wait a bit longer). Check the execution plans of the SQL statements in your function.
    * Don't use a function, but direct SQL, it is faster in both versions.

  • Getting status Pending when calling rest function call

    Hi,
    Coldfusion version 10.
    The app hangs using IE9 when I do a REST cf function call from js file. Observing the console, I see Pending status. However, it works fine in later versions of IE, Chrome and Mozilla.
    When I changed cffunction httpmethod from DELETE to PUT it worked. So, I figure that maybe javascript function call and cffunction header mismatch.
    Here is cffunction;
    <cffunction output="no" name="zeroUpdateCredits" access="remote" produces="application/json" consumes="application/json" returnType="struct" httpmethod="DELETE">
    <cfargument name="DATA" type="struct" required="yes"/>
    <cfset var retStatus = StructNew() />
    <cfset retStatus["success"] = true />
    <cftry>
    <cfset var qSponsDetails = APPLICATION.cfc.properties.getsettings(DATA.employee_id)>
    <cfif qSponsDetails.allow_credits>
      <cfset temp = saveCredits(credits = 0, employee_id = DATA.employee_id, effective_date = DATA.effective_date)>
    </cfif>
    <cfcatch type="any">
    <cfthrow errorcode="401" message="error zero credits" />
    <cfreturn>
    </cfcatch>
    </cftry>                  
    <cfreturn retStatus>
    </cffunction>
    Here is the function call:
    exports.clearCredits = function(employeeId, effectiveDate){
    data = {
      employee_id: employeeId,
      effective_date: effectiveDate
    var promise = rest.DELETE({
      url: appConfig.restPrefix + 'selections/unusedcredits?t=' + new Date().getTime(),
        contentType: 'application/json'
      }, JSON.stringify(data)
      return promise;
    Thank you,
    Gena

    Hi,
    Are you sure your Sender SOAP adapter is configured properly. Also ensure that the SIEBEL team is using the right URL to communicate to the SOAP adapter.
    First try using SOAP Client and see if the scenario is working fine. If so then the problem lies in SIEBEL.
    Check this link for confiuring SOAP sender
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/5ad93f130f9215e10000000a155106/content.htm
    Thanks,
    Pakash

  • Getting busy signal when calling outside USA

    When i call from US to foreign country, i get a busy signal. This just recently happened and i am unable to call anybody outside US.

    Hello,
    You are posting on the "SkypeToGo" product board but our records show that you are not registered with "SkypeToGo". Please advise.
    Thank you.
    TIME ZONE - US EASTERN. LOCATION - PHILADELPHIA, PA, USA.
    I recommend that you always run the latest Skype version: Windows & Mac
    If my advice helped to fix your issue please mark it as a solution to help others.
    Please note that I generally don't respond to unsolicited Private Messages. Thank you.

  • My iPhone 4 is out of warranty however I have always had problems getting cut off when calling and bad reception my provider has proved that their network is stable and suggested I contact apple

    I have always had problems with my iPhone O2 network
    It has always cut calls  in the middle of conversations and reception has never being good
    I spoke to O2 and have had new sim cards which have not helped
    Any ideas

    GregMayne wrote:
    i figure it is the logic board. and no it has never been changed. yes i have the box, the code. i keep everything for situations just like these and somehow they still try to **** me over.
    Do this.
    Go to the Apple Support page and type in your serial number. When the screen comes up showing that Serial number having Applecare extended warranty take a screen shot of it or Print it out to a PDF file and then Print a Hard Copy of either of those things. Take that with you when you take your Mac in to be looked at.
    Good Luck with the Lenovo. I hear they are the same quality as when IBM was making them. Personally I have always used Dell Business Class notebooks and have never had any problems with them. Still have one that is going on 11 years old and it still runs as good as the day I bought it, actually a little better because I've upgrade the CPU, GPU. RAM and HDD.

  • HT204266 get time out when changing credit card

    Need to change credit card, but keep receiving that it timed out.

    Hello Sion,
    Welcome to the forums and posting your question with us!
    Placing a pre-order on something you truly want is very exciting and I can understand your concern about having you’re your credit card info change during this process. Fortunately, we should be able to update your payment information.
    I would suggest reaching us by phone to do this, our Consumer Relations contact is 1-888-237-8289. Please provide us with an update after reaching out regarding your credit card update.
    Additionally, let us know if you have any other questions.
    Regards,
    Arian|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Credit Management Parent - Child level

    Hi,
    My client has two company codes A and B which share customers. I have following customer hierarchy :
    Parent - 1 - Limit - 10000
    Child Payer - 2 - Limit 6000
    Child Payer - 3 - Limit 4000
    We want to control the credit limit at each Payer level but want to see consolidated exposure and receivables at Parent level also.
    Thanks,

    Hi
    you can check for the consolidated value in TCode FD32 when you create a hierarchy it will be created like a single customer you can give the number along with the credit control area to get the consolidated parent level credit management.
    regards
    Vignesh

Maybe you are looking for

  • How can I monitor all users on my computer without them knowing.

    Good day, For security reasons, I would like to monitor all messages in and out from my own account. I would like to do this without the other person(s) knowing. Is there a way to do this? I can't figure out how to set this up. Every e mail sent or r

  • Bug when i open a new track it is picking up other tracks

    when I open a new audio track (input on Instrument 1 for electric guitar), when i go to record I hear other tracks...like a shaker, etc.  Also, Even though I have tracks that have only a bar or two region showing I am hearing them as if they are on l

  • LR5 Export Plug-Ins

    Can I set PS Elements 11 as an export plug-in in LR5?  Have tried using the LR5 Plug-In Manager which shows an error each time I try

  • Converting vectors to strings

    hi, i have a vector containing Doubles which looks like this: [3.1, 4.9, 2.2, 7.7] and i want to convert it into a vector containing a string so it will look like this: [3.1 4.9 2.2 7.7] any ideas? thanks in advance, al

  • Time Machine Folder-Specific Backup

    Hello all, I have a new external hard drive that I want to use as a Time Machine backup drive. I want Time Machine to only backup 4 folders. Documents, Movies, Music, and Pictures. I just want the data in those folders to be backed up. No system back