How is resolve.conf.head used?

What on earth does resolv.conf.head actually do? I have never seen it actually work in any circumstance, and from my Googling on the topics of manually setting DNS servers, practically no one else can use them with any success.
I use DNSMasq for caching. Right now I have the problem of needing to preserve whatever dhcpcd puts in my /etc/resolv.conf, that way I can just let DNSMasq to use it, but I need to set the default DNS server to be localhost. I could just put "nameserver 127.0.0.1" in /etc/resolv.conf.head and, theoretically, everything would work fine, but it doesn't. Manually putting it at the top of resolv.conf, though, does work.
* Is this because the programs that consult resolv.conf are not bothering to check .head?
* Does dhcpcd need to be told to include .head and .tail when writing to resolv.conf?
* How can resolv.conf.head ever be used? Do I need a script to manually ajoin it with resolv.conf ?
The man pages for dhcpcd and resolv.conf don't seem to be useful on this topic.

Sounds like you need openresolv
But about dhcpcd - it only re-writes /etc/resolv.conf when dhcpcd changes state. It also puts nice comments in the file. So if those comments are not there then something else was overwritten resolv.conf and not dhcpcd.
To debug dhcpcd scripts, create /etc/dhcpcd.enter-hook and put one line there
set -x
Then launch dhcpcd in the console with debugging - dhcpcd -dB
Good luck!

Similar Messages

  • How to bind soap header using jax-rpc

    To Whom It May Concern:
    I am using Rad7, Ibm Websphere 6.1, on Windows XP.
    I created an SoapHeader first using a string and bind it using jax-ws.
    It works for jax-ws but unfortunately, my work services uses jax-rpc.
    Does anybody know how to bind the soap header using jax-rpc.
    Any help or hint would be greatly appreciated it.
    Here is my code:
    import org.apache.cxf.headers.Header;
    import org.apache.cxf.headers.Header.Direction;
    import org.apache.cxf.helpers.DOMUtils;
    import org.apache.cxf.binding.soap.SoapHeader;
    import javax.xml.namespace.QName;
    import java.io.StringReader;
    import java.util.List;
    import java.util.ArrayList;
    import javax.xml.ws.BindingProvider;
                   @Test
         public void testService() throws Exception {     
                   try
                        URL wsdlURL = new URL("http://localhost:9087/abc/services/ServiceABCService");
                        ServiceRequestServiceService service = new ServiceRequestServiceServiceLocator();
                        ServiceRequestService port = service.getServiceRequestService(wsdlURL);
                   //How to Add Soap Header using jax-ws
              String xml = "<?xml version=\"1.0\" encoding=\"utf-8\"?><ABCHdrRq "
              + "xmlns=\"http://xmlns.ABCgc.net/ABC/2002/header/\" "
              + ">"
              + "<version>1.0</version><srcInfo><chType>abc</chType><chInst>0124</chInst>" +
                        "<appName>sSAR</appName><hostName>DW70210521</hostName><userId>fxue</userId>" +
                        "</srcInfo><startTimeStamp>2010-06-04T13:44:45.132</startTimeStamp><clientDt>2010-06-04T13:44:53.242</clientDt><serviceInfo><serviceName>ServiceRequestService</serviceName>" +
                        "<serviceFunc>addServiceRequest</serviceFunc></serviceInfo>" +
                   "<prevTransInfo><prevRqUID>BORS2010-06-04T13:41:10.2067f9368d1-8c5c</prevRqUID>" +     
                   "<prevRespTimestamp>2010-06-04T13:41:10.871</prevRespTimestamp>"+
                   "<prevRespEndTimestamp>2010-06-04T13:41:10.902</prevRespEndTimestamp>+</prevTransInfo>"+
                   "</ABCHdrRq>";
              SoapHeader dummyHeader1 = new SoapHeader(new QName("uri:http://xmlns.ABCgc.net/ABC/2002/header/", "ABCHdrRq"),
              DOMUtils.readXml(new StringReader(xml)).getDocumentElement());
              dummyHeader1.setDirection(Direction.DIRECTION_OUT);
              List<Header> headers = new ArrayList<Header>();
                   headers.add(dummyHeader1);
                   ((BindingProvider)port).getRequestContext().put(Header.HEADER_LIST, headers);
                   //How to Add Soap Header to the request using jax-ws
                   catch(Exception e)
                        System.out.println("Exception message:"+e.getMessage());
    Yours,
    Frustrated

    Well, how an attachment is processed depends on your application logic...if your application logic requires to processing attachments and verify it before processing the SOAP message, handlers could be better option.
    If you need to process the attachment while processing the SOAP message, you can do it in the service implementation class.
    In both the cases you need to get access to SOAPMessage object and from there get the attachments with getAttachments method.

  • How to generate soap header using java code

    Hi,
    I need to generate the following soap header using java DOM.
    Can you send me some java code snippet to do so?
    <soapenv:Header>
    <api:RequesterCredentials soapenv:mustUnderstand="0" xmlns:api="urn:ThinkPod:api:ThinkPodAPI" xmlns:ebl="urn:ThinkPod:apis:eBLBaseComponents">
    <ebl:ThinkPodAuthToken>YourToken</ebl:ThinkPodAuthToken>
    <ebl:Credentials>
    <ebl:DevId>YourDevId</ebl:DevId>
    <ebl:AppId>YourAppId</ebl:AppId>
    <ebl:AuthCert>YourAuthCert</ebl:AuthCert>
    </ebl:Credentials>
    </api:RequesterCredentials>
    </soapenv:Header>

    You want to generate that on a mobile device or how is that related to CLDC and MIDP?

  • How to post a header using GUI_DOWNLOAD

    hello:
    i would like to ask one favor, i trying to download a fiel to a PC i am using the GUI_DOWNLOAD function when i sent the it_table to the function this works well , but now i need to sent the name of the colums for each colums, i sending a tables with the names of that colums but the function is sending an error.
    CALL FUNCTION 'GUI_DOWNLOAD'
            EXPORTING
              filename          = nombre
              filetype          = 'ASC'
              confirm_overwrite = 'X'
            TABLES
              data_tab          = t_itab2
              fieldnames        = t_fieldnames. HERE SEND THE ERROR MSG.
    note: this file is gonna be download from ITS that why iam using the GUI_DOWNLOAD.
    please does anybody knows how to send the names of the colums for one file using this function?
    thanks a lot for you help.

    If you are using a newer system, then the GUI_DOWNLOAD funciton module does contain a TABLES parameter for fieldnames.  Here is an example.
    REPORT  zrich_0001.
    TYPES: BEGIN OF t_fldnames,
           fldname(30) type c,
           END OF t_fldnames.
    DATA: ifldnm TYPE TABLE OF t_fldnames WITH HEADER LINE.
    DATA: ispfli TYPE TABLE OF spfli.
    SELECT * INTO TABLE ispfli FROM spfli.
    ifldnm-fldname = 'Client'.     append ifldnm.
    ifldnm-fldname = 'Airline Code'. append ifldnm.
    ifldnm-fldname = 'Flight Connection Number'. append ifldnm.
    ifldnm-fldname = 'Country Key'.   append ifldnm.
    ifldnm-fldname = 'Departure city'.  append ifldnm.
    ifldnm-fldname = 'Departure airport'.  append ifldnm.
    ifldnm-fldname = 'Country Key'.  append ifldnm.
    ifldnm-fldname = 'Arrival city'.  append ifldnm.
    ifldnm-fldname = 'Destination airport'.  append ifldnm.
    ifldnm-fldname = 'Flight time'.  append ifldnm.
    ifldnm-fldname = 'Departure time'.  append ifldnm.
    ifldnm-fldname = 'Arrival time'.  append ifldnm.
    ifldnm-fldname = 'Distance'.  append ifldnm.
    ifldnm-fldname = 'Mass unit of distance (kms, miles)'.  append ifldnm.
    ifldnm-fldname = 'Flight type'.  append ifldnm.
    ifldnm-fldname = 'Arrival n day(s) later'.   append ifldnm.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename              = 'c:/test.xls'
        write_field_separator = 'X'
      TABLES
        data_tab              = ispfli
        fieldnames            = ifldnm.
    This parameter is  not supported in a 46c system
    Regards,
    Rich Heilman

  • How to get response header using ActionScript and MXML?

    So... I have a URL like www.example.com/stream/
    I need to make any request to this url and get Http Rewspons header (like this one:
        HTTP/1.0 200 OK
        Content-type: video/x-flv
        Cache-Control: no-cache
    I do not need reponse body at all. After I get header need to emmidiatly close connection to that url (so stop to obtain data from it)
    How to do such thing (I use Flash builder)?

    Hai Mahesh
    Check the following Code
    Data : i_entamiot     LIKE   ehswas_entamiot.
    DATA: gv_batchattributes LIKE bapibatchatt.
    DATA: batchstatus    LIKE bapibatchstatus.
    DATA: lt_bapi_ret        LIKE bapiret2 OCCURS 0 WITH HEADER LINE.
          CALL FUNCTION 'BAPI_BATCH_GET_DETAIL'
            EXPORTING
              material        = i_entamiot-matnr
              batch           = i_entamiot-charg
              plant           = i_entamiot-werkss
            IMPORTING
              batchattributes = gv_batchattributes
              batchstatus     = batchstatus
            TABLES
              return          = lt_bapi_ret.
    Thanks & regards
    Sreenivasulu P

  • How to maintain muline header using webdynpro

    Hi Friends,
    please let me know how shall i maintain muline header in a table ( eg: in a single colum i want to provide Qty,UOM,Price
    S.NO ITEM       Desc       Qty
                                          UOM
                                          Price
    OR
    i want to split the same header line in two lines.
    pleas suggest me.
    Thanks,
    Mahesh.Gattu

    Hi Mahesh,
    This is not possible even in ABAP ALV with any methodoligy(with FM's, OOP's with New and Old classes). Why because if you instert the column like our own format it will distrubr the table functionality. It will be problem for Accessibility rule. I think you know about the Accessibility issue. Its like screen reader must be read the screen and the bilnd people also has to be understood correctly.
    Thats why this option is not avilable in SAP.
      I hope this information will help you to give answer to your click also.
    Warm Regards,
    Vijay.

  • How to resolve deadlocks besides using retry?

    We have a case to load 100 documents to the BDBXml containers, and we plan to use multi-threads.
    Two tests were issued:
    1) The 100 documents will be loaded to one container.
    5 threads were spawned. While in one thread, the document was being loaded, in the other threads, the loading operations were blocked(DB_LOCK_DEADLOCK exception was thrown). So we introduce the retry strategy. Basically we did 20 times retry every 0.25 seconds.
    Unfortunately, even we used up all the retries, there were still many loading operation failed.
    2)The 100 document will be loaded to 100 containers.
    5 threads were spawned. We didn't meet the deadlock issue. All the loading operation succeeded.
    We prefer to using one container for all the 100 documents, but we could not resolve the deadlock issue even we use the retry.
    Is there any other way to resolve this issue?

    Yes, I was talking about loading all documents into one container. I didn't completely get your last question, but it's up to developer whether he wants to retry the deadlocked operation or just skip it. In your case you want of course to retry since you want to load all documents. I'm not sure that it should be faster if you load documents from multiple threads given that deadlocks are unavoidable. Did you try to switch auto-indexing off and see whether it will be faster to load all the documents sequentially or whether it eliminates some deadlocks?
    Vyacheslav

  • How to resolve issues when using Adobe Reader DC with LEED Online?

    This morning I downloaded Adobe Reader DC however now I am no longer able save the PDF in LEED Online.  How do I resolve this issue or revert back to the older version of Adobe Reader?

    Before the DC version we were able to save our passwords from University of Phoenix and when opening the document saved to our computer it would unlock automatically.  This new version DC will not allow this even when you say Yes.
    The Right Column in previous versions would allow to disable until requested to appear this version it opens regardless.
    Just my opinion here  Adobe Failed at customer satisfaction on this UPGRADE.
    Regards a unhappy Adobe user.

  • [solved]how to stop /etc/resolv.conf keeps being overwritten ???

    no matter how many times to change the content, it keeps like that:
    # Generated by dhcpcd from eth0
    # /etc/resolv.conf.head can replace this line
    nameserver 192.168.8.1
    # /etc/resolv.conf.tail can replace this line
    so i can't add nameserver in it
    Last edited by tempo (2010-01-14 15:01:35)

    The clue is in the message, use a file called resolv.conf.head to add a nameserver to the top and resolv.conf.tail to add it to the bottom.
    It's being overwritten because you are using dhcpcd to auto configure your network settings.
    Last edited by Meyithi (2010-01-14 13:03:43)

  • [SOLVED] How Can I Stop DHCPCD from Overwriting my /etc/resolv.conf...

    Hey guys,
    For some unknown reason /etc/dhcpcd.conf continually overwrites my /etc/resolv.conf file, eventhough I set the "nohook resolv.conf" hook in /etc/dhcpcd.conf.
    This is screwing up my DNS and intermittently creating connection problems. Any of you guys know why the hook is not taking effect or how I can stop dhcpcd from overwritting this file?
    Thanks
    Last edited by w201 (2013-03-18 19:05:15)

    drcouzelis wrote:
    w201 wrote:I set the "nohook resolv.conf" hook in /etc/dhcpcd.conf.
    kaszak696 wrote:
    dhcpcd's configuration file may be edited to prevent the dhcpcd daemon from overwriting /etc/resolv.conf. To do this, add the following to the last section of /etc/dhcpcd.conf:
    nohook resolv.conf
    I don't think that information will help w201...
    I changed my DNS to the Google one (8.8.8.8 or something). That's in "resolv.conf", isn't it? I remember editing some OTHER configuration file, which is then read to create the "resolve.conf" file. There it is, in that link to the wiki, under "Use resolv.conf.head". Does that help you do what you want to do?
    There's three techniques at the wiki link, the nohook one, the resolv.conf.head one and the write-protection attribute. 

  • Resolv.conf not being created (XSAN/GBenet/MetaData)

    Hi, recent reboots have caused some of our Xsan clients to try to search for a DNS server on the Meta Data network and not the general network. Within the syslog I can see where the system is trying to bind to a DNS server on the Meta Data network (10.0.0.x) and not the general studio network (192.168.1.x). This in turn causes the generation of an empty resolv.conf. Using the network preferences tool, I've checked configuration of both networks and they seem. fine (just like the machines that are properly working). All machines are running with static IP addresses and the configuration for the general network is pointing to the DNS servers. It was mentioned this may have been caused by a problem with Rendezvous. So the question is how do I force DNS to occur on the ethernet port that is connected to the general network and not the Meta Data network? Thanks in advance.

    That didn't work. I don't think it's a permission problem. In other versions of Unix, I can tell the OS to assign IP addresses to specific interfaces and then hard code in a resolv.conf. I guess I really need to know how to do this under OSX.

  • Resolv.conf missing

    We are running Solaris 11.1 on a Dell Poweredge server with 6 available ethernet ports. 4 of them were moved from one vlan to another vlan. During that process I had to delete the ip interface from the link aggregate then recreate it with the new IP. After that process I was missing my resolv.conf file and couldn't connect to any of the cifs shares. I had to recreate the /etc/resolv.conf file using the svccfg commands. I then had to rejoin the domain and then things were working again. Was there anything that could have been done to prevent the /etc/resolv.conf file from going missing?
    Thanks!

    I am not aware of issue with resolv.conf is deleted.
    You used this procedure for S11 ?
    http://docs.oracle.com/cd/E26502_01/html/E29002/dnsref-31.html#dnsref-36
    How to Enable a DNS Client
    You may need to open a Service Request to investigate this issue.

  • Resolv.conf problems [SOLVED]

    hey all,
    i was playing around with  https://wiki.archlinux.org/index.php/Pdnsd  ,followed step by step the tutorial.
    the tutorial states;
    System setup
    Now it is time to point your system toward your brand-new DNS server.
    If you use DHCP to configure your network settings, you need to edit /etc/resolv.conf.head (otherwise, you should modify /etc/resolv.conf); add pdnsd before all of the other nameservers:
    # pdnsd cache @ localhost
    nameserver 127.0.0.1
    my resolv.conf
    # Generated by dhcpcd from eth0
    # /etc/resolv.conf.head can replace this line
    domain telenet.be
    nameserver 195.130.130.5
    nameserver 195.130.131.5
    # /etc/resolv.conf.tail can replace this line
    becomes
    # Generated by dhcpcd from eth0
    # /etc/resolv.conf.head can replace this line
    # pdnsd cache @ localhost
    nameserver 127.0.0.1
    domain telenet.be
    nameserver 195.130.130.5
    nameserver 195.130.131.5
    # /etc/resolv.conf.tail can replace this line
    am i right so far /? ,well when i do '/etc/rc.d/network restart'  my resolv.conf gets reset-ed to default....what am i doing wrong.
    Last edited by gregor (2012-01-30 19:03:53)

    yup so i did ,made a file  '/etc/resolv.conf.head' with
    # pdnsd cache @ localhost
    nameserver 127.0.0.1
    restarted my network '/etc/rc.d/network restart' and my resolv.conf got adjusted the right way
    # Generated by dhcpcd from eth0
    # pdnsd cache @ localhost
    nameserver 127.0.0.1
    domain telenet.be
    nameserver 195.130.131.133
    nameserver 195.130.130.5
    # /etc/resolv.conf.tail can replace this line
    the con-tense of the file  '/etc/resolv.conf.head' replaces literary !!!!!
    # /etc/resolv.conf.head can replace this line
    Last edited by gregor (2012-01-30 19:08:09)

  • How to resolve the problem of "Update was terminated" when posting

    hello,
    please give me a favor. I met a big problem when running FB01, the system give me the error message: Express document "Update was terminated" received from author. I test all clients, all of them have the same problem, how to resolve.
    I use SAP ECC6.0 IDES, the error messages recorded by SM16 are:
    DDIC_TYPE_INCONSISTENCY
    SAPLGIVA
    FGVALATT
    16
    //bas/700_REL/src/krn/runt/abucutil.c#2
    ab_RxDdicTypeError
    1053
    20070528145604
    8176
    81920
    0
    37628064
    3299600
    879552
    DG
    SAP (R) - R/3(TM) Callstack, Version 1.0
    Copyright (C) SAP AG. All rights reserved.
    Callstack without Exception:
    App : disp+work.EXE (pid=5564)
    When : 5/28/2007 14:56:4.843
    Threads : 2
    Computer Name : EXXEPT01
    User Name : SAPServiceER1
    Number of Processors: 2
    Processor Type: x86 Family 6 Model 15 Stepping 6
    Windows Version : 5.2 Current Build: 3790
    State Dump for Thread Id d10
    eax=00000201 ebx=00000484 ecx=00000210 edx=04bcf0de esi=00000484 edi=00000000
    eip=7c82ed54 esp=053cd608 ebp=053cd678 iopl=0 nv up ei pl zr na po nc
    eip=7c82ed54 esp=07e5fec0 ebp=07e5ff04 iopl=0         nv up ei pl zr na po nc
    cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
    function : KiFastSystemCallRet
            7c82ed54 c3               ret
            7c82ed55 8da42400000000   lea     esp,[esp]              ss:07e5fec0=7c821514
            7c82ed5c 8d642400         lea     esp,[esp]              ss:29d6e4d3=????????
    FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
    07e5ff04 010f51e5 000006e0 00000000 00000000 0613e580 ntdll!KiFastSystemCallRet
    07e5ff84 7c349565 00000000 00000000 00000000 0613e618 disp+work!SigIMsgFunc [signt.c (594)]
    07e5ffb8 77e66063 0613e618 00000000 00000000 0613e618 MSVCR71!endthreadex
    07e5ffec 00000000 7c3494f6 0613e618 00000000 00000000 kernel32!GetModuleFileNameA
    -cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00200246
    function : KiFastSystemCallRet
    7c82ed54 c3 ret
    7c82ed55 8da42400000000 lea esp,[esp] ss:053cd608=7c822124
    7c82ed5c 8d642400 lea esp,[esp] ss:272dbc1b=????????
    FramePtr ReturnAd Param#1 Param#2 Param#3 Param#4 Function Name
    053cd678 77e6ba12 00000484 ffffffff 00000000 053cd6ac ntdll!KiFastSystemCallRet
    053cd68c 0100a516 00000484 ffffffff 00000002 00000001 kernel32!WaitForSingleObject
    053cd6ac 0055ab69 0055aba2 7c38b5c8 7c38b5c8 7c38b5c8 disp+work!NTDebugProcess [ntstcdbg.c (449)]
    053cd6b0 0055aba2 7c38b5c8 7c38b5c8 7c38b5c8 01d28c78 disp+work!NTStack [dptstack.c (1365)]
    053cd6cc 0055abd6 7c38b5c8 00000000 00852a87 7c38b5c8 disp+work!CTrcStack2 [dptstack.c (352)]
    053cd6d8 00852a87 7c38b5c8 00000000 005f0059 00310030 disp+work!CTrcStack [dptstack.c (182)]
    053cd6fc 00855dd9 00000020 a02899f8 a02b037c 00000000 disp+work!rabax_CStackSave [abrabax.c (6842)]
    053cd7d4 007fa810 0141ec20 0141ebf0 0000041d 203ec5e0 disp+work!ab_rabax [abrabax.c (1213)]
    053cd7ec 00a1d65f a0284050 0000007b 053cd868 00000000 disp+work!ab_RxDdicTypeError [abucutil.c (1053)]
    053cd818 00a1d747 a02a4fe0 a02a4fe0 a02a4fe0 00000000 disp+work!FirstLevelChildCnt [scsypar.c (3423)]
    053cd894 00a1dca1 053cd8cc a02a4fe0 053d0d20 053d0ce4 disp+work!UcTypeToTree [scsypar.c (3578)]
    053d0d28 00a1dd69 053d0d44 a02a4fe0 00000000 a02a4fe0 disp+work!UcTypeToFragView [scsypar.c (3845)]
    053d0d70 00a170f0 a02a4fe0 104e3ac8 00000000 00a0cfa7 disp+work!sc_tparUcFragView [scsypar.c (3897)]
    053d0d80 00a0cfa7 a02a4fe0 00000000 0295d6d4 a01bc106 disp+work!sc_loadflds [scsytyp.c (813)]
    053d0d9c 00a1aafa a01bc106 0295d6d4 00000000 0295d6d4 disp+work!sc_ddictab [scsyddic.c (166)]
    053d0ef8 00a1b4f8 00000004 053d0f20 a01bc106 0295d6d4 disp+work!simple_type_find_1 [scsytyp.c (2999)]
    053d0f24 00a1b762 a01bc106 00000004 0295d6d4 0000000b disp+work!sc_complex_type_find [scsytyp.c (2621)]
    053d0f4c 00a13e2b a01bc106 0000000b 00000000 0295d6d4 disp+work!sc_ctypid [scsytyp.c (2447)]
    053d0f6c 00b8c83a 00000001 00000005 00000002 053d7a1c disp+work!sc_typid [scsymb.c (1733)]
    053d79d4 009d2f1d 000000d1 0294d7d4 02939df8 02939d94 disp+work!rs_expan_abap [rsabap32.c (1241)]
    053d79e8 00a08072 000000d1 053d7b04 a01bc0f4 00000000 disp+work!sc_expan [rsyn6.c (2228)]
    053d7adc 00a076df 00000000 053d7b04 00000000 00000005 disp+work!parse [rsyn4.c (1398)]
    053d7b1c 00a5c027 00000076 00000000 00000001 00000001 disp+work!sc_check [rsyn4.c (402)]
    053d816c 00b2b436 00000000 06474310 06495096 00000000 disp+work!sc_inclu [rsyn31.c (1675)]
    053debd4 009d2f1d 00000076 0294d7d4 02939124 02939114 disp+work!rs_expan_abap [rsabap31.c
    053debe8 00a08072 00000076 053ded04 a01ae0f0 00000000 disp+work!sc_expan [rsyn6.c (2228)]
    053decdc 00a076df 00000000 053ded04 00000000 00000005 disp+work!parse [rsyn4.c (1398)]
    053ded1c 00a5c027 00000076 00000000 00000001 00000001 disp+work!sc_check [rsyn4.c (402)]
    053df36c 00b2b436 00000000 00000000 00000000 00000000 disp+work!sc_inclu [rsyn31.c (1675)]
    053e5dd4 009d2f1d 00000076 0294d7d4 02939124 02939114 disp+work!rs_expan_abap [rsabap31.c
    053e5de8 00a08072 00000076 053e5f04 a01a00ec 00000000 disp+work!sc_expan [rsyn6.c (2228)]
    053e5edc 00a076df 00000000 053e5f04 00000000 00000000 disp+work!parse [rsyn4.c (1398)]
    053e5f1c 00a08b07 0295ba90 053e9c88 053e64c8 009ce139 disp+work!sc_check [rsyn4.c (402)]
    053e5f2c 009ce139 00000000 00000000 00000000 053e64a0 disp+work!sc_checkStart [rsyn4.c (24
    053e64c8 007e0f7f 053e9c88 00000001 00000000 00000000 disp+work!cg_generate [cgmain2.c (65
    053e6510 0057a552 053e9c88 00000000 00000000 053ec954 disp+work!ab_gabap [abgen.c (1592)]
    053e9cf8 007e1558 00000041 a0828954 00000000 00000000 disp+work!dy_gen_abap [dynpabsv.c (2
    053ec914 00656064 a0828954 00000000 00000000 00000000 disp+work!ab_genprog [abgen.c (1345)
    053ec964 006566ab a0828954 00000000 00000001 053ec9a4 disp+work!newload [abload1.c (388)]
    053ec990 0065673b a0828954 00000001 053ec9a4 00000000 disp+work!ab_LoadProgOrTrfo [abload1
    053ec9a8 0072796a a0828954 00000001 00000000 00000000 disp+work!ab_LoadProg [abload1.c (77
    053ecadc 00708d14 00000000 a016ff64 0000001e 00003623 disp+work!ab_link [ablink.c (381)]
    053ecb04 0070c9c0 a016ff64 0000001e 00000000 a0828954 disp+work!perform_load [abperf.c (68
    053ed0bc 0067af78 00000003 a080fd88 00000000 053ed124 disp+work!ab_jxper [abperf.c (478)]
    a016ff64 80000000 005f004c 80000000 00000044 80000000 disp+work!ab_extri [abextri.c (552)]
    005f0025 458bec8b b1908a08 56000000 8a0c758b 0000b18e <nosymbols>
    005f0025 458bec8b b1908a08 56000000 8a0c758b 0000b18e <nosymbols>
    55c3c95b 00000000 00000000 00000000 00000000 00000000 <nosymbols>
    State Dump for Thread Id 14ec
    eax=00000001 ebx=00000103 ecx=fffffffe edx=05580000 esi=00000000 edi=00000000
    eip=7c82ed54 esp=07e5fec0 ebp=07e5ff04 iopl=0 nv up ei pl zr na po nc
    cs=001b ss=0023 ds=0023 es=0023 fs=003b gs=0000 efl=00000246
    function : KiFastSystemCallRet
    7c82ed54 c3 ret
    7c82ed55 8da42400000000 lea esp,[esp] ss:07e5fec0=7c821514
    7c82ed5c 8d642400 lea esp,[esp] ss:29d6e4d3=????????
    FramePtr ReturnAd Param#1 Param#2 Param#3 Param#4 Function Name
    07e5ff04 010f51e5 000006e0 00000000 00000000 0613e580 ntdll!KiFastSystemCallRet
    07e5ff84 7c349565 00000000 00000000 00000000 0613e618 disp+work!SigIMsgFunc [signt.c (594)]
    07e5ffb8 77e66063 0613e618 00000000 00000000 0613e618 MSVCR71!endthreadex
    07e5ffec 00000000 7c3494f6 0613e618 00000000 00000000 kernel32!GetModuleFileNameA
    -FAGLFLEXT
    123
    700 Windows NT 2x Intel 80686 EXXEPT01 ORACLE ER1 EXXEPT01
    700
    NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10
    OCI_10103_SHARE
          Gregory

    Hello Greg,
    Thank you for this question. What you are reporting looks to me like requires deeper analysis in the system. The channel for such questions is the Service Marketplace <i>http://service.sap.com/.</i> Please post it there.
    Thank you!
    Kind regards, Kyoko

  • Print ALV Heading using FM REUSE_ALV_COMMENTARY_WRITE

    Hi,
      How to print the heading using FM REUSE_ALV_COMMENTARY_WRITE?
    I need heading format as
    Name1  :                    Date1        :
    Name2  :                    Date2        :
    like this. How can I print this?Please provide some example code.
    Regards,
    Anu.

    *& Report  Y_TOP_PAGE                                                  *
    REPORT  y_top_page                              .
    TABLES : mara.
    TYPE-POOLS: slis.
    DATA : w_repid LIKE sy-repid.
      w_repid = sy-repid.
    DATA : BEGIN OF it_mara OCCURS 0,
           matnr LIKE mara-matnr,
           END OF it_mara.
    *layout
    DATA: wa_layout           TYPE SLIS_LAYOUT_ALV.
    *field catalog
    DATA: it_fieldcat_wrt_off TYPE slis_t_fieldcat_alv,
          wa_fieldcat_wrt_off TYPE slis_fieldcat_alv.
    START-OF-SELECTION.
      SELECT matnr FROM mara INTO CORRESPONDING FIELDS OF TABLE it_mara.
    END-OF-SELECTION.
      CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
       EXPORTING
         i_program_name               = w_repid
       I_INTERNAL_TABNAME           = 'IT_MARA'
    *     i_structure_name             = 'IT_MARA'
    *   I_CLIENT_NEVER_DISPLAY       = 'X'
       I_INCLNAME                   = w_repid
    *   I_BYPASSING_BUFFER           =
    *   I_BUFFER_ACTIVE              =
        CHANGING
          ct_fieldcat                  = it_fieldcat_wrt_off[]
       EXCEPTIONS
         inconsistent_interface       = 1
         program_error                = 2
         OTHERS                       = 3
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program     = w_repid
          i_callback_top_of_page = 'TOP-OF-PAGE'
          is_layout              = wa_layout
          it_fieldcat            = it_fieldcat_wrt_off
        TABLES
          t_outtab               = it_mara
        EXCEPTIONS
          program_error          = 1
          OTHERS                 = 2.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    * Form  TOP-OF-PAGE                                                 *
    * ALV Report Header                                                 *
    FORM top-of-page.
    *ALV Header declarations
      DATA: t_header TYPE slis_t_listheader,
            wa_header TYPE slis_listheader,
            t_line LIKE wa_header-info,
            ld_lines TYPE i,
            ld_linesc(10) TYPE c.
    * Title
      wa_header-typ  = 'H'.
      wa_header-info = 'CHANDU REPORT'.
      APPEND wa_header TO t_header.
      CLEAR wa_header.
    * Date
      wa_header-typ  = 'S'.
      wa_header-key = 'Date: '.
      CONCATENATE  sy-datum+6(2) '.'
                   sy-datum+4(2) '.'
                   sy-datum(4) INTO wa_header-info.   "todays date
      APPEND wa_header TO t_header.
      CLEAR: wa_header.
    * Total No. of Records Selected
    *  describe table it_ekko lines ld_lines.
    *  ld_linesc = ld_lines.
    *  concatenate 'Total No. of Records Selected: ' ld_linesc
    *                    into t_line separated by space.
    *  wa_header-typ  = 'A'.
    *  wa_header-info = t_line.
    *  append wa_header to t_header.
    *  clear: wa_header, t_line.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = t_header.
    *            i_logo             = 'Z_LOGO'.
    ENDFORM.                    "top-of-page

Maybe you are looking for

  • How do I download the 32bit version of Photoshop CC instead of the 64bit?

    I have a 64bit OS but I'm wanting to download the 32bit version of Photoshop CC instead of the 64bit version. Can anybody direct me as to where or how I can get the 32bit version instead? Thanks so much for your help in advance.

  • Sql server agent roles and job's owner issue

    Hi, We have a tricky question about agent role and job owner. If I granted sqlagentoperatorrole to a windows account in a sql instance, the account will have permission to create a sql job, the job's owner is the account and he can edit the job. But

  • Manually Blocking POs from SRM

    Hi All, I posted this question on the Financial Forum, but no one there was able to assist and I thought since this is so tightly integrated with MM, someone here might be able to assist. . . I understand that in tcode MRBR, when we select the radio

  • Custom fields not updaing from BADI implmentaion MB_BAPI_GOODSMVT_CREATE

    Dear All, I am using BAPI_GOODSMVT_CREATE for creating GRN.For some custom fields in append structure of MSEG( Material document ), i have implemented BADI MB_BAPI_GOODSMVT_CREATE. PAssing custom fields in Extension of BAPI... But still values are no

  • After downloading 5 apps such as Viber, Whatsapp, Tango and Skype crash

    Was excited to download iOS5 but took three attempts and over three days, each time 3 hours!! First time a viber msg came thru, it crashed, then Tango, Skype and Whatsapp all stopped working.  Needed to resync. Viber then wiped out all the history, n